summaryrefslogtreecommitdiff
path: root/manifests/puppetmaster/checklastrun.pp
blob: 72a97ce465b96db49546ed3f0b16a8516f33c3aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class puppet::puppetmaster::checklastrun {
  $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}"
  }

  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,
  }
}