Skip to content
Snippets Groups Projects
Verified Commit 1de051bd authored by David Beniamine's avatar David Beniamine
Browse files

simpler version using mount

parent ff91aea8
No related branches found
No related tags found
No related merge requests found
export USER=""
export HOST=""
export DESTINATION=""
export DIRECTORIES="" export DIRECTORIES=""
export TIMEOUT="30" export TIMEOUT="30"
export RSYNC_PASSWORD="secret"
#!/bin/bash #!/bin/bash
. ${0/.sh/.env} . ${0/.sh/.env}
mount $DESTINATION
for d in ${DIRECTORIES} for d in ${DIRECTORIES}
do do
rsync $d $USER@$HOST:/$DESTINATION/$d rsync $d $DESTINATION/$d
done done
umount $DESTINATION
zenity --timeout $TIMEOUT --question --title "Sauvegarde terminée." \ zenity --timeout $TIMEOUT --question --title "Sauvegarde terminée." \
--text "Voulez vous procéder à l'extinction automatique de l'ordinateur ?" --text "Voulez vous procéder à l'extinction automatique de l'ordinateur ?"
ans=$? ans=$?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment