blob: 8fff212b502365964fe347710ee93d28a10b7846 (
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.cron']{
ensure => absent,
}
}
|