diff options
author | Gabriel Filion <lelutin@gmail.com> | 2011-01-19 20:09:16 -0500 |
---|---|---|
committer | Gabriel Filion <lelutin@gmail.com> | 2011-07-16 20:57:44 -0400 |
commit | 618384cf08340b34a4eaf1022d200c1acb8161f4 (patch) | |
tree | bfb41b5062b1f250ffb5c26ca00cbb77197fcd9f /files/client | |
parent | 3bcfd81f64f504cb9be05ccdb8b81652ff872d0f (diff) |
Support puppet client for FreeBSD
Some pieces of the puzzle are missing for being able to manage puppet in
FreeBSD.
* Add a default puppet client config template for FreeBSD
* In FreeBSD, puppet.conf is not in /etc/puppet/ so let's provide a
value for this variable in init.pp.
* The rc script for starting and stopping puppet is not located in
/etc/rc.d so let's signify this to Service[puppet]
Signed-off-by: Gabriel Filion <lelutin@gmail.com>
Diffstat (limited to 'files/client')
-rw-r--r-- | files/client/puppet.conf.FreeBSD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/files/client/puppet.conf.FreeBSD b/files/client/puppet.conf.FreeBSD new file mode 100644 index 0000000..cd8bd2a --- /dev/null +++ b/files/client/puppet.conf.FreeBSD @@ -0,0 +1,26 @@ +[main] + logdir=/var/log/puppet + vardir=/var/puppet + rundir=/var/run/puppet + + ssldir=/usr/local/etc/puppet/ssl + + # Where 3rd party plugins and modules are installed + libdir = $vardir/lib + + templatedir=$vardir/templates + + # Turn plug-in synchronization on. + pluginsync = true + pluginsource = puppet://$server/plugins + factpath = $vardir/lib/facter + +[puppetd] + report=true + server=server.example.com + + # different run-interval, default= 30min + # e.g. run puppetd every 4 hours = 14400 + # runinterval = 14400 + + logdest=$logdir/puppet.log |