From 7c64d861ae69c226489e96a8de6cc8d4eccb3f00 Mon Sep 17 00:00:00 2001 From: Matteo Mardegan <11093569+mmardegan@users.noreply.github.com> Date: Tue, 22 Mar 2022 08:48:19 +0100 Subject: [PATCH] correct the environtment file name --- etc/cron.d/restic | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/etc/cron.d/restic b/etc/cron.d/restic index e7cb30e..c0196fb 100644 --- a/etc/cron.d/restic +++ b/etc/cron.d/restic @@ -5,9 +5,9 @@ PATH=/etc:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin/:$INSTALL_PREFIX/bin/ # Reference: https://www.freebsd.org/doc/handbook/configtuning-cron.html # Reference: crontab(5). -@midnight root . $INSTALL_PREFIX/etc/restic/default.sh && restic_backup.sh -@monthly root . $INSTALL_PREFIX/etc/restic/default.sh && restic_check.sh +@midnight root . $INSTALL_PREFIX/etc/restic/default.env.sh && restic_backup.sh +@monthly root . $INSTALL_PREFIX/etc/restic/default.env.sh && restic_check.sh # Email notification version. Make sure bin/cron_mail is in the above $PATH -#@midnight root . $INSTALL_PREFIX/etc/restic/default.sh && cron_mail restic_backup.sh -#@monthly root . $INSTALL_PREFIX/etc/restic/default.sh && cron_mail restic_check.sh +#@midnight root . $INSTALL_PREFIX/etc/restic/default.env.sh && cron_mail restic_backup.sh +#@monthly root . $INSTALL_PREFIX/etc/restic/default.env.sh && cron_mail restic_check.sh