neb/skel/opt/restic/prune.sh

15 lines
385 B
Bash
Raw Normal View History

2023-10-18 01:31:05 +02:00
#!/bin/sh
2023-10-18 01:57:15 +02:00
ntfy() {
sh /opt/ixvd/ntfy.sh -s "/neb/secrets/ntfy/ixvd-backups" -u "https://push.ixvd.net/ixvd-backups" "$@"
2023-10-18 01:31:05 +02:00
}
2023-10-18 01:57:15 +02:00
ntfy -m "pruning old backups..."
if restic \
2023-10-18 18:07:29 +02:00
-r "sftp://ixvd_backup_storage//$(hostname)" \
2023-10-18 01:57:15 +02:00
-p "/etc/ixvd/secrets/restic/$(hostname).secret" \
prune; then
notify -m "pruning succeeded"
else
notify -m "prune failed" -e "warning,skull"
fi