home/bin/rsync.sh

94 lines
1.8 KiB
Bash
Raw Normal View History

2017-07-22 13:46:47 +02:00
#!/bin/bash
TYPE='' # usb / sshfs
CMD=rsync
2020-06-03 14:20:45 +02:00
ARGS='-avz --delete
--exclude /Nextcloud
--exclude /.cache
2020-04-25 21:01:04 +02:00
--exclude /Downloads
2020-06-03 14:20:45 +02:00
--exclude /.thunderbird
--exclude /Projects
--exclude /Software
2020-04-25 21:01:04 +02:00
--exclude /tmp
2020-06-03 14:20:45 +02:00
--exclude /fonts
--exclude /Music
--exclude /node_modules
2020-04-25 21:01:04 +02:00
--exclude /snap
2020-06-03 14:20:45 +02:00
--exclude /.local/share/Trash
--exclude /.npm
--exclude /.thumbnails
--exclude /Android
2020-04-25 21:01:04 +02:00
--exclude /.AndroidStudio*
--exclude /.android
--exclude /.bundle/cache
--exclude /.config/cache
--exclude /.config/Code/Cache
--exclude /.config/Code/CachedData
--exclude /.config/Slack
--exclude /.config/*/Cache
--exclude /.config/chromium
--exclude /.mozilla
--exclude /.config/discord
--exclude /.config/spotify
--exclude /.crashlytics
--exclude /.fastlane
--exclude /.gradle
2021-01-06 08:37:11 +01:00
--exclude ./Software
--exclude /.local
2020-04-25 21:01:04 +02:00
--exclude /.DataGrip*'
2017-07-22 13:46:47 +02:00
ORIG='/home/dbroqua/'
DEST=''
HOSTNAME=`hostname`
# USB
UUID='6e3f7ae3-8fa1-43f3-88c0-a12651519ffb'
MOUNT='/mnt/backup'
DEST_USB="/mnt/backup/${HOSTNAME}/dbroqua/"
# SSHFS
2021-01-06 08:37:11 +01:00
DEST_SSHFS="storage:Backup/${HOSTNAME}/dbroqua/"
2017-07-22 13:46:47 +02:00
2020-06-03 14:20:45 +02:00
echo `date` > ${ORIG}/lastBackup
2017-07-22 13:46:47 +02:00
while getopts t:h opt
do
case $opt in
t)
case ${OPTARG} in
usb)
TYPE='usb'
DEST=${DEST_USB}
;;
sshfs)
TYPE='sshfs'
DEST=${DEST_SSHFS}
;;
*)
echo "usb / sshfs attendu"
exit 1;
esac
;;
esac
done
2020-06-03 14:20:45 +02:00
echo "Method: ${TYPE}" >> ${ORIG}/lastBackup
2017-07-22 13:46:47 +02:00
if [ "${TYPE}" != '' ] ; then
case ${TYPE} in
usb)
sudo cryptsetup luksOpen /dev/sdb1 backup
sudo mount /dev/mapper/backup ${MOUNT}
echo "Go !"
if [ $? == 0 ] ; then
${CMD} ${ARGS} ${ORIG} ${DEST}
fi
sudo umount ${MOUNT}
sudo cryptsetup luksClose backup
;;
sshfs)
${CMD} ${ARGS} ${ORIG} ${DEST}
;;
esac
fi
2020-04-25 21:01:04 +02:00