diff options
| author | Joey Hess <joey@kitenet.net> | 2014-03-29 23:24:40 -0400 |
|---|---|---|
| committer | Joey Hess <joey@kitenet.net> | 2014-03-29 23:25:04 -0400 |
| commit | 0e1b587442fb78bcbf4886b53b85ab64b45215b0 (patch) | |
| tree | 9a5e32a9b96c4d025ed38b360c87acba0aaf5524 /Host | |
| parent | d9af8bac5eb7836a3c90e37e870fd73d30b841fd (diff) | |
install systemd on clam and then reboot
Diffstat (limited to 'Host')
| -rw-r--r-- | Host/clam.hs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Host/clam.hs b/Host/clam.hs index 4241222d..53b349df 100644 --- a/Host/clam.hs +++ b/Host/clam.hs @@ -3,18 +3,21 @@ import qualified Property.Apt as Apt import qualified Property.Ssh as Ssh import qualified Property.User as User import qualified Property.GitHome as GitHome +import qualified Property.Reboot as Reboot main = defaultMain [ Apt.stdSourcesList Apt.Unstable `onChange` Apt.upgrade , Apt.installed ["etckeeper"] , Apt.installed ["ssh"] , Apt.installed ["git", "myrepos"] - , GitHome.installed "root" + , 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.installed "joey" + , GitHome.installedFor "joey" , Apt.removed ["exim4"] `onChange` Apt.autoRemove , Apt.installed ["tor"] + , Apt.installed ["systemd-sysv"] `onChange` Reboot.scheduled "+10" ] |
