blob: 507ec52c4718c6bd3e943d6db3f7dbbebc2ea097 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
class puppet::debian inherits puppet::linux {
file{'/etc/default/puppet':
source => [ "puppet://$server/modules/site-puppet/client/debian/${fqdn}/puppet",
"puppet://$server/modules/site-puppet/client/debian/${domain}/puppet",
"puppet://$server/modules/site-puppet/client/debian/puppet",
"puppet://$server/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',
}
}
|