From 334e1f98ba83daa716a865ef6c88915a51dc99b5 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Sat, 15 Aug 2015 00:25:03 -0700 Subject: [PATCH] propellor spin --- config-simple.hs | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/config-simple.hs b/config-simple.hs index 7a6a728..fd3bab3 100644 --- a/config-simple.hs +++ b/config-simple.hs @@ -6,14 +6,9 @@ import Propellor.CmdLine import Propellor.Property.Scheduled 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 ---import qualified Propellor.Property.Tor as Tor -import qualified Propellor.Property.Docker as Docker +import qualified Propellor.Property.Hostname as Hostname main :: IO () main = defaultMain hosts @@ -25,11 +20,11 @@ hosts = [ host "hermit" & os (System (Debian (Stable "jessie")) "amd64") & Apt.stdSourcesList - & Apt.installed ["ssh"] + & Apt.installed ["ssh", "build-essential"] & Cron.runPropellor (Cron.Times "30 * * * *") , host "empress" & os (System (Debian (Stable "jessie")) "amd64") & Apt.stdSourcesList - & Apt.installed ["ssh"] + & Apt.installed ["ssh", "build-essential"] & Cron.runPropellor (Cron.Times "30 * * * *") ]