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