diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/puppetmaster/checklastrun.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/puppetmaster/checklastrun.pp b/manifests/puppetmaster/checklastrun.pp index b28012c..1c70f56 100644 --- a/manifests/puppetmaster/checklastrun.pp +++ b/manifests/puppetmaster/checklastrun.pp @@ -3,10 +3,10 @@ class puppet::puppetmaster::checklastrun { file{'/opt/bin/puppetlast': source => [ "puppet://$server/files/puppet/master/puppetlast", "puppet://$server/puppet/master/puppetlast"], - owner => root, group => 0, mode =0700; + owner => root, group => 0, mode => 0700; } file{'/etc/cron.d/puppetlast.cron': - content => "40 10,22 * * * root /opt/bin/puppetlast" + content => "40 10,22 * * * root /opt/bin/puppetlast", require => File['/opt/bin/puppetlast'], owner => root, group => 0, mode => 0644; } |