From bdc60174ed27d2d26f2878e2933850205719d2d1 Mon Sep 17 00:00:00 2001 From: Raine Date: Sun, 22 Oct 2023 22:06:09 +0200 Subject: [PATCH] fix: order of backups we cant forget during a backup :facepalm: --- skel/etc/cron.d/restic | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skel/etc/cron.d/restic b/skel/etc/cron.d/restic index 85fd1b5..12a4949 100644 --- a/skel/etc/cron.d/restic +++ b/skel/etc/cron.d/restic @@ -4,7 +4,7 @@ 0 */4 * * * root bash /opt/scripts/restic/backup.sh # every day at 20, forget old backups -0 20 * * * root bash /opt/scripts/restic/forget.sh +30 20 * * * root bash /opt/scripts/restic/forget.sh # every 1st of the month at 10 in the morning, prune -50 10 1 * * root bash /opt/scripts/restic/prune.sh +0 10 1 * * root bash /opt/scripts/restic/prune.sh