summaryrefslogtreecommitdiff
path: root/manifests/master/checklastrun.pp
blob: 2544acc661e622d6c9dd01d17d593c82a46197e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# check for last run
class puppet::master::checklastrun {

  $puppet_lastruncheck_ignorehosts_str = $puppet::master::lastruncheck_ignorehosts ? {
    '' => '',
    undef => '',
    default => "--ignore-hosts ${puppet::master::lastruncheck_ignorehosts}"
  }

  $puppet_lastruncheck_timeout_str = $puppet::master::lastruncheck_timeout ? {
    '' => '',
    undef => '',
    default => "--timeout ${puppet::master::lastruncheck_timeout}"
  }

  file{
    '/usr/local/sbin/puppetlast':
      source  => 'puppet:///modules/puppet/master/lastruncheck',
      owner   => root,
      group   => 0,
      mode    => '0700';
    '/etc/cron.d/puppetlast':
      content => "${puppet::master::lastruncheck_cron} root /usr/local/sbin/puppetlast ${puppet_lastruncheck_timeout_str} ${puppet_lastruncheck_ignorehosts_str} ${puppet::master::lastruncheck_additionaloptions} | grep -Ev '^OK: '\n",
      require => File['/usr/local/sbin/puppetlast'],
      owner   => root,
      group   => 0,
      mode    => '0644';
  }
}