summaryrefslogtreecommitdiff
path: root/manifests/puppetmaster/checklastrun.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/puppetmaster/checklastrun.pp')
-rw-r--r--manifests/puppetmaster/checklastrun.pp18
1 files changed, 10 insertions, 8 deletions
diff --git a/manifests/puppetmaster/checklastrun.pp b/manifests/puppetmaster/checklastrun.pp
index 72a97ce..17f4553 100644
--- a/manifests/puppetmaster/checklastrun.pp
+++ b/manifests/puppetmaster/checklastrun.pp
@@ -1,4 +1,5 @@
class puppet::puppetmaster::checklastrun {
+
$puppet_lastruncheck_ignorehosts_str = $puppet_lastruncheck_ignorehosts ? {
'' => '',
undef => '',
@@ -11,13 +12,14 @@ class puppet::puppetmaster::checklastrun {
default => "--timeout ${puppet_lastruncheck_timeout}"
}
- file{"/usr/local/sbin/puppetlast":
- source => [ "puppet:///modules/puppet/master/lastruncheck" ],
- owner => root, group => 0, mode => 0700;
- }
- file{'/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"],
- owner => root, group => 0, mode => 0644,
+ file{
+ '/usr/local/sbin/puppetlast':
+ source => [ "puppet:///modules/puppet/master/lastruncheck" ],
+ owner => root, group => 0, mode => 0700;
+
+ '/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"],
+ owner => root, group => 0, mode => 0644,
}
}