summaryrefslogtreecommitdiff
path: root/manifests/debian.pp
blob: 9f33c649fd6908bcdc2a8dc44cc0c9c9f65f1459 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
  }
  
  File['/etc/cron.d/puppetd.cron']{
    path => '/etc/cron.d/puppetd',
  }
}