summaryrefslogtreecommitdiff
path: root/manifests/debian.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2010-01-20 00:18:23 +0100
committervarac <varacanero@zeromail.org>2010-01-20 00:18:23 +0100
commite53616384acf3678367f26a2e210381c5427d305 (patch)
treed09170d9c83ee02ef93567bdf8c10f841f896975 /manifests/debian.pp
parent5858994b09d7efecbe3c56cb1c6cbb74f1dc997e (diff)
added cron reload to recognize cronfile changes
Diffstat (limited to 'manifests/debian.pp')
-rw-r--r--manifests/debian.pp9
1 files changed, 9 insertions, 0 deletions
diff --git a/manifests/debian.pp b/manifests/debian.pp
index 62c7661..f078601 100644
--- a/manifests/debian.pp
+++ b/manifests/debian.pp
@@ -13,4 +13,13 @@ class puppet::debian inherits puppet::linux {
File['/etc/cron.d/puppetd.cron']{
path => '/etc/cron.d/puppetd',
}
+
+ service{'cron':
+ name => 'cron',
+ enable => true,
+ ensure => running,
+ hasstatus => true,
+ }
+
+
}