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

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