45 lines
2.8 KiB
Bash
45 lines
2.8 KiB
Bash
BACKUP_NAME="rsync-sysctl"
|
|
GOTIFY_TOKEN=`cat /var/run/secrets/gotify_token | head -n 1`
|
|
|
|
echo "Sending start message"
|
|
payload="{\"message\": \"$BACKUP_NAME Backup has started\nDate: `date`\", \"priority\": 2,\"title\": \"japan-rpi4: $BACKUP_NAME Backup Started\"}"
|
|
curl -X "POST" "https://gotify.sysctl.io/message" -H "accept: application/json" -H "Content-Type: application/json" -H "X-Gotify-Key: $GOTIFY_TOKEN" -d "$payload"
|
|
|
|
drive1=`lsblk -o NAME,SERIAL | grep -v luks | grep 9RGHYP8C | awk {'print $1'}`
|
|
drive2=`lsblk -o NAME,SERIAL | grep -v luks | grep 9RGXW93C | awk {'print $1'}`
|
|
drive3=`lsblk -o NAME,SERIAL | grep -v luks | grep 5QH05G3F | awk {'print $1'}`
|
|
|
|
mount1=`mount -l | grep $drive1`; mounted1=`echo $?`
|
|
mount2=`mount -l | grep $drive2`; mounted2=`echo $?`
|
|
mount3=`mount -l | grep $drive3`; mounted3=`echo $?`
|
|
|
|
echo "Drive status"
|
|
echo "Drive 1: $drive1 / $mount1 / $mounted1"
|
|
echo "Drive 2: $drive2 / $mount2 / $mounted2"
|
|
echo "Drive 3: $drive3 / $mount3 / $mounted3"
|
|
|
|
# If any drive isn't found, exit:
|
|
if [[ $mounted1 != 0 ]] || [[ $mounted2 != 0 ]] || [[ $mounted3 != 0 ]] ; then
|
|
echo "One or more drives is not mounted. Exiting"
|
|
payload="{\"message\": \"$BACKUP_NAME Backup stopped. One or more local drives are not mounted.\nDate: `date`\", \"priority\": 2,\"title\": \"japan-rpi4: $BACKUP_NAME Backup Stopped\"}"
|
|
curl -X "POST" "https://gotify.sysctl.io/message" -H "accept: application/json" -H "Content-Type: application/json" -H "X-Gotify-Key: $GOTIFY_TOKEN" -d "$payload"
|
|
exit
|
|
fi
|
|
|
|
# If an old backup is still running, don't continue
|
|
if [[ `ps aux | grep $BACKUP_NAME | grep -v grep` ]] ; then
|
|
echo -e "$BACKUP_NAME rsync still running. Exiting...."
|
|
payload="{\"message\": \"$BACKUP_NAME stopped. $BACKUP_NAME is still running.\nDate: `date`\", \"priority\": 2,\"title\": \"japan-rpi4: $BACKUP_NAME Backup Stopped\"}"
|
|
curl -X "POST" "https://gotify.sysctl.io/message" -H "accept: application/json" -H "Content-Type: application/json" -H "X-Gotify-Key: $GOTIFY_TOKEN" -d "$payload"
|
|
exit
|
|
fi
|
|
|
|
# Start the backups
|
|
echo -e "======= Time started : `date`"
|
|
echo -e "rsync -avr --delete --exclude=Downloads/ root@framework-server:/Storage/Data/Docker/sysctl.io/ /mnt/$drive1/Data/Docker/sysctl.io/"
|
|
rsync -avr --delete --exclude=Downloads/ root@framework-server:/Storage/Data/Docker/sysctl.io/ /mnt/$drive1/Data/Docker/sysctl.io/
|
|
|
|
echo -e "======= Time complete: `date`"
|
|
echo "Sending completion message"
|
|
payload="{\"message\": \"$BACKUP_NAME Backup completed\nDate: `date`\n`df -h | grep sda`\n`df -h | grep sdb`\n`df -h | grep sdc`\", \"priority\": 2,\"title\": \"japan-rpi4: $BACKUP_NAME Backup Complete\"}"
|
|
curl -X "POST" "https://gotify.sysctl.io/message" -H "accept: application/json" -H "Content-Type: application/json" -H "X-Gotify-Key: $GOTIFY_TOKEN" -d "$payload"
|