modification du formulaire et du message de nom de profil
This commit is contained in:
parent
612a841669
commit
7fdbcd3e48
@ -68,22 +68,21 @@ Si vous ne chiffrez pas le dépôt, les données qu'il contient seront librement
|
|||||||
if [ "$?" = "0" ];then
|
if [ "$?" = "0" ];then
|
||||||
borg init "$borg_repo" | ZenityPulsate
|
borg init "$borg_repo" | ZenityPulsate
|
||||||
zenity $W --info --text "Un nouveau dépôt chiffré a été généré dans <tt>$borg_repo</tt>"
|
zenity $W --info --text "Un nouveau dépôt chiffré a été généré dans <tt>$borg_repo</tt>"
|
||||||
|
repo_status="chiffré"
|
||||||
elif [ "$?" = "1" ];then
|
elif [ "$?" = "1" ];then
|
||||||
borg init --encryption none "$borg_repo" | ZenityPulsate
|
borg init --encryption none "$borg_repo" | ZenityPulsate
|
||||||
zenity $W --info --text "Un nouveau dépôt en clair a été généré dans <tt>$borg_repo</tt>"
|
zenity $W --info --text "Un nouveau dépôt en clair a été généré dans <tt>$borg_repo</tt>"
|
||||||
|
repo_status="non chiffré"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
borg_dir=$(zenity --title "Dossier à sauvegarder" --file-selection --directory)
|
borg_dir=$(zenity --title "Dossier à sauvegarder" --file-selection --directory)
|
||||||
|
|
||||||
vars=$(zenity --forms \
|
profilename=$(zenity --entry --title "Nom de profil" --text "Nom de profil (pas d'espace ni caractères spéciaux)")
|
||||||
--add-entry "Nom de sauvegarde" \
|
nomsauvegarde=$(echo "$profilename")
|
||||||
--add-entry "Nom de profil (pas d'espace ni caractères spéciaux)")
|
|
||||||
nomsauvegarde=$(echo $vars | cut -d\| -f1)
|
|
||||||
profilename=$(echo $vars | cut -d\| -f2)
|
|
||||||
|
|
||||||
|
if [ "$profilename" = "" ];then zenity $W --error --text "Pas de nom de profil";exit;fi
|
||||||
if [ "$nomsauvegarde" = "" ];then zenity $W --error --text "Pas de nom de sauvegarde";exit;fi
|
if [ "$nomsauvegarde" = "" ];then zenity $W --error --text "Pas de nom de sauvegarde";exit;fi
|
||||||
if [ "$profilename" = "" ];then zenity $W --error --text "Pas de nom de sauvegarde";exit;fi
|
|
||||||
|
|
||||||
cat << EOF >> "$dossierprofil""$profilename".conf
|
cat << EOF >> "$dossierprofil""$profilename".conf
|
||||||
nomsauvegarde="$nomsauvegarde"
|
nomsauvegarde="$nomsauvegarde"
|
||||||
borg_repo="$borg_repo"
|
borg_repo="$borg_repo"
|
||||||
@ -94,7 +93,7 @@ borg_compress=""
|
|||||||
dryrun=""
|
dryrun=""
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
zenity $W --info --text "Le profil $profilename a été créé."
|
zenity $W --info --text "Le profil «$profilename» a été créé avec ces paramètres\n\nNom de profil : $profilename\nChemin à sauvegarder : $borg_dir\nChemin du dépôt : $borg_repo\nStatut du dépôt : $repo_status"
|
||||||
|
|
||||||
### Ajouter un dépôt existant ###
|
### Ajouter un dépôt existant ###
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user