[Puppet Users] Re: trying to start puppetmasterd for the first time - but it only spits out the config file for the master and exits

2010-08-24 Thread JL
yeah. that was it. thanks :P On Aug 24, 12:29 pm, Nigel Kersten wrote: > do you have genconfig = true in your config file? > > > > > > On Tue, Aug 24, 2010 at 6:11 AM, JL wrote: > > Trying to get puppet running - ran through the ruby setup.rb. > > Now, when tr

[Puppet Users] trying to start puppetmasterd for the first time - but it only spits out the config file for the master and exits

2010-08-24 Thread JL
Trying to get puppet running - ran through the ruby setup.rb. Now, when trying to fire up puppetmasterd for the first time (and I have a bare-bones /etc/puppet/manifests/site.pp in place) it spits out the following... root@:/opt/local/sbin> puppetmasterd # The configuration file for master. Not

[Puppet Users] Re: reload/restarting puppetd after puppet.conf change

2010-01-20 Thread JL
> It’s automatic. Check the logs on the client. Is this true for puppetmasterd as well? -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-us...@googlegroups.com. To unsubscribe from this group, send ema

[Puppet Users] Re: Config variables in templates

2010-01-12 Thread JL
How about qualified variables? For example: myclass.pp: class myclass { $test = "content" } otherclass/template.erb: <%= myclass::test %> On Jan 12, 12:45 pm, Trevor Vaughan wrote: > <%= Puppet[:ssldir] %> -- You received this message because you are subscribed to the Google Groups "Pu

[Puppet Users] Re: Config variables in templates

2010-01-12 Thread JL
Never mind, that's what I was looking for Trevor, thanks. On Jan 12, 12:56 pm, JL wrote: > I was hoping there was a way to do it with ruby, but I am just > learning the language.  I know that "puppetd --genconfig" returns the > value, so I was thinking there must be a wa

[Puppet Users] Re: Config variables in templates

2010-01-12 Thread JL
I was hoping there was a way to do it with ruby, but I am just learning the language. I know that "puppetd --genconfig" returns the value, so I was thinking there must be a way to do it with a simple ruby code snippet embedded within the template. -- You received this message because you are sub

[Puppet Users] Config variables in templates

2010-01-12 Thread JL
Is it possible to use configuration variables in templates? For example, I want a template to reference ssldir from /etc/puppet/ puppet.conf. I tried "<%= ssldir %>", but that did not work. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To pos

[Puppet Users] Re: SSL_connect SYSCALL returned=5

2010-01-08 Thread JL
> can you recreate with > > #>puppetd --test --debug --trace > > then post the output I don't have a debug trace, but I can tell you that I switched from webrick to mongrel with nginx and my problem went away. -- You received this message because you are subscribed to the Google Groups "Puppet U

[Puppet Users] Re: Errror on file reference with multiple file sources and missing file match

2010-01-06 Thread JL
> Yeah, it won't quite work for me, because I want the default case to > leave the existing file on the node as-is. Oh well, I will just need > to make sure I have a /path/file.$hostname for every host. Not sure if this would work in your environment, but you could use a generate function to exter

[Puppet Users] Re: SSL_connect SYSCALL returned=5

2009-12-29 Thread JL
> > Does this problem still persist? yes > > Is it always on the same clients? It has happened on every client except (I think) the puppet server itself. The clients are Solaris 10 boxes with a mix of sparc and i386. It seems to be happening about 10x more on one particular client, but I think t

[Puppet Users] Re: per environment tagmail settings?

2009-12-17 Thread JL
On Dec 16, 9:07 pm, Ohad Levy wrote: > There a few custom reports already in foreman (including email summary > notification*1), I'll be happy to add more use cases if you add feature > requests :) I'm not using foreman yet, but this looks like a good time to start. -- You received this message

[Puppet Users] per environment tagmail settings?

2009-12-16 Thread JL
Is it possible to disable tagmail reports for one environment but not another? For example, when I run 'puppetd --test -- environment=testing', I do not want to receive an email. I tried adding "!testing" to to tagmail.conf, but that didn't work. Alternatively, I would like to add a statement to

[Puppet Users] SSL_connect SYSCALL returned=5

2009-12-09 Thread JL
During puppet catalog runs, I sometimes (~ 10%) get the following message: Failed to retrieve current state of resource: SSL_connect SYSCALL returned=5 errno=0 state=SSLv2/v3 read server hello A Has anyone else ran into this? I am running puppet 0.25.1 on Solaris 9 and 10. Let me know what othe