diff options
| author | Joey Hess <joeyh@joeyh.name> | 2015-05-16 15:21:15 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2015-05-16 15:21:15 -0400 |
| commit | 9dad326a66ef2cbef944e6c95c81f236ca4cd64e (patch) | |
| tree | 88275bacea7ccbfd53ccc354c102bf7d29f6be1d | |
| parent | dd7cfffcacccca98c4360a6a4c6b0e6e65a111bf (diff) | |
propellor spin
| -rw-r--r-- | config-joey.hs | 38 |
1 files changed, 25 insertions, 13 deletions
diff --git a/config-joey.hs b/config-joey.hs index 895c6573..daeea21e 100644 --- a/config-joey.hs +++ b/config-joey.hs @@ -47,6 +47,7 @@ hosts = -- (o) ` , kite , elephant , beaver + , pell , iabak ] ++ monsters @@ -311,6 +312,30 @@ beaver = host "beaver.kitenet.net" & Cron.niceJob "system disk backed up" Cron.Weekly (User "root") "/" "rsync -a -x / /home/joey/lib/backup/beaver.kitenet.net/" +-- Branchable is mostly not managed by propellor yet. +pell :: Host +pell = host "pell.branchable.com" + & ipv4 "66.228.46.55" + & ipv6 "2600:3c03::f03c:91ff:fedf:c0e5" + + -- All the websites I host at branchable that don't use + -- branchable.com dns. + & alias "olduse.net" + & alias "www.olduse.net" + & alias "www.kitenet.net" + & alias "joeyh.name" + & alias "campaign.joeyh.name" + & alias "ikiwiki.info" + & alias "git.ikiwiki.info" + & alias "l10n.ikiwiki.info" + & alias "dist-bugs.kitenet.net" + & alias "family.kitenet.net" + + & Apt.installed ["linux-image-amd64"] + & Linode.chainPVGrub 5 + & Systemd.persistentJournal + & Journald.systemMaxUse "500MiB" + iabak :: Host iabak = host "iabak.archiveteam.org" & ipv4 "124.6.40.227" @@ -491,19 +516,6 @@ monsters = -- but do want to track their public keys etc. & ipv6 "2001:4978:f:2d9::2" , host "mouse.kitenet.net" & ipv6 "2001:4830:1600:492::2" - , host "branchable.com" - & ipv4 "66.228.46.55" - & ipv6 "2600:3c03::f03c:91ff:fedf:c0e5" - & alias "olduse.net" - & alias "www.olduse.net" - & alias "www.kitenet.net" - & alias "joeyh.name" - & alias "campaign.joeyh.name" - & alias "ikiwiki.info" - & alias "git.ikiwiki.info" - & alias "l10n.ikiwiki.info" - & alias "dist-bugs.kitenet.net" - & alias "family.kitenet.net" , host "animx" & ipv4 "76.7.162.101" & ipv4 "76.7.162.186" |
