Add spec file for basic puppet configuration on client & server
[myops.git] / puppet / server / modules / sample / files / puppet.conf
1 [main]
2     # Where Puppet stores dynamic and growing data.
3     vardir = /var/lib/puppet
4     # The Puppet log directory.
5     logdir = /var/log/puppet
6     # Where Puppet PID files are kept.
7     rundir = /var/run/puppet
8
9     # Where SSL certificates are kept.
10     # The default value is '$confdir/ssl'.
11     ssldir = $vardir/ssl
12
13 [puppetd]
14     # The file in which puppetd stores a list of the classes
15     # associated with the retrieved configuratiion.  Can be loaded in
16     # the separate ``puppet`` executable using the ``--loadclasses``
17     # option.
18     # The default value is '$confdir/classes.txt'.
19     classfile = $vardir/classes.txt
20
21     # Where puppetd caches the local configuration.  An
22     # extension indicating the cache format is added automatically.
23     # The default value is '$confdir/localconfig'.
24     localconfig = $vardir/localconfig
25
26     server = myops.planet-lab.org
27     ca_server = myops.planet-lab.org
28     report_server = myops.planet-lab.org
29     reportserver = myops.planet-lab.org
30     mkusers = true
31     report = true
32 #    factsync = true
33