summaryrefslogtreecommitdiff
path: root/manifests/puppetmaster/checklastrun/disable.pp
blob: 85592803d0c73b1f37d06e5a7f2c9bdab11f89c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class puppet::puppetmaster::checklastrun::disable inherits puppet::puppetmaster::checklastrun {

  File['/usr/local/sbin/puppetlast']{
    source => undef,
    ensure => absent,
  }

  File['/etc/cron.d/puppetlast']{
    ensure => absent,
  }
}