]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/debian-org/templates/puppet.conf.erb
drop out reports
[dsa-puppet.git] / modules / debian-org / templates / puppet.conf.erb
1 ##
2 ## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
3 ## USE: git clone git+ssh://$USER@puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet.git
4 ##
5
6 [main]
7 logdir=/var/log/puppet
8 vardir=/var/lib/puppet
9 ssldir=/var/lib/puppet/ssl
10 rundir=/var/run/puppet
11 factpath=$vardir/lib/facter
12 pluginsync=true
13 modulepath=/etc/puppet/modules:/etc/puppet/3rdparty/modules:/usr/share/puppet/modules
14 # This is the default environment for all clients
15 environment=production
16
17 <%- if scope.lookupvar('::hostname') == 'handel' -%>
18 [master]
19 environments = production,staging
20 reports = store
21 config_version = cat /etc/puppet/.config-version
22 storeconfigs = true
23 thin_storeconfigs = true
24 dbadapter=mysql
25 dbuser=puppet
26 dbpassword=<%= scope.lookupvar('dbpassword') %>
27 dbserver=localhost
28 <%- end -%>
29
30 [agent]
31 environments = development,testing,production,staging
32 report = true
33 configtimeout = 240
34
35 [production]
36 manifestdir=/srv/puppet.debian.org/stages/production/manifests
37 fileserverconfig=/srv/puppet.debian.org/stages/production/fileserver.conf
38 modulepath=/srv/puppet.debian.org/stages/production/modules:/srv/puppet.debian.org/stages/production/3rdparty/modules
39
40 [staging]
41 manifestdir=/srv/puppet.debian.org/stages/staging/manifests
42 fileserverconfig=/srv/puppet.debian.org/stages/staging/fileserver.conf
43 modulepath=/srv/puppet.debian.org/stages/staging/modules:/srv/puppet.debian.org/stages/staging/3rdparty/modules