diff options
| author | Joey Hess <joey@kitenet.net> | 2014-04-03 13:49:26 -0400 |
|---|---|---|
| committer | Joey Hess <joey@kitenet.net> | 2014-04-03 13:49:26 -0400 |
| commit | c764993cb3be4feb114220ac0d6ddf317420c021 (patch) | |
| tree | 36d40ddcfb04f9f7b0e047e66be865b3b5d0d7a7 /config-joeyh.hs | |
| parent | b9f32f4c1d171fc2735e214bbe957fe7e9662c78 (diff) | |
improved remote and local provisioning
Diffstat (limited to 'config-joeyh.hs')
| -rw-r--r-- | config-joeyh.hs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/config-joeyh.hs b/config-joeyh.hs index 2deed805..6868d48d 100644 --- a/config-joeyh.hs +++ b/config-joeyh.hs @@ -27,9 +27,8 @@ main = defaultMain [host, Docker.containerProperties container] -- -- Edit this to configure propellor! host :: HostName -> Maybe [Property] +-- Clam is a tor bridge, and an olduse.net shellbox and other fun stuff. host hostname@"clam.kitenet.net" = standardSystem Unstable $ props - -- Clam is a tor bridge, and an olduse.net shellbox and other - -- fun stuff. & cleanCloudAtCost hostname & Apt.unattendedUpgrades & Network.ipv6to4 @@ -41,8 +40,8 @@ host hostname@"clam.kitenet.net" = standardSystem Unstable $ props ! Docker.docked container hostname "webserver" ! Docker.docked container hostname "amd64-git-annex-builder" & Docker.garbageCollected +-- Orca is the main git-annex build box. host hostname@"orca.kitenet.net" = standardSystem Unstable $ props - -- Orca is the main git-annex build box. & Hostname.set hostname & Apt.unattendedUpgrades & Docker.configured @@ -50,6 +49,10 @@ host hostname@"orca.kitenet.net" = standardSystem Unstable $ props & Docker.docked container hostname "amd64-git-annex-builder" ! Docker.docked container hostname "i386-git-annex-builder" & Docker.garbageCollected +-- My laptop +host _hostname@"darkstar.kitenet.net" = Just $ props + & Docker.configured + -- add more hosts here... --host "foo.example.com" = host _ = Nothing |
