[Puppet Users] Diagram of Puppet Agent/Master/DB communication (Was: Puppet variable with a custom fact)

2014-11-22 Thread Wil Cooley
> > > On Thursday, November 20, 2014 9:22:29 AM UTC-8, Wil Cooley wrote: >> >> (Aside: Does anyone have a link to a diagram of the dance the master and >> agent do? I've been meaning to try to make one on websequencediagrams.com >> but not gotten around to it.) >> > jcbollinger wrote: > There is a

Re: [Puppet Users] Anyone made parser = future working on CentOS 6.5 & Ruby 1.8.x?

2014-11-22 Thread Larry Liu
Hi Felix, Here's the trace output. Warning: ActiveRecord-based storeconfigs and inventory are deprecated. See http://links.puppetlabs.com/activerecord-deprecation (at /usr/lib/ruby/site_ruby/1.8/puppet/indirector/catalog/active_record.rb:12:in `initialize'; /usr/lib/ruby/site_ruby/1.8/pupp

Re: [Puppet Users] Planning dynamic environments with Git

2014-11-22 Thread Spencer Krum
A hook can use ssh to push. We set up a tool called puppetsync that would be run on the puppetmaster, but would be triggered by post-recieve hook over ssh from the git server. On Sat, Nov 22, 2014 at 9:00 PM, Felix Frank < felix.fr...@alumni.tu-berlin.de> wrote: > On 11/20/2014 05:07 PM, Jonathan

Re: [Puppet Users] configure puppet master and puppet agent

2014-11-22 Thread Felix Frank
On 11/20/2014 03:26 AM, fauzi.profit...@gmail.com wrote: > Hi, im very new using linux and I need to make connection between > puppet master and puppet agent. I already success to make httpd port > 8140 listen after that I continues to make a connection between puppet > master and agent but failed.

Re: [Puppet Users] Ensure "rows" in a mysql table

2014-11-22 Thread Felix Frank
On 11/22/2014 04:33 AM, Abhijeet Rastogi wrote: > Hi everyone, > > I've this unique requirement where I have to manage "rows" in a > database using puppet. Well, these rows actually represent "dns > entries". (I'm using powerdns witih mysql > http://doc.powerdns.com/html/generic-mypgsql-backends.ht

Re: [Puppet Users] puppetdoc readme markdown ignored

2014-11-22 Thread Felix Frank
Yes, and it is not clear from the post what part of Puppet is supposed to honor the markdown formatting at the moment. To the OP: Are you using `puppet doc`? Please note that the documentation that you linked refers to documentation that is displayed on the Forge only. The `puppet doc` face expect

Re: [Puppet Users] Anyone made parser = future working on CentOS 6.5 & Ruby 1.8.x?

2014-11-22 Thread Felix Frank
On 11/21/2014 04:16 PM, Larry Liu wrote: > Hi everyone, > > According to puppetlab's doc, parser=future is supposed to work with > puppet version 3.5 or higher. I'm on 3.7.1 which falls under > https://docs.puppetlabs.com/puppet/latest/reference/experiments_future.html, > but it has not worked for

Re: [Puppet Users] Puppet Agent fails; Could not retrieve local facts - but Manually runs successfully

2014-11-22 Thread Felix Frank
On 11/21/2014 12:30 AM, hendri wrote: > This is on Amazon Linux on EC2 - Puppet Agent and master are at 2.7.25 > > Manual runs of facter and puppet `puppet agent -t` complete > successfully and produce no errors. how were if puppet runs either as > service daemon or cron I get the above error in th

Re: [Puppet Users] Unable to install Puppet Master

2014-11-22 Thread Felix Frank
On 11/20/2014 05:25 PM, KB_puppet wrote: > I've been trying to install Puppet on my Centos 6.5 system since > yesterday but to no avail. At first I installed > the |puppetmaster-passenger| but got a lot of errors during > installation. I ended up purging it and today tried a fresh install of > just

Re: [Puppet Users] Planning dynamic environments with Git

2014-11-22 Thread Felix Frank
On 11/20/2014 05:07 PM, Jonathan Gazeley wrote: > But how does that work when the GitLab server and Puppetmaster are > different servers? Well, do they need to be? ;-) -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this gro

Re: [Puppet Users] autosign with --allow-dns-alt-names

2014-11-22 Thread Felix Frank
On 11/20/2014 05:13 AM, Dejan Golja wrote: > I was wondering if it's possible to change the autosign behavior that > it will allow to autosign certs with alternative DNS entries. > Currently the problem is if an auto scaling events create another > master the autosign on CA will fail, because it ha

Re: [Puppet Users] SSL Cert issues - Puppet Agent and Master on same host

2014-11-22 Thread Felix Frank
On 11/18/2014 10:26 PM, kevin.mastel...@gmail.com wrote: > [root@- puppet]# ./node.rb my-puppet-svr > Could not send facts to Foreman: SSL_connect returned=1 errno=0 > state=SSLv3 read server certificate B: certificate verify failed Hmm, I don't know which TCP port is used to contact Foreman,

Re: [Puppet Users] Re: invalid checksum using template

2014-11-22 Thread Felix Frank
On 11/18/2014 06:36 PM, Josh Cooper wrote: > I'm pretty sure puppet has a bug whereby it thinks content of the form > {FOO} specifies a checksum whose algorithm is FOO, and then tries to > retrieve a file whose checksum is FOO from the filebucket. > > See > https://github.com/puppetlabs/puppet/blo

Re: [Puppet Users] execution expired with a puppetmaster with more then enough resources

2014-11-22 Thread Felix Frank
On 11/16/2014 09:48 PM, Philipp Dallig wrote: > > I also found this message in log file. Possible a PuppetDB performance > problem? > Nov 16 00:41:58 puppetmaster01 puppet-master[27659]: Could not > retrieve resources from the PuppetDB at > puppetmaster01.xxx.com:8081: Net::ReadTimeout on node

[Puppet Users] configure puppet master and puppet agent

2014-11-22 Thread Giacomo Vacca
It would be useful to see the output of the agent and the logs on the master. Have you created and signed the SSL certificates? Also alt_dns_names in puppet.conf may have an impact: how does your puppet.conf look like? What versions of Puppet are you using? -- You received this message because y

[Puppet Users] What can I do with erb templates in Puppet?

2014-11-22 Thread Giacomo Vacca
Take a look at Windows-related modules on the Forge:https://forge.puppetlabs.com/tags/windows -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsub

Re: [Puppet Users] What can I do with erb templates in Puppet?

2014-11-22 Thread Spencer Krum
Puppet provides the erb templating system so you can do variable expansion and replacement in your templates. The templates are processed on the puppet master and sent to the client (windows) as text. The windows client then replaces the old config file with the new one from the template. Step 1)