diff options
| -rw-r--r-- | joeyconfig.hs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/joeyconfig.hs b/joeyconfig.hs index 0e436977..17ad6e4f 100644 --- a/joeyconfig.hs +++ b/joeyconfig.hs @@ -252,13 +252,14 @@ honeybee = host "honeybee.kitenet.net" $ props -- Runs only on weekdays. & Systemd.nspawned (GitAnnexBuilder.autoBuilderContainer GitAnnexBuilder.armAutoBuilder - Unstable ARMEL Nothing - (Cron.Times "15 6 * * 2-5") "23h") + Unstable ARMEL Nothing weekends "23h") -- Runs only on weekends. & Systemd.nspawned (GitAnnexBuilder.autoBuilderContainer GitAnnexBuilder.stackAutoBuilder - (Stable "jessie") ARMEL (Just "ancient") - (Cron.Times "15 6 * * 6-7") "23h") + (Stable "jessie") ARMEL (Just "ancient") weekdays "23h") + where + weekdays = Cron.Times "15 6 * * 2-5" + weekends = Cron.Times "15 6 * * 6-7" -- This is not a complete description of kite, since it's a -- multiuser system with eg, user passwords that are not deployed |
