summaryrefslogtreecommitdiff
path: root/manifests/puppetmaster/checklastrun/disable.pp
blob: 3fc91d03a128326af15ddabf6beabe0724d53b74 (plain)
1
2
3
4
5
6
7
8
9
10
class puppet::puppetmaster::checklastrun::disable inherits puppet::puppetmaster::checklastrun {
  File['/usr/local/sbin/puppetlast']{
    source => undef,
    ensure => absent,
  }
  File['/etc/cron.d/puppetlast.cron']{
    ensure => absent,
  }
}