diff options
author | Micah Anderson <micah@riseup.net> | 2011-01-11 00:59:17 -0500 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2011-01-11 00:59:17 -0500 |
commit | b4e567041e725c9550947dc4599d51b53b40d6a0 (patch) | |
tree | 8d719624331265d027d493fc96f96f081f600091 | |
parent | 7578bb699d0125efbb9cf012f15b1e1ed9561483 (diff) |
fix dependency error for the /etc/cron.d/puppetlast.cron
-rw-r--r-- | manifests/puppetmaster/checklastrun.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/puppetmaster/checklastrun.pp b/manifests/puppetmaster/checklastrun.pp index 17f4553..93ed8b9 100644 --- a/manifests/puppetmaster/checklastrun.pp +++ b/manifests/puppetmaster/checklastrun.pp @@ -19,7 +19,7 @@ class puppet::puppetmaster::checklastrun { '/etc/cron.d/puppetlast.cron': content => "${puppetmaster_lastruncheck_cron} root /usr/local/sbin/puppetlast ${puppet_lastruncheck_timeout_str} ${puppet_lastruncheck_ignorehosts_str} ${$puppet_lastruncheck_additionaloptions}\n", - require => File["/usr/local/bin/puppetlast"], + require => File["/usr/local/sbin/puppetlast"], owner => root, group => 0, mode => 0644, } } |