blob: e046e27f7ee372576f02c1247afbec47da92b010 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
class puppet::debian inherits puppet::linux {
file { '/etc/default/puppet':
source => [ "puppet:///modules/site-puppet/client/debian/${fqdn}/puppet",
"puppet:///modules/site-puppet/client/debian/${domain}/puppet",
"puppet:///modules/site-puppet/client/debian/puppet",
"puppet:///modules/puppet/client/debian/puppet" ],
notify => Service[puppet],
owner => root, group => 0, mode => 0644;
}
# there is really no status cmd for it
Service[puppet]{
hasstatus => false,
}
File['/etc/cron.d/puppetd.cron']{
path => '/etc/cron.d/puppetd',
}
}
|