summaryrefslogtreecommitdiff
path: root/manifests/cron/base.pp
blob: 6688c5e3cdb41ea03f6e29b5723fcbe0e5f6f7da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# manifests/cron/base.pp

class puppet::cron::base inherits puppet::base {
    Service['puppet']{
      enable => false,
    }

    case $operatingsystem {
      debian,openbsd,ubuntu: {
        #it's already disabled
      }
      default: {
        Service['puppet']{
          hasstatus => false,
        }
      }
    }
    exec{'stop_puppet':
      command => 'kill `cat /var/run/puppet/puppetd.pid`',
      onlyif => 'test -f /var/run/puppet/puppetd.pid',
      require => Service['puppet'],
    }
}