1
1
Fork 0

Activate cron job for seal post commits

main
Bill Ewanick 2023-08-02 15:05:35 -04:00
parent ba03575caa
commit a09ee8d294
1 changed files with 6 additions and 7 deletions

View File

@ -32,11 +32,10 @@ in
# uncomment this to use the staging server
# security.acme.server = "https://acme-staging-v02.api.letsencrypt.org/directory";
# services.cron = {
# enable = true;
# systemCronJobs = [
# # "12 12 * * * alice . /etc/profile; /home/alice/seal-blog/devops/newSealPost.sh > /home/alice/logs/backup.log 2>&1"
# # "* * * * * alice . /etc/profile; /home/alice/seal-blog/devops/newSealPost.sh"
# ];
# };
services.cron = {
enable = true;
systemCronJobs = [
"12 12 * * * alice . /etc/profile; ${pkgs.newSealPost} > /home/alice/logs/backup.log 2>&1"
];
};
}