Hello all, I am running puppet 2.7.1 with mongrel and an apache proxy. I have been seeing an issue where it appears that the puppetmaster is completely ignoring any facts that are sent to it.
When a client connects, any configuration that relies on facts shows those variables as being empty strings. (I have been testing this with a simple notify resource that prints out the IP address and the FQDN. Both of these are coming up as empty strings.) If I check the list of facts for a node through the REST API, it comes up as an empty list. Moreover, /var/lib/puppet/facts is persistently empty. This has been happening with every client that I have checked. If run a packet capture on the puppetmaster paying attention to the puppetmaster ports, then I definitely see the puppetmaster receive the facts in b64_zlib_yaml format. I can even decode the facts string and get the correct set of facts. So the puppetmaster is definitely receiving the facts. However, in the same packet capture, I see the puppetmaster return json for resources as if it had not received any facts at all. I have even gone so far as to blow away my entire /var/lib/puppet directory (except for the ssl), and try starting fresh to no avail. Does anyone have any suggestions for how I can fix this? I am attaching my puppet.conf in case that will help. Thanks in advance for any advice that anyone has. Thank you very much. John Guthrie jguth...@book.com This electronic mail message contains information that (a) is or may be CONFIDENTIAL, PROPRIETARY IN NATURE, OR OTHERWISE PROTECTED BY LAW FROM DISCLOSURE, and (b) is intended only for the use of the addressee(s) named herein. If you are not an intended recipient, please contact the sender immediately and take the steps necessary to delete the message completely from your computer system. Not Intended as a Substitute for a Writing: Notwithstanding the Uniform Electronic Transaction Act or any other law of similar effect, absent an express statement to the contrary, this e-mail message, its contents, and any attachments hereto are not intended to represent an offer or acceptance to enter into a contract and are not otherwise intended to bind this sender, barnesandnoble.com llc, barnesandnoble.com inc. or any other person or entity. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
# Puppet template # Serial 2011071200 [main] # The Puppet log directory. # The default value is '$vardir/log'. logdir = /var/log/puppet # Where Puppet PID files are kept. # The default value is '$vardir/run'. rundir = /var/run/puppet # Where SSL certificates are kept. # The default value is '$confdir/ssl'. ssldir = $vardir/ssl external_nodes = /usr/local/bin/puppet_get_host_config node_terminus = exec [agent] # 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 server = mongrel01 certificate_revocation = false pluginsync = false [master] #storeconfigs = true #thin_storeconfigs = true dbadapter = mysql dbuser = puppet dbpassword = xxxxxxxx dbserver = puppetdb01 #dbsocket = /var/run/mysqld/mysqld.sock external_nodes = /usr/local/bin/puppet_get_host_config node_terminus = exec manifest = /etc/puppet/manifests/site.pp modulepath = /etc/puppet/modules facts_terminus = yaml