summaryrefslogtreecommitdiff
path: root/config.hs
diff options
context:
space:
mode:
authorJoey Hess2014-03-31 01:29:47 -0400
committerJoey Hess2014-03-31 01:29:47 -0400
commit51fc590b61a7e68a5e038919f1aaea7a1d9fcc71 (patch)
treea48fa9edb4ddf16a83d7b27767e5514d94c8c5f1 /config.hs
parent48b4626af26ac8a8ed21692752af09a9e0d0b93e (diff)
propellor spin
Diffstat (limited to 'config.hs')
-rw-r--r--config.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/config.hs b/config.hs
index e0dc485d..b3b525b0 100644
--- a/config.hs
+++ b/config.hs
@@ -7,6 +7,7 @@ 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
@@ -63,6 +64,7 @@ standardSystem suite = propertyList "standard system"
, Sudo.enabledFor "joey"
, GitHome.installedFor "joey"
, Apt.installed ["vim", "screen"]
+ , Cron.runPropellor "30 * * * *"
-- I use postfix, or no MTA.
, Apt.removed ["exim4"] `onChange` Apt.autoRemove
]