From 7543170f75308bda7c728c55d2f58c78f33f1008 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Mon, 3 Feb 2025 21:36:18 +0100 Subject: [PATCH] chore(restic): By default run check every Sunday night And check a larger subset of the data with 15%. --- roles/restic/defaults/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/restic/defaults/main.yml b/roles/restic/defaults/main.yml index 8022df5..48fdbc7 100644 --- a/roles/restic/defaults/main.yml +++ b/roles/restic/defaults/main.yml @@ -10,5 +10,5 @@ restic_timezone: "{{ server_timezone | default('US/Chicago') }}" restic_prune_cron: 0 0 4 * * * restic_forget_args: --prune --keep-last 14 --keep-daily 2 --keep-weekly 2 -restic_check_cron: 0 15 5 * * * -restic_check_args: --read-data-subset=5% +restic_check_cron: 0 30 4 * * SUN +restic_check_args: --read-data-subset=15%