d82e5dede5
Puppet 4 from puppetlabs changed the default location of hiera.yaml. The versions we run have the old location patched in, but let's put in the value just to be complete. Change-Id: I36ae190fc6758f297f3a48912f79871fd917c2e9
33 lines
731 B
Plaintext
33 lines
731 B
Plaintext
[main]
|
|
logdir=/var/log/puppet
|
|
vardir=/var/lib/puppet
|
|
ssldir=/var/lib/puppet/ssl
|
|
rundir=/var/run/puppet
|
|
basemodulepath=/etc/puppet/modules
|
|
environmentpath = /etc/puppet/environments
|
|
data_binding_terminus = none
|
|
hiera_config = /etc/puppet/hiera.yaml
|
|
|
|
[master]
|
|
# These are needed when the puppetmaster is run by passenger
|
|
# and can safely be removed if webrick is used.
|
|
ssl_client_header = SSL_CLIENT_S_DN
|
|
ssl_client_verify_header = SSL_CLIENT_VERIFY
|
|
reports=store,puppetdb
|
|
environmenttimeout = 0
|
|
<% if @ca_server -%>
|
|
ca = false
|
|
ca_server = <%= @ca_server %>
|
|
<% end -%>
|
|
|
|
[agent]
|
|
report=true
|
|
splay=true
|
|
runinterval=600
|
|
server=<%= @puppetmaster_server %>
|
|
certname=<%= @certname.downcase %>
|
|
pluginsync=true
|
|
|
|
[user]
|
|
reports=puppetdb_file
|