propellor/config-joey.hs

265 lines
11 KiB
Haskell
Raw Normal View History

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-14 00:22:35 +00:00
import qualified Propellor.Property.Apache as Apache
2014-04-14 19:35:29 +00:00
import qualified Propellor.Property.Postfix as Postfix
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-14 06:24:55 +00:00
-- _ ______`| ,-.__
{- Propellor -- / \___-=O`/|O`/__| (____.'
Deployed -} -- \ / | / ) _.-"-._
-- `/-==__ _/__|/__=-| ( \_
hosts :: [Host] -- * \ | | '--------'
hosts = -- (o) `
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.
, standardSystem "clam.kitenet.net" Unstable "amd64"
2014-04-11 04:14:50 +00:00
& cleanCloudAtCost
2014-04-11 01:09:20 +00:00
& Apt.unattendedUpgrades
& Network.ipv6to4
& Tor.isBridge
2014-04-14 19:35:29 +00:00
& Postfix.satellite
2014-04-11 01:09:20 +00:00
& Docker.configured
2014-04-14 19:35:29 +00:00
2014-04-11 01:09:20 +00:00
& 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-13 18:01:30 +00:00
-- I'd rather this were on diatom, but it needs unstable.
2014-04-13 16:24:14 +00:00
& cname "kgb.kitenet.net"
2014-04-13 18:01:30 +00:00
& JoeySites.kgbServer
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.
, standardSystem "orca.kitenet.net" Unstable "amd64"
2014-04-11 01:09:20 +00:00
& Hostname.sane
& Apt.unattendedUpgrades
2014-04-14 19:35:29 +00:00
& Postfix.satellite
2014-04-11 01:09:20 +00:00
& 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.
, standardSystem "diatom.kitenet.net" Stable "amd64"
2014-04-11 01:09:20 +00:00
& Hostname.sane
2014-04-13 18:01:30 +00:00
& Ssh.hostKey SshDsa
& Ssh.hostKey SshRsa
& Ssh.hostKey SshEcdsa
2014-04-11 01:09:20 +00:00
& Apt.unattendedUpgrades
& Apt.serviceInstalledRunning "ntp"
2014-04-18 21:19:28 +00:00
& Dns.servingZones myDnsSecondary
2014-04-14 19:35:29 +00:00
& Postfix.satellite
2014-04-14 00:22:35 +00:00
2014-04-11 01:09:20 +00:00
& Apt.serviceInstalledRunning "apache2"
2014-04-14 00:22:35 +00:00
& File.hasPrivContent "/etc/ssl/certs/web.pem"
& File.hasPrivContent "/etc/ssl/private/web.pem"
& File.hasPrivContent "/etc/ssl/certs/startssl.pem"
& Apache.modEnabled "ssl"
2014-04-14 01:04:34 +00:00
& Apache.multiSSL
2014-04-13 20:53:33 +00:00
& File.ownerGroup "/srv/web" "joey" "joey"
2014-04-13 07:09:00 +00:00
& cname "git.kitenet.net"
2014-04-13 18:01:30 +00:00
& cname "git.joeyh.name"
& JoeySites.gitServer hosts
2014-04-13 15:58:22 +00:00
& cname "downloads.kitenet.net"
2014-04-13 21:03:21 +00:00
& JoeySites.annexWebSite hosts "/srv/git/downloads.git"
2014-04-13 20:38:58 +00:00
"downloads.kitenet.net"
"840760dc-08f0-11e2-8c61-576b7e66acfd"
[("turtle", "ssh://turtle.kitenet.net/~/lib/downloads/")]
2014-04-14 18:00:37 +00:00
& JoeySites.annexRsyncServer
2014-04-13 20:38:58 +00:00
& cname "tmp.kitenet.net"
2014-04-13 21:03:21 +00:00
& JoeySites.annexWebSite hosts "/srv/git/joey/tmp.git"
2014-04-13 20:38:58 +00:00
"tmp.kitenet.net"
2014-04-13 21:03:21 +00:00
"26fd6e38-1226-11e2-a75f-ff007033bdba"
2014-04-13 20:38:58 +00:00
[]
2014-04-14 18:40:57 +00:00
& JoeySites.twitRss
2014-04-13 20:38:58 +00:00
2014-04-18 03:32:42 +00:00
& cname "nntp.olduse.net"
& JoeySites.oldUseNetServer hosts
2014-04-13 20:38:58 +00:00
& Apt.installed ["ntop"]
2014-04-03 16:06:58 +00:00
2014-04-14 06:27:09 +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-13 16:21:43 +00:00
-- Exhibit: kite's 90's website.
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-14 06:31:58 +00:00
] ++ monsters
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 -> Architecture -> Host
standardSystem hn suite arch = host hn
& os (System (Debian suite) arch)
2014-04-18 02:25:09 +00:00
& Apt.stdSourcesList suite
2014-04-18 02:09:29 +00:00
`onChange` Apt.upgrade
2014-04-10 04:10:08 +00:00
& 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)
& os (System (Debian suite) arch)
2014-04-11 03:20:12 +00:00
& 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
2014-04-13 07:09:00 +00:00
, Ssh.randomHostKeys
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
2014-04-18 18:44:46 +00:00
myDnsSecondary :: [Dns.NamedConf]
2014-04-10 05:46:33 +00:00
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
2014-04-18 21:19:28 +00:00
master = [Dns.IPv4 "80.68.85.49", Dns.IPv6 "2001:41c8:125:49::10"] -- wren
branchablemaster = [Dns.IPv4 "66.228.46.55", Dns.IPv6 "2600:3c03::f03c:91ff:fedf:c0e5"]
2014-04-11 01:09:20 +00:00
main :: IO ()
2014-04-14 06:24:55 +00:00
main = defaultMain hosts
-- o
-- ___ o o
{-----\ / o \ ___o o
{ \ __ \ / _ (X___>-- __o
_____________________{ ______\___ \__/ | \__/ \____ |X__>
< \___//|\\___/\ \____________ _
\ ___/ | \___ # # \ (-)
2014-04-14 06:45:58 +00:00
\ O O O # | \ # >=)
2014-04-14 06:24:55 +00:00
\______________________________# # / #__________________/ (-}
2014-04-14 06:31:58 +00:00
monsters :: [Host] -- Systems I don't manage with propellor,
monsters = -- but do want to track their public keys.
[ host "usw-s002.rsync.net"
& sshPubKey "ssh-dss AAAAB3NzaC1kc3MAAAEBAI6ZsoW8a+Zl6NqUf9a4xXSMcV1akJHDEKKBzlI2YZo9gb9YoCf5p9oby8THUSgfh4kse7LJeY7Nb64NR6Y/X7I2/QzbE1HGGl5mMwB6LeUcJ74T3TQAlNEZkGt/MOIVLolJHk049hC09zLpkUDtX8K0t1yaCirC9SxDGLTCLEhvU9+vVdVrdQlKZ9wpLUNbdAzvbra+O/IVvExxDZ9WCHrnfNA8ddVZIGEWMqsoNgiuCxiXpi8qL+noghsSQNFTXwo7W2Vp9zj1JkCt3GtSz5IzEpARQaXEAWNEM0n1nJ686YUOhou64iRM8bPC1lp3QXvvZNgj3m+QHhIempx+de8AAAAVAKB5vUDaZOg14gRn7Bp81ja/ik+RAAABACPH/bPbW912x1NxNiikzGR6clLh+bLpIp8Qie3J7DwOr8oC1QOKjNDK+UgQ7mDQEgr4nGjNKSvpDi4c1QCw4sbLqQgx1y2VhT0SmUPHf5NQFldRQyR/jcevSSwOBxszz3aq9AwHiv9OWaO3XY18suXPouiuPTpIcZwc2BLDNHFnDURQeGEtmgqj6gZLIkTY0iw7q9Tj5FOyl4AkvEJC5B4CSzaWgey93Wqn1Imt7KI8+H9lApMKziVL1q+K7xAuNkGmx5YOSNlE6rKAPtsIPHZGxR7dch0GURv2jhh0NQYvBRn3ukCjuIO5gx56HLgilq59/o50zZ4NcT7iASF76TcAAAEAC6YxX7rrs8pp13W4YGiJHwFvIO1yXLGOdqu66JM0plO4J1ItV1AQcazOXLiliny3p2/W+wXZZKd5HIRt52YafCA8YNyMk/sF7JcTR4d4z9CfKaAxh0UpzKiAk+0j/Wu3iPoTOsyt7N0j1+dIyrFodY2sKKuBMT4TQ0yqQpbC+IDQv2i1IlZAPneYGfd5MIGygs2QMfaMQ1jWAKJvEO0vstZ7GB6nDAcg4in3ZiBHtomx3PL5w+zg48S4Ed69BiFXLZ1f6MnjpUOP75pD4MP6toS0rgK9b93xCrEQLgm4oD/7TCHHBo2xR7wwcsN2OddtwWsEM2QgOkt/jdCAoVCqwQ=="
, host "turtle.kitenet.net"
& sshPubKey "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAokMXQiX/NZjA1UbhMdgAscnS5dsmy+Q7bWrQ6tsTZ/o+6N/T5cbjoBHOdpypXJI3y/PiJTDJaQtXIhLa8gFg/EvxMnMz/KG9skADW1361JmfCc4BxicQIO2IOOe6eilPr+YsnOwiHwL0vpUnuty39cppuMWVD25GzxXlS6KQsLCvXLzxLLuNnGC43UAM0q4UwQxDtAZEK1dH2o3HMWhgMP2qEQupc24dbhpO3ecxh2C9678a3oGDuDuNf7mLp3s7ptj5qF3onitpJ82U5o7VajaHoygMaSRFeWxP2c13eM57j3bLdLwxVXFhePcKXARu1iuFTLS5uUf3hN6MkQcOGw=="
, host "github.com"
& sshPubKey "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ=="
]