2014-04-03 16:06:58 +00:00
|
|
|
-- | This is the live config file used by propellor's author.
|
|
|
|
|
|
|
|
import Propellor
|
|
|
|
import Propellor.CmdLine
|
2014-04-09 04:54:27 +00:00
|
|
|
import Propellor.Property.Scheduled
|
2014-04-03 16:06:58 +00:00
|
|
|
import qualified Propellor.Property.File as File
|
|
|
|
import qualified Propellor.Property.Apt as Apt
|
|
|
|
import qualified Propellor.Property.Network as Network
|
|
|
|
import qualified Propellor.Property.Ssh as Ssh
|
|
|
|
import qualified Propellor.Property.Cron as Cron
|
|
|
|
import qualified Propellor.Property.Sudo as Sudo
|
|
|
|
import qualified Propellor.Property.User as User
|
|
|
|
import qualified Propellor.Property.Hostname as Hostname
|
2014-04-11 03:20:12 +00:00
|
|
|
--import qualified Propellor.Property.Reboot as Reboot
|
2014-04-03 16:06:58 +00:00
|
|
|
import qualified Propellor.Property.Tor as Tor
|
2014-04-10 05:46:33 +00:00
|
|
|
import qualified Propellor.Property.Dns as Dns
|
2014-04-08 20:58:11 +00:00
|
|
|
import qualified Propellor.Property.OpenId as OpenId
|
2014-04-03 16:06:58 +00:00
|
|
|
import qualified Propellor.Property.Docker as Docker
|
2014-04-10 06:51:25 +00:00
|
|
|
import qualified Propellor.Property.Git as Git
|
2014-04-13 01:34:25 +00:00
|
|
|
import qualified Propellor.Property.Gpg as Gpg
|
2014-04-13 02:36:36 +00:00
|
|
|
import qualified Propellor.Property.Obnam as Obnam
|
2014-04-03 16:06:58 +00:00
|
|
|
import qualified Propellor.Property.SiteSpecific.GitHome as GitHome
|
|
|
|
import qualified Propellor.Property.SiteSpecific.GitAnnexBuilder as GitAnnexBuilder
|
|
|
|
import qualified Propellor.Property.SiteSpecific.JoeySites as JoeySites
|
|
|
|
|
2014-04-11 01:09:20 +00:00
|
|
|
hosts :: [Host]
|
|
|
|
hosts =
|
2014-04-11 03:20:12 +00:00
|
|
|
-- My laptop
|
|
|
|
[ host "darkstar.kitenet.net"
|
|
|
|
& Docker.configured
|
|
|
|
& Apt.buildDep ["git-annex"] `period` Daily
|
|
|
|
|
|
|
|
-- Nothing super-important lives here.
|
2014-04-11 04:14:50 +00:00
|
|
|
, standardSystem "clam.kitenet.net" Unstable
|
|
|
|
& cleanCloudAtCost
|
2014-04-11 01:09:20 +00:00
|
|
|
& Apt.unattendedUpgrades
|
|
|
|
& Network.ipv6to4
|
|
|
|
& Tor.isBridge
|
|
|
|
& Docker.configured
|
|
|
|
& cname "shell.olduse.net"
|
2014-04-11 03:20:12 +00:00
|
|
|
& JoeySites.oldUseNetShellBox
|
|
|
|
|
|
|
|
& cname "openid.kitenet.net"
|
2014-04-11 04:14:50 +00:00
|
|
|
& Docker.docked hosts "openid-provider"
|
|
|
|
`requires` Apt.installed ["ntp"]
|
2014-04-11 03:20:12 +00:00
|
|
|
|
|
|
|
& cname "ancient.kitenet.net"
|
2014-04-11 04:14:50 +00:00
|
|
|
& Docker.docked hosts "ancient-kitenet"
|
2014-04-11 03:20:12 +00:00
|
|
|
|
2014-04-11 04:14:50 +00:00
|
|
|
& Docker.garbageCollected `period` Daily
|
2014-04-11 01:09:20 +00:00
|
|
|
& Apt.installed ["git-annex", "mtr", "screen"]
|
2014-04-11 03:20:12 +00:00
|
|
|
|
2014-04-11 01:09:20 +00:00
|
|
|
-- Orca is the main git-annex build box.
|
2014-04-11 04:14:50 +00:00
|
|
|
, standardSystem "orca.kitenet.net" Unstable
|
2014-04-11 01:09:20 +00:00
|
|
|
& Hostname.sane
|
|
|
|
& Apt.unattendedUpgrades
|
|
|
|
& Docker.configured
|
2014-04-11 03:20:12 +00:00
|
|
|
& Docker.docked hosts "amd64-git-annex-builder"
|
|
|
|
& Docker.docked hosts "i386-git-annex-builder"
|
|
|
|
! Docker.docked hosts "armel-git-annex-builder-companion"
|
|
|
|
! Docker.docked hosts "armel-git-annex-builder"
|
2014-04-11 01:09:20 +00:00
|
|
|
& Docker.garbageCollected `period` Daily
|
|
|
|
& Apt.buildDep ["git-annex"] `period` Daily
|
2014-04-11 03:20:12 +00:00
|
|
|
|
2014-04-11 01:09:20 +00:00
|
|
|
-- Important stuff that needs not too much memory or CPU.
|
2014-04-11 04:14:50 +00:00
|
|
|
, standardSystem "diatom.kitenet.net" Stable
|
2014-04-11 01:09:20 +00:00
|
|
|
& Hostname.sane
|
|
|
|
& Apt.unattendedUpgrades
|
|
|
|
& Apt.serviceInstalledRunning "ntp"
|
|
|
|
& Dns.zones myDnsSecondary
|
|
|
|
& Apt.serviceInstalledRunning "apache2"
|
|
|
|
& Apt.installed ["git", "git-annex", "rsync"]
|
|
|
|
& Apt.buildDep ["git-annex"] `period` Daily
|
|
|
|
& Git.daemonRunning "/srv/git"
|
|
|
|
& File.ownerGroup "/srv/git" "joey" "joey"
|
2014-04-13 02:36:36 +00:00
|
|
|
& Obnam.backup "/srv/git" "33 3 * * *"
|
|
|
|
[ "--repository=2318@usw-s002.rsync.net:git.kitenet.net"
|
|
|
|
, "--encrypt-with=1B169BE1"
|
|
|
|
]
|
|
|
|
`requires` Gpg.keyImported "1B169BE1" "root"
|
|
|
|
`requires` Ssh.keyImported SshRsa "root"
|
|
|
|
|
2014-04-12 17:32:12 +00:00
|
|
|
-- git repos restore (how?) (also make backups!)
|
2014-04-11 01:09:20 +00:00
|
|
|
-- family annex needs family members to have accounts,
|
|
|
|
-- ssh host key etc.. finesse?
|
|
|
|
-- (also should upgrade git-annex-shell for it..)
|
|
|
|
-- kgb installation and setup
|
|
|
|
-- ssh keys for branchable and github repo hooks
|
|
|
|
-- gitweb
|
|
|
|
-- downloads.kitenet.net setup (including ssh key to turtle)
|
2014-04-03 16:06:58 +00:00
|
|
|
|
2014-04-13 01:34:25 +00:00
|
|
|
--' __|II| ,.
|
|
|
|
---- __|II|II|__ ( \_,/\
|
|
|
|
------'\o/-'-.-'-.-'-.- __|II|II|II|II|___/ __/ -'-.-'-.-'-.-'-.-'-
|
|
|
|
----------------------- | [Docker] / ----------------------
|
|
|
|
----------------------- : / -----------------------
|
|
|
|
------------------------ \____, o ,' ------------------------
|
|
|
|
------------------------- '--,___________,' -------------------------
|
2014-04-11 03:20:12 +00:00
|
|
|
|
2014-04-08 20:58:11 +00:00
|
|
|
-- Simple web server, publishing the outside host's /var/www
|
2014-04-11 03:20:12 +00:00
|
|
|
, standardContainer "webserver" Stable "amd64"
|
|
|
|
& Docker.publish "8080:80"
|
|
|
|
& Docker.volume "/var/www:/var/www"
|
|
|
|
& Apt.serviceInstalledRunning "apache2"
|
2014-04-08 21:10:52 +00:00
|
|
|
|
2014-04-08 20:58:11 +00:00
|
|
|
-- My own openid provider. Uses php, so containerized for security
|
|
|
|
-- and administrative sanity.
|
2014-04-11 03:20:12 +00:00
|
|
|
, standardContainer "openid-provider" Stable "amd64"
|
|
|
|
& Docker.publish "8081:80"
|
|
|
|
& OpenId.providerFor ["joey", "liw"]
|
|
|
|
"openid.kitenet.net:8081"
|
2014-04-08 05:42:59 +00:00
|
|
|
|
2014-04-11 03:20:12 +00:00
|
|
|
, standardContainer "ancient-kitenet" Stable "amd64"
|
|
|
|
& Docker.publish "1994:80"
|
|
|
|
& Apt.serviceInstalledRunning "apache2"
|
2014-04-13 00:21:33 +00:00
|
|
|
& Git.cloned "root" "git://git.kitenet.net/kitewiki" "/var/www"
|
|
|
|
(Just "remotes/origin/old-kitenet.net")
|
2014-04-10 15:02:29 +00:00
|
|
|
|
2014-04-11 03:20:12 +00:00
|
|
|
-- git-annex autobuilder containers
|
|
|
|
, gitAnnexBuilder "amd64" 15
|
|
|
|
, gitAnnexBuilder "i386" 45
|
2014-04-08 05:42:59 +00:00
|
|
|
-- armel builder has a companion container that run amd64 and
|
|
|
|
-- runs the build first to get TH splices. They share a home
|
|
|
|
-- directory, and need to have the same versions of all haskell
|
|
|
|
-- libraries installed.
|
2014-04-11 03:20:12 +00:00
|
|
|
, Docker.container "armel-git-annex-builder-companion"
|
2014-04-08 05:42:59 +00:00
|
|
|
(image $ System (Debian Unstable) "amd64")
|
2014-04-11 03:20:12 +00:00
|
|
|
& Docker.volume GitAnnexBuilder.homedir
|
|
|
|
& Apt.unattendedUpgrades
|
|
|
|
, Docker.container "armel-git-annex-builder"
|
2014-04-08 05:42:59 +00:00
|
|
|
(image $ System (Debian Unstable) "armel")
|
2014-04-11 03:20:12 +00:00
|
|
|
& Docker.link "armel-git-annex-builder-companion" "companion"
|
|
|
|
& Docker.volumes_from "armel-git-annex-builder-companion"
|
|
|
|
-- & GitAnnexBuilder.builder "armel" "15 * * * *" True
|
|
|
|
& Apt.unattendedUpgrades
|
|
|
|
]
|
2014-04-03 16:06:58 +00:00
|
|
|
|
2014-04-11 03:20:12 +00:00
|
|
|
gitAnnexBuilder :: Architecture -> Int -> Host
|
|
|
|
gitAnnexBuilder arch buildminute = Docker.container (arch ++ "-git-annex-builder")
|
|
|
|
(image $ System (Debian Unstable) arch)
|
|
|
|
& GitAnnexBuilder.builder arch (show buildminute ++ " * * * *") True
|
|
|
|
& Apt.unattendedUpgrades
|
2014-04-03 16:06:58 +00:00
|
|
|
|
2014-04-11 04:14:50 +00:00
|
|
|
-- This is my standard system setup.
|
|
|
|
standardSystem :: HostName -> DebianSuite -> Host
|
|
|
|
standardSystem hn suite = host hn
|
2014-04-10 04:10:08 +00:00
|
|
|
& Apt.stdSourcesList suite `onChange` Apt.upgrade
|
|
|
|
& Apt.installed ["etckeeper"]
|
|
|
|
& Apt.installed ["ssh"]
|
|
|
|
& GitHome.installedFor "root"
|
|
|
|
& User.hasSomePassword "root"
|
|
|
|
-- Harden the system, but only once root's authorized_keys
|
|
|
|
-- is safely in place.
|
|
|
|
& check (Ssh.hasAuthorizedKeys "root")
|
|
|
|
(Ssh.passwordAuthentication False)
|
|
|
|
& User.accountFor "joey"
|
|
|
|
& User.hasSomePassword "joey"
|
|
|
|
& Sudo.enabledFor "joey"
|
|
|
|
& GitHome.installedFor "joey"
|
|
|
|
& Apt.installed ["vim", "screen", "less"]
|
|
|
|
& Cron.runPropellor "30 * * * *"
|
|
|
|
-- I use postfix, or no MTA.
|
|
|
|
& Apt.removed ["exim4", "exim4-daemon-light", "exim4-config", "exim4-base"]
|
|
|
|
`onChange` Apt.autoRemove
|
|
|
|
|
2014-04-09 01:28:15 +00:00
|
|
|
-- This is my standard container setup, featuring automatic upgrades.
|
2014-04-11 03:20:12 +00:00
|
|
|
standardContainer :: Docker.ContainerName -> DebianSuite -> Architecture -> Host
|
|
|
|
standardContainer name suite arch = Docker.container name (image system)
|
|
|
|
& Apt.stdSourcesList suite
|
|
|
|
& Apt.unattendedUpgrades
|
|
|
|
where
|
|
|
|
system = System (Debian suite) arch
|
|
|
|
|
|
|
|
-- | Docker images I prefer to use.
|
|
|
|
image :: System -> Docker.Image
|
|
|
|
image (System (Debian Unstable) arch) = "joeyh/debian-unstable-" ++ arch
|
|
|
|
image (System (Debian Stable) arch) = "joeyh/debian-stable-" ++ arch
|
|
|
|
image _ = "debian-stable-official" -- does not currently exist!
|
2014-04-08 23:42:54 +00:00
|
|
|
|
2014-04-03 16:06:58 +00:00
|
|
|
-- Clean up a system as installed by cloudatcost.com
|
2014-04-10 21:46:03 +00:00
|
|
|
cleanCloudAtCost :: Property
|
|
|
|
cleanCloudAtCost = propertyList "cloudatcost cleanup"
|
2014-04-11 04:07:47 +00:00
|
|
|
[ Hostname.sane
|
|
|
|
, Ssh.uniqueHostKeys
|
2014-04-03 16:06:58 +00:00
|
|
|
, "worked around grub/lvm boot bug #743126" ==>
|
|
|
|
"/etc/default/grub" `File.containsLine` "GRUB_DISABLE_LINUX_UUID=true"
|
|
|
|
`onChange` cmdProperty "update-grub" []
|
|
|
|
`onChange` cmdProperty "update-initramfs" ["-u"]
|
|
|
|
, combineProperties "nuked cloudatcost cruft"
|
|
|
|
[ File.notPresent "/etc/rc.local"
|
|
|
|
, File.notPresent "/etc/init.d/S97-setup.sh"
|
|
|
|
, User.nuked "user" User.YesReallyDeleteHome
|
|
|
|
]
|
|
|
|
]
|
2014-04-10 05:46:33 +00:00
|
|
|
|
|
|
|
myDnsSecondary :: [Dns.Zone]
|
|
|
|
myDnsSecondary =
|
|
|
|
[ Dns.secondary "kitenet.net" master
|
|
|
|
, Dns.secondary "joeyh.name" master
|
|
|
|
, Dns.secondary "ikiwiki.info" master
|
|
|
|
, Dns.secondary "olduse.net" master
|
|
|
|
, Dns.secondary "branchable.com" branchablemaster
|
|
|
|
]
|
|
|
|
where
|
|
|
|
master = ["80.68.85.49", "2001:41c8:125:49::10"] -- wren
|
|
|
|
branchablemaster = ["66.228.46.55", "2600:3c03::f03c:91ff:fedf:c0e5"]
|
2014-04-11 01:09:20 +00:00
|
|
|
|
|
|
|
main :: IO ()
|
|
|
|
main = defaultMain hosts --, Docker.containerProperties container]
|