From 63fa5b5204c790edb73ab25ae101e20aea4d89a5 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Sun, 22 Jan 2023 12:54:06 +0100 Subject: [PATCH] backup: Prune old backups --- backup | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/backup b/backup index 1fa71c3..e181d46 100755 --- a/backup +++ b/backup @@ -43,6 +43,9 @@ notify-send "Backup finished successfully" scp .config/backup-passphrase piware.de:.cache/ ssh piware.de chmod u+w .cache/backup-passphrase trap "ssh piware.de shred -u .cache/backup-passphrase" EXIT INT QUIT PIPE -ssh piware.de restic --password-file .cache/backup-passphrase --repo backup/restic check || fail "BACKUP CHECK FAILED!" +ssh piware.de restic --password-file .cache/backup-passphrase --repo backup/restic forget --prune --keep-within-hourly 24h --keep-within-daily 7d --keep-within-weekly 30d --keep-within-monthly 12m +notify-send "Backup pruned successfully" + +ssh piware.de restic --password-file .cache/backup-passphrase --repo backup/restic check || fail "BACKUP CHECK FAILED!" notify-send "Backup checked successfully" -- 2.39.2