diff options
author | EuAndreh <eu@euandre.org> | 2022-12-09 09:01:38 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-12-09 09:01:38 -0300 |
commit | 4d39054814a2c27a832c4825f1473fd8e7eb8f6c (patch) | |
tree | 4cbcac794e5ebc54d9fc5f83622448d726aacbda | |
parent | aux/: Embed files in repository (diff) | |
download | toph-4d39054814a2c27a832c4825f1473fd8e7eb8f6c.tar.gz toph-4d39054814a2c27a832c4825f1473fd8e7eb8f6c.tar.xz |
system.scm: Fix position of -r REPO argument for backup job
-rw-r--r-- | src/infrastructure/guix/system.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/infrastructure/guix/system.scm b/src/infrastructure/guix/system.scm index 939ebcc..7891f74 100644 --- a/src/infrastructure/guix/system.scm +++ b/src/infrastructure/guix/system.scm @@ -1715,8 +1715,8 @@ keyfile ~a/private.key (mcron-configuration (jobs (list - #~(job "0 0 * * *" "cronjob backup -q cron -r /mnt/backup/borg") - #~(job "0 1 * * *" "cronjob backup -q cron") + #~(job "0 0 * * *" "cronjob backup -q -r /mnt/backup/borg cron") + #~(job "0 1 * * *" "cronjob backup -q cron") #~(job "0 2 * * *" "cronjob reconfigure -U"))))) (service dkimproxyout-service-type) (service git-daemon-service-type |