diff options
author | EuAndreh <eu@euandre.org> | 2022-08-24 17:49:36 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-08-24 17:49:38 -0300 |
commit | 33c8ff8237458d389aa91d906441d005785263c1 (patch) | |
tree | f0aaa0e1efa9a7048a62b15ce306c82402b493d0 | |
parent | etc/sh/rc: Remove redundant mkdir arguments (diff) | |
download | dotfiles-33c8ff8237458d389aa91d906441d005785263c1.tar.gz dotfiles-33c8ff8237458d389aa91d906441d005785263c1.tar.xz |
etc/guix/home.scm: Move backup cronjob back one hour
The run from yesterday night took too long, for some reason, and it went
past 6AM today. Because of that, the 6AM job that fetches email didn't
have a message of job report to fetch. When I checked my email today, I
saw the backup job reports from both servers, but not velhinho, because
it finished after 6AM.
This may still happen, as there is no limit on how long a backup can
take, but it at least diminishes the likelyhood for it to happen again.
-rw-r--r-- | etc/guix/home.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/guix/home.scm b/etc/guix/home.scm index 0f4d7bf..b9f5659 100644 --- a/etc/guix/home.scm +++ b/etc/guix/home.scm @@ -190,7 +190,7 @@ #~(job "0 0 * * *" "cronjob msmtp-queue -r") #~(job "0 0 * * *" "cronjob check") #~(job "5 */6 * * *" "cronjob m") - #~(job "30 1 * * *" "cronjob backup -q cron"))) + #~(job "30 0 * * *" "cronjob backup -q cron"))) (home-environment |