propellor/HostProp.hs

38 lines
1.3 KiB
Haskell
Raw Normal View History

import Property
2014-03-30 04:08:02 +00:00
import HostName
import qualified Property.Apt as Apt
import qualified Property.Ssh as Ssh
import qualified Property.User as User
2014-03-30 03:45:48 +00:00
import qualified Property.Hostname as Hostname
import qualified Property.GitHome as GitHome
import qualified Property.Reboot as Reboot
2014-03-30 04:08:02 +00:00
main :: IO ()
main = ensureProperties . getProperties =<< getHostName
{- This is where the system's HostName, either as returned by uname
- or one specified on the command line is converted into a list of
- Properties for that system. -}
getProperties :: HostName -> [Property]
getProperties "clam" =
[ Apt.stdSourcesList Apt.Unstable `onChange` Apt.upgrade
, Apt.installed ["etckeeper"]
2014-03-30 03:45:48 +00:00
, Hostname.set "clam.kitenet.net"
, Apt.installed ["ssh"]
2014-03-30 03:45:48 +00:00
, Ssh.uniqueHostKeys
, Apt.installed ["git", "myrepos"]
, GitHome.installedFor "root"
, check (Ssh.hasAuthorizedKeys "root") $
Ssh.passwordAuthentication False
, User.nonsystem "joey"
, Apt.installed ["sudo"]
, fileHasContent "/etc/sudoers" ["joey ALL=(ALL:ALL) ALL"]
, GitHome.installedFor "joey"
, Apt.removed ["exim4"] `onChange` Apt.autoRemove
, Apt.installed ["tor"]
, Apt.installed ["systemd-sysv"] `onChange` Reboot.scheduled "+10"
]
2014-03-30 04:08:02 +00:00
-- add more hosts here...
--getProperties "foo" =
getProperties h = error $ "Unknown host: " ++ h ++ " (perhaps you should specify the real hostname on the command line?)"