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

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

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