Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Puppet and Agent configuration

Tags:

puppet

I m actually trying to create an Agent from Puppet and I m facing a problem.

In fact, I have the standard generated puppet.conf file in my agent that globally look like this :

[main]
logdir=/var/log/puppet
vardir=/var/lib/puppet
ssldir=/var/lib/puppet/ssl
rundir=/var/run/puppet
factpath=$vardir/lib/facter
templatedir=$confdir/templates
prerun_command=/etc/puppet/etckeeper-commit-pre
postrun_command=/etc/puppet/etckeeper-commit-post

[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

Actually, I m trying to find where I should set my master information inside of the agent ? How can my agent connect to the master in this file ?

I didn't find anything great concerning this in the documentation...

Can you help me ?

like image 368
mfrachet Avatar asked Nov 18 '25 16:11

mfrachet


1 Answers

You need an agent block. Something similar to the following:

You can run puppet agent --genconfig to know about other attributes.

[agent]
# The server to which puppet agent should connect 
server = mypuppet.server.org

# The file in which puppetd stores a list of the classes
# associated with the retrieved configuratiion.  Can be loaded in
# the separate ``puppet`` executable using the ``--loadclasses``
# option.
# The default value is '$confdir/classes.txt'.
classfile = $vardir/classes.txt

# Where puppetd caches the local configuration.  An
# extension indicating the cache format is added automatically.
# The default value is '$confdir/localconfig'.
localconfig = $vardir/localconfig

# How often puppet agent applies the client configuration; in seconds.
# Note that a runinterval of 0 means "run continuously" rather than
# "never run." If you want puppet agent to never run, you should start
# it with the `--no-client` option.
# The default value is '1800'.
runinterval = 86400
like image 188
iamauser Avatar answered Nov 21 '25 23:11

iamauser