neb/skel/opt/scripts/restic/prune.sh

15 lines
398 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() {
2023-10-20 03:43:30 +02:00
bash /opt/scripts/ntfy.sh -s "/etc/ixvd/secrets/ntfy/ixvd-backups" -u "https://push.ixvd.net/ixvd-backups" "$@"
2023-10-18 01:31:05 +02:00
}
2023-12-06 21:46:58 +01:00
ntfy -m "pruning old backups..." -p 3
2023-10-18 01:57:15 +02:00
if restic \
2023-10-18 22:50:49 +02:00
-r "/mnt/backups/restic/$(hostname)" \
2023-10-18 01:57:15 +02:00
-p "/etc/ixvd/secrets/restic/$(hostname).secret" \
prune; then
2023-10-18 23:17:28 +02:00
ntfy -m "pruning succeeded" -p 1
2023-10-18 01:57:15 +02:00
else
2023-10-18 23:17:28 +02:00
ntfy -m "prune failed" -e "warning,skull" -p 5
2023-10-18 01:57:15 +02:00
fi