neb/skel/opt/scripts/restic/prune.sh
2023-10-18 23:17:28 +02:00

15 lines
No EOL
391 B
Bash

#!/bin/sh
ntfy() {
sh /opt/scripts/ntfy.sh -s "/etc/ixvd/secrets/ntfy/ixvd-backups" -u "https://push.ixvd.net/ixvd-backups" "$@"
}
ntfy -m "pruning old backups..."
if restic \
-r "/mnt/backups/restic/$(hostname)" \
-p "/etc/ixvd/secrets/restic/$(hostname).secret" \
prune; then
ntfy -m "pruning succeeded" -p 1
else
ntfy -m "prune failed" -e "warning,skull" -p 5
fi