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

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

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