summaryrefslogtreecommitdiff
path: root/manifests/linux.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/linux.pp')
-rw-r--r--manifests/linux.pp6
1 files changed, 5 insertions, 1 deletions
diff --git a/manifests/linux.pp b/manifests/linux.pp
index 3a35d75..c040bb4 100644
--- a/manifests/linux.pp
+++ b/manifests/linux.pp
@@ -14,7 +14,11 @@ class puppet::linux inherits puppet::base {
require => Package[puppet],
}
- file { '/etc/cron.d/puppetd.cron':
+ # this is to clean up an invalid cron name from a previous version
+ # at some point, this should be removed
+ file { '/etc/cron.d/puppetd.cron': ensure => absent }
+
+ file { '/etc/cron.d/puppetd':
source => [ "puppet:///modules/site-puppet/cron.d/puppetd",
"puppet:///modules/puppet/cron.d/puppetd.${operatingsystem}",
"puppet:///modules/puppet/cron.d/puppetd" ],