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/ }