summaryrefslogtreecommitdiff
path: root/manifests/base.pp
blob: 267be61fdbf388ddaec53060b87aa42fc9c1b479 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class puppet::base {
  if !$puppet_config { $puppet_config = '/etc/puppet/puppet.conf' }

  file { 'puppet_config':
    path => "$puppet_config",
    source => [ "puppet:///modules/site-puppet/client/${fqdn}/puppet.conf",
                "puppet:///modules/site-puppet/client/puppet.conf.$operatingsystem",
                "puppet:///modules/site-puppet/client/puppet.conf",
                "puppet:///modules/puppet/client/puppet.conf.$operatingsystem",
                "puppet:///modules/puppet/client/puppet.conf" ],
    notify => Service[puppet],
	  # if puppetmasterd is deployed by apache2/passenger it needs to read puppet.conf 
	  # therefore it must be readable by puppet
    owner => puppet, group => 0, mode => 600;  
  }
  service{'puppet':
    ensure => running,
    enable => true,
    hasstatus => true,
    hasrestart => true,
    pattern => puppetd,
  }
}