From 56cfa48663097e65abc1114c1ea2f423ea24e15f Mon Sep 17 00:00:00 2001
From: Raine <raine@ixvd.net>
Date: Mon, 23 Oct 2023 04:33:27 +0200
Subject: [PATCH] fix: every month is too much time

---
 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 12a4949..ff6f596 100644
--- a/skel/etc/cron.d/restic
+++ b/skel/etc/cron.d/restic
@@ -6,5 +6,5 @@
 # every day at 20, forget old backups
 30 20 * * * root bash /opt/scripts/restic/forget.sh
 
-# every 1st of the month at 10 in the morning, prune
-0 10 1 * * root bash /opt/scripts/restic/prune.sh
+# every friday at 10 in the morning, prune
+0 10 * * 5 root bash /opt/scripts/restic/prune.sh