[Puppet Users] Re: facter variables empty

2011-10-06 Thread joffrey
I found it : http://projects.puppetlabs.com/issues/8342 I switch to passenger and it works now. Thanks you On 5 oct, 23:41, Denmat tu2bg...@gmail.com wrote: Hi, sounds like it could be a similar issue of puppet with mongrel. This was raised recently on the list. Have a look at those.

[Puppet Users] Re: Hostname fact doesn't handle hostnames with periods

2011-10-06 Thread Tim Coote
I've had issues like this in a previous life (I was a founder of Tideway Systems and we put a lot of effort into finding info from the runtime environment and reasoning about what the returned info meant). IMO, you've got to be clear what the underlying information model that puppet / facter

Re: [Puppet Users] Re: Hostname fact doesn't handle hostnames with periods

2011-10-06 Thread Ken Barber
I've had issues like this in a previous life (I was a founder of Tideway Systems and we put a lot of effort into finding info from the runtime environment and reasoning about what the returned info meant). IMO, you've got to be clear what the underlying information model that puppet / facter

[Puppet Users] perltidy workalike to tidy up Puppet manifests

2011-10-06 Thread Philip Durbin
There's a wonderful tool called perltidy that can clean up Perl scripts, enforcing certain style guidelines by default but allowing lots of customization. Does Puppet have a tool like perltidy to enforce a certain style in Puppet manifests? I don't see any mention of such a tool at

[Puppet Users] Re: Problem: Puppet under Passenger.

2011-10-06 Thread William
Thanks for your suggestion, Devon. I tried uncommenting that line in config.ru and restarting httpd, but continue to get the same error. I did verify that the libs are in the proper location. [root@server ~]# stat /opt/puppet/lib/puppet.rb File: `/opt/puppet/lib/puppet.rb' Size: 3773

Re: [Puppet Users] perltidy workalike to tidy up Puppet manifests

2011-10-06 Thread Craig White
On Oct 6, 2011, at 7:19 AM, Philip Durbin wrote: There's a wonderful tool called perltidy that can clean up Perl scripts, enforcing certain style guidelines by default but allowing lots of customization. Does Puppet have a tool like perltidy to enforce a certain style in Puppet manifests?

Re: [Puppet Users] perltidy workalike to tidy up Puppet manifests

2011-10-06 Thread Philip Durbin
On Thu, Oct 6, 2011 at 11:00 AM, Craig White craig.wh...@ttiltd.com wrote: On Oct 6, 2011, at 7:19 AM, Philip Durbin wrote: There's a wonderful tool called perltidy that can clean up Perl scripts, enforcing certain style guidelines by default but allowing lots of customization. Does Puppet

[Puppet Users] Feature 4815: Allow Mount to create a mount point and set the under lying permission?

2011-10-06 Thread Jeffrey Ollie
Having this feature would be very useful to me... Other than doing the work myself, is there any hope of getting this any time soon? -- Jeff Ollie -- You received this message because you are subscribed to the Google Groups Puppet Users group. To post to this group, send email to

Re: [Puppet Users] Feature 4815: Allow Mount to create a mount point and set the under lying permission?

2011-10-06 Thread Adam Gibbins
On 6 October 2011 18:15, Jeffrey Ollie j...@ocjtech.us wrote: Having this feature would be very useful to me... Other than doing the work myself, is there any hope of getting this any time soon? -- Jeff Ollie This doesn't really seem the work of a provider, but rather a define. Could you

[Puppet Users] More changes on yum.puppetlabs.com

2011-10-06 Thread Michael Stahnke
Greetings, I'd like to remove the cruft (no longer maintained) areas of yum.puppetlabs.com. I fear they only cause confusion and offer less-than-desirable experience for our users. I'd like to remove /base /prosvc /porsvc.unsigned /SRMS /sources I'd like to do this some time next week. The

[Puppet Users] Re: Puppet 2.7 allows dash in variable names: bug or feature?

2011-10-06 Thread Evgeny
perhaps you should enclose the variables in quotes to something like this: http://${yumserver}/repos/vmware-${esxversion-rhel6-64}; On Oct 5, 8:46 pm, Steve Snodgrass phe...@gmail.com wrote: While testing puppet 2.7, I found that one of my manifests broke because of the following quoted

[Puppet Users] Applying policy based on network address

2011-10-06 Thread CZACHOR, KRISTOPHER
Hi all, I'm trying to wrap my brain around this one and could use a little help/guidance. I have need to deploy software based on the network a system is in. Has anyone had need or been able to do the following?: (Pseudo code) If 123.123.123.123 is in 123.123.123.0/24 or 234.234.234.234.0/24

Re: [Puppet Users] Re: I can't seem to create mountpoint and change permissions after mounting in 2.7.3

2011-10-06 Thread Chris McDermott
I haven't used them yet, but isn't this what stages are meant to facilitate? http://docs.puppetlabs.com/references/stable/metaparameter.html#stage -- 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] Puppet installation

2011-10-06 Thread Ashish
Hi Folks, I am trying a non-standard installation of puppet. I have root privileges during installation how ever I will not have root privileges during run time. I wish to exercise more control over puppet master / slave during run time. For the default yum based installation, the various

[Puppet Users] Re: Problem: Puppet under Passenger.

2011-10-06 Thread William
Correction. I'm not sure what config.ru I changed but it obviously wasn't the right one. Now I'm getting errors about not being able to load Facter but I'm pretty sure I can sort it out from here. Thanks for your help Devon. On Oct 6, 10:40 am, William wsti...@gmail.com wrote: Thanks for your

Re: [Puppet Users] Applying policy based on network address

2011-10-06 Thread Craig White
On Oct 5, 2011, at 7:38 PM, CZACHOR, KRISTOPHER wrote: Hi all, I’m trying to wrap my brain around this one and could use a little help/guidance. I have need to deploy software based on the network a system is in. Has anyone had need or been able to do the following?: (Pseudo

[Puppet Users] Re: Problem: Puppet under Passenger.

2011-10-06 Thread Ramin K
IIRC there are issues with Puppet and Ruby 1.9.2 specifically with ssl. You could be running into something like this, http://groups.google.com/group/puppet-users/browse_thread/thread/fa49f1b9b36ceac6/72bf694d4e2f3012 However if you're planning to run this instance in production I'd use Ruby

[Puppet Users] Re: Problems with exported resources after upgrade to 2.7.5

2011-10-06 Thread Rob Walsh
This is definitely busted for me too. I think it's just broken when custom defines are exported, as exported classes seem to be working OK (witness nagios::service for example). Any word on a fix? Thanks, Robin On Oct 3, 7:51 am, Greg Sutcliffe greg.sutcli...@gmail.com wrote: Hi all, I use a

Re: [Puppet Users] Feature 4815: Allow Mount to create a mount point and set the under lying permission?

2011-10-06 Thread Jeffrey Ollie
On Thu, Oct 6, 2011 at 12:17 PM, Adam Gibbins a...@adamgibbins.com wrote: On 6 October 2011 18:15, Jeffrey Ollie j...@ocjtech.us wrote: Having this feature would be very useful to me...  Other than doing the work myself, is there any hope of getting this any time soon? This doesn't really

Re: [Puppet Users] Re: Problems with exported resources after upgrade to 2.7.5

2011-10-06 Thread Nigel Kersten
On Thu, Oct 6, 2011 at 11:50 AM, Rob Walsh rob.wa...@gmail.com wrote: This is definitely busted for me too. I think it's just broken when custom defines are exported, as exported classes seem to be working OK (witness nagios::service for example). Any word on a fix? Anecdotes have piled up

Re: [Puppet Users] Re: Problems with exported resources after upgrade to 2.7.5

2011-10-06 Thread Daniel Pittman
On Thu, Oct 6, 2011 at 16:01, Nigel Kersten ni...@puppetlabs.com wrote: On Thu, Oct 6, 2011 at 11:50 AM, Rob Walsh rob.wa...@gmail.com wrote: This is definitely busted for me too. I think it's just broken when custom defines are exported, as exported classes seem to be working OK (witness

Re: [Puppet Users] Puppet installation

2011-10-06 Thread Adrien Thebo
You may want to have a look at the output of puppet --genconfig to see what paths are being used by default. At least with 2.7.3, if you run puppet --genconfig as a non-root user, puppet generates a configuration to put itself in $HOME/.puppet instead of the system defaults. If you're running

Re: [Puppet Users] Trigger when on any package change

2011-10-06 Thread GeekBiker
Run once after everything is the desirable result if any packages have been added, removed, or updated. -- You received this message because you are subscribed to the Google Groups Puppet Users group. To view this discussion on the web visit

Re: [Puppet Users] Feature 4815: Allow Mount to create a mount point and set the under lying permission?

2011-10-06 Thread Stefan Schulte
On Thu, Oct 06, 2011 at 03:00:29PM -0500, Jeffrey Ollie wrote: On Thu, Oct 6, 2011 at 12:17 PM, Adam Gibbins a...@adamgibbins.com wrote: On 6 October 2011 18:15, Jeffrey Ollie j...@ocjtech.us wrote: Having this feature would be very useful to me...  Other than doing the work myself, is

Re: [Puppet Users] Re: I can't seem to create mountpoint and change permissions after mounting in 2.7.3

2011-10-06 Thread Scott Smith
Not really On Wed, Oct 5, 2011 at 8:54 PM, Chris McDermott csmcderm...@gmail.comwrote: I haven't used them yet, but isn't this what stages are meant to facilitate? http://docs.puppetlabs.com/references/stable/metaparameter.html#stage -- You received this message because you are subscribed