summaryrefslogtreecommitdiff
path: root/manifests/puppetmaster
diff options
context:
space:
mode:
authorGabriel Filion <lelutin@gmail.com>2013-01-02 12:14:12 -0500
committerGabriel Filion <lelutin@gmail.com>2013-01-02 12:14:12 -0500
commit560b7c829e8ec043cf603fd6b1e2a1d3e0946a63 (patch)
tree420db02979146e6c14cf57701e1541e7b97649df /manifests/puppetmaster
parentaaf7ffad90958aff6e068c0496bd5f91e8759e4d (diff)
parent87b8cf7133beb4c9dd6f6e7692d374d302f8ea5a (diff)
Merge branch 'puppet_cron'
Conflicts: manifests/cron.pp manifests/linux.pp take the changes from puppet_cron
Diffstat (limited to 'manifests/puppetmaster')
-rw-r--r--manifests/puppetmaster/checklastrun.pp31
1 files changed, 19 insertions, 12 deletions
diff --git a/manifests/puppetmaster/checklastrun.pp b/manifests/puppetmaster/checklastrun.pp
index 93ed8b9..5a1b1c8 100644
--- a/manifests/puppetmaster/checklastrun.pp
+++ b/manifests/puppetmaster/checklastrun.pp
@@ -1,25 +1,32 @@
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}"
}
+ include ::cron
+
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',
+ notify => Service['cron']
}
}