puppet-conf.txt
| 1 |
[main] |
|---|---|
| 2 |
# The Puppet log directory. |
| 3 |
# The default value is '$vardir/log'. |
| 4 |
logdir = /var/log/puppet |
| 5 |
|
| 6 |
# Where Puppet PID files are kept. |
| 7 |
# The default value is '$vardir/run'. |
| 8 |
rundir = /var/run/puppet |
| 9 |
|
| 10 |
# Where SSL certificates are kept. |
| 11 |
# The default value is '$confdir/ssl'. |
| 12 |
ssldir = $vardir/ssl |
| 13 |
|
| 14 |
[master] |
| 15 |
storeconfigs = true |
| 16 |
dbadapter = sqlite3 |
| 17 |
dblocation = /var/lib/puppet/storeconfigs.sqlite |
| 18 |
|
| 19 |
[agent] |
| 20 |
# The file in which puppetd stores a list of the classes |
| 21 |
# associated with the retrieved configuratiion. Can be loaded in |
| 22 |
# the separate ``puppet`` executable using the ``--loadclasses`` |
| 23 |
# option. |
| 24 |
# The default value is '$confdir/classes.txt'. |
| 25 |
classfile = $vardir/classes.txt |
| 26 |
|
| 27 |
# Where puppetd caches the local configuration. An |
| 28 |
# extension indicating the cache format is added automatically. |
| 29 |
# The default value is '$confdir/localconfig'. |
| 30 |
localconfig = $vardir/localconfig |