From 06b430073f0e0261aa77d47da7950f6d2e57b690 Mon Sep 17 00:00:00 2001 From: wilou Date: Fri, 8 Nov 2024 09:34:43 +0000 Subject: [PATCH] Actualiser install.sh --- install.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index 22d77d6..17d586c 100644 --- a/install.sh +++ b/install.sh @@ -12,7 +12,7 @@ apt install -y dialog # Options de sélection choices=$(dialog --separate-output --checklist "Sélectionnez les éléments à installer:" 15 60 6 \ 1 "Solution de virtualisation KVM" off \ -2 "Paquets wibian-extras (inclut Flatpak)" off \ +2 "Paquets wibian-extras" off \ 3 "Synology Drive Client" off \ 4 "PVE VDI Client" off \ 5 "PDF Studio Pro 2022" off \ @@ -25,9 +25,6 @@ builddir=$(pwd) # Mise à jour des paquets apt update && apt upgrade -y -# Création de répertoires de travail supplémentaires -mkdir -p /home/$username/Fichiers /home/$username/Fichiers/sh - # Fonction pour installer les paquets KVM depuis un fichier install_kvm() { echo "Installation de la solution de virtualisation KVM..." @@ -77,6 +74,7 @@ install_pve_vdi_client() { # Fonction pour télécharger PDF Studio Pro 2022 install_pdf_studio_pro() { + mkdir -p /home/$username/Fichiers /home/$username/Fichiers/sh echo "Téléchargement de PDF Studio Pro 2022..." wget https://download.qoppa.com/pdfstudio/v2022/PDFStudio_v2022_2_5_linux64.sh -P /home/$username/Fichiers/sh/ }