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