summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-01-02 13:44:21 +0100
committervarac <varacanero@zeromail.org>2013-01-02 13:44:21 +0100
commit923304d7b5b6f05df161e0c388d61c9b0b98c210 (patch)
treede414336abb548fc9616ef8587e7604f794a2f27 /manifests
parent0097eeef0b24a85d6f067bbf5b126d3fa22f1c15 (diff)
linted checklastrun.pp
Diffstat (limited to 'manifests')
-rw-r--r--manifests/puppetmaster/checklastrun.pp28
1 files changed, 16 insertions, 12 deletions
diff --git a/manifests/puppetmaster/checklastrun.pp b/manifests/puppetmaster/checklastrun.pp
index 93ed8b9..f89edd0 100644
--- a/manifests/puppetmaster/checklastrun.pp
+++ b/manifests/puppetmaster/checklastrun.pp
@@ -1,25 +1,29 @@
class puppet::puppetmaster::checklastrun {
- $puppet_lastruncheck_ignorehosts_str = $puppet_lastruncheck_ignorehosts ? {
- '' => '',
- undef => '',
- default => "--ignore-hosts ${puppet_lastruncheck_ignorehosts}"
+ $puppet_lastruncheck_ignorehosts_str = $::puppet_lastruncheck_ignorehosts ? {
+ '' => '',
+ undef => '',
+ default => "--ignore-hosts ${::puppet_lastruncheck_ignorehosts}"
}
- $puppet_lastruncheck_timeout_str = $puppet_lastruncheck_timeout ? {
- '' => '',
- undef => '',
- default => "--timeout ${puppet_lastruncheck_timeout}"
+ $puppet_lastruncheck_timeout_str = $::puppet_lastruncheck_timeout ? {
+ '' => '',
+ undef => '',
+ default => "--timeout ${::puppet_lastruncheck_timeout}"
}
file{
'/usr/local/sbin/puppetlast':
- source => [ "puppet:///modules/puppet/master/lastruncheck" ],
- owner => root, group => 0, mode => 0700;
+ 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/sbin/puppetlast"],
- owner => root, group => 0, mode => 0644,
+ require => File['/usr/local/sbin/puppetlast'],
+ owner => root,
+ group => 0,
+ mode => '0644',
}
}