-- cgit v1.3-2-g0d8e From dedcc666a88037f499431014974c8168f3f448ea Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 2 Mar 2017 19:04:43 -0400 Subject: setting up joeyconfig after merge --- config.hs | 2 +- privdata/relocate | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 privdata/relocate diff --git a/config.hs b/config.hs index ec313725..97d90636 120000 --- a/config.hs +++ b/config.hs @@ -1 +1 @@ -config-simple.hs \ No newline at end of file +joeyconfig.hs \ No newline at end of file diff --git a/privdata/relocate b/privdata/relocate new file mode 100644 index 00000000..271692d8 --- /dev/null +++ b/privdata/relocate @@ -0,0 +1 @@ +.joeyconfig -- cgit v1.3-2-g0d8e From 8df3fb8f12bde4ad944daea819bb2dee8873f059 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 3 Mar 2017 15:02:52 -0400 Subject: propellor spin --- joeyconfig.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/joeyconfig.hs b/joeyconfig.hs index e1374e4b..0e436977 100644 --- a/joeyconfig.hs +++ b/joeyconfig.hs @@ -164,7 +164,7 @@ oyster :: Host oyster = host "oyster.kitenet.net" $ props & standardSystem Unstable X86_64 [ "Unreliable server. Anything here may be lost at any time!" ] - & ipv4 "64.137.221.146" + & ipv4 "45.62.245.55" & CloudAtCost.decruft & Ssh.hostKeys hostContext -- cgit v1.3-2-g0d8e From e3cb320d1b2e000274ac0d61b48c2a57a08f1c89 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Mon, 6 Mar 2017 11:55:13 -0400 Subject: flip arm build times while still bringing up the ancient build --- joeyconfig.hs | 9 +++++---- 1 file 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 -- cgit v1.3-2-g0d8e