
Move the install location of the git checkout of the config repo to /opt/system-config to make things more consistent for operators. Actually moving this on the puppetmaster will be a manual step. Change-Id: Id9297088ae6c76c02e35414433aae2733f9f639c
40 lines
984 B
Plaintext
40 lines
984 B
Plaintext
[main]
|
|
logdir=/var/log/puppet
|
|
vardir=/var/lib/puppet
|
|
ssldir=/var/lib/puppet/ssl
|
|
rundir=/var/run/puppet
|
|
<% if @puppet_version.to_f < 3.6 -%>
|
|
factpath=$vardir/lib/facter
|
|
templatedir=$confdir/templates
|
|
server=puppetmaster.openstack.org
|
|
certname=<%= @certname %>
|
|
pluginsync=true
|
|
<% end %>
|
|
<% if @puppet_version.to_f >= 3.6 -%>
|
|
basemodulepath = /etc/puppet/modules
|
|
environmentpath = /etc/puppet/environments
|
|
environmenttimeout = 0
|
|
<% end %>
|
|
|
|
|
|
[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
|
|
<% if @puppet_version.to_f < 3.6 -%>
|
|
manifestdir=/opt/system-config/$environment/manifests
|
|
modulepath=/opt/system-config/$environment/modules:/etc/puppet/modules
|
|
manifest=$manifestdir/site.pp
|
|
<% end -%>
|
|
reports=store,puppetdb
|
|
<% if @ca_server -%>
|
|
ca = false
|
|
ca_server = <%= @ca_server %>
|
|
<% end -%>
|
|
|
|
[agent]
|
|
report=true
|
|
splay=true
|
|
runinterval=600
|