dotfiles/backups/cron/home/daily.sh
2025-04-06 15:37:42 +01:00

19 lines
625 B
Bash
Executable file

#!/bin/bash
USER=thomas
export XDG_RUNTIME_DIR=/run/user/1000
source /home/thomas/.env
if mountpoint -q /media/samsung-T3; then
# sudo /usr/bin/rsnapshot daily
sudo /usr/bin/rsnapshot -c /etc/rsnapshot.conf daily
if [ $? -eq 0 ]; then
/home/thomas/repos/slack-notifier/src/index.js 'backups' '✅🏠 Daily `/home` backup completed successfully.'
else
/home/thomas/repos/slack-notifier/src/index.js 'backups' '⛔🏠 Daily `/home` backup failed.' || exit $?
fi
else
echo "Backup drive not mounted"
/home/thomas/repos/slack-notifier/src/index.js 'backups' '💾🏠 Error: `/home` backup drive not mounted.'
fi