2024-09-23 23:59:45 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
if [[ "$1" == "-q" ]]; then
|
|
|
|
exec >/dev/null 2>&1
|
|
|
|
fi
|
|
|
|
|
2024-09-28 00:54:14 +02:00
|
|
|
if ! rsync -avz --delete root@hyperreal.coffee:/srv/borgbackup/hyperreal/ /mnt/borgbackup/hyperreal; then
|
2024-09-23 23:59:45 +02:00
|
|
|
/home/jas/bin/resend_error.py "hyperreal-borg"
|
2024-09-28 00:54:14 +02:00
|
|
|
logger -t sync_remotes "Error during sync of hyperreal-borg"
|
2024-09-23 23:59:45 +02:00
|
|
|
else
|
2024-09-28 00:54:14 +02:00
|
|
|
logger -t sync_remotes "hyperreal-borg successfully synced"
|
2024-09-23 23:59:45 +02:00
|
|
|
fi
|
|
|
|
|
2024-09-28 00:54:14 +02:00
|
|
|
if ! rsync -avz --delete root@auxnc-96g:/srv/backup/auxnc-96g/ /mnt/borgbackup/auxnc-96g; then
|
2024-09-23 23:59:45 +02:00
|
|
|
/home/jas/bin/resend_error.py "auxnc-96g-borg"
|
2024-09-28 00:54:14 +02:00
|
|
|
logger -t sync_remotes "Error during sync of auxnc-96g-borg"
|
2024-09-23 23:59:45 +02:00
|
|
|
else
|
2024-09-28 00:54:14 +02:00
|
|
|
logger -t sync_remotes "auxnc-96g-borg successfully synced"
|
2024-09-23 23:59:45 +02:00
|
|
|
fi
|
|
|
|
|
2024-09-28 00:54:14 +02:00
|
|
|
if ! rsync -avz --delete root@hyperreal.coffee:/home/mastodon/live/public/system/ /mnt/mastodata; then
|
2024-09-23 23:59:45 +02:00
|
|
|
/home/jas/bin/resend_error.py "mastodata"
|
2024-09-28 00:54:14 +02:00
|
|
|
logger -t sync_remotes "Error during sync of mastodata"
|
2024-09-23 23:59:45 +02:00
|
|
|
else
|
2024-09-28 00:54:14 +02:00
|
|
|
logger -t sync_remotes "mastodata successfully synced"
|
2024-09-23 23:59:45 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
exit 0
|