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 ?