[Puppet Users] Re: Schedule puppet runs

2009-06-16 Thread josbal
Hi mike, Thanks for the response. I will definately look into this method. Do you know if this, or something else is a "puppet standard" way of doing what im after? I know with projects like puppet, there are a million and one ways to skin a cat, but would just like to know what is the suggeste

[Puppet Users] Re: Schedule puppet runs

2009-06-16 Thread drmikecrowe
I created this little batch file I put in cron.hourly (You can adapt to put in crontab to run on the hours you want it to): ## #!/bin/bash SERVER="--server URL.PUPPETMASTER.COM" FIRST=`echo $RANDOM%1800 | bc` sleep $FIRST /usr/sbin/puppetd -

[Puppet Users] Server Hierarchies and other configuration questions

2009-06-16 Thread Don
I apologize if this has been asked before but if it has- my google technique has failed me. If anyone can point me at the right docs I'm happy to dive right in. While I'm not having any problems with Puppet, I am having some trouble understanding the best practices. Specifically: I have a baseno

[Puppet Users] Re: passenger on Mac OS X question

2009-06-16 Thread Nigel Kersten
On Tue, Jun 16, 2009 at 4:39 PM, Allan Marcus wrote: > > hello, > > I have installed an configered passenger on my OS X server according > to http://reductivelabs.com/trac/puppet/wiki/UsingPassenger > > Now, how do I tell puppet to use it? Do I need to put something in my / > etc/puppet/puppet.con

[Puppet Users] Re: Unable to exec 'sudo apt-get build-dep rubygems'

2009-06-16 Thread Joe McDonagh
Swati wrote: > Hi, > > I am trying to build ruby gems from source by execing sudo apt-get > install rubygems. But this command fails and returns 1. When I run a > the particular command from the terminal it runs fine. I am sorry, I > am newbie to puppet as well as linux type operating systems, any

[Puppet Users] passenger on Mac OS X question

2009-06-16 Thread Allan Marcus
hello, I have installed an configered passenger on my OS X server according to http://reductivelabs.com/trac/puppet/wiki/UsingPassenger Now, how do I tell puppet to use it? Do I need to put something in my / etc/puppet/puppet.conf file? --- Thanks, Allan Marcus 505-667-5666 --~--~--

[Puppet Users] Re: Schedule puppet runs

2009-06-16 Thread josbal
Would disabling the puppetd's from contacting the puppetmaster and scheduling puppetrun on the puppetmaster at the time and for the servers that I would like to update at night, be the way i should do it? Im sure it would work, but im not sure this is the best way. --~--~-~--~~---

[Puppet Users] Puppet on SLES

2009-06-16 Thread justin . kinney
I currently manage approximately 150 hosts with a handful of ZLM policies, but I've had one too many policies lost by the management server to keep using this solution. I'm wondering if anyone has any experiences (good or bad) they'd be willing to share specific to using Puppet with SLES (9 and

[Puppet Users] Unable to exec 'sudo apt-get build-dep rubygems'

2009-06-16 Thread Swati
Hi, I am trying to build ruby gems from source by execing sudo apt-get install rubygems. But this command fails and returns 1. When I run a the particular command from the terminal it runs fine. I am sorry, I am newbie to puppet as well as linux type operating systems, any help would be appreciat

[Puppet Users] Re: Next Release for Windows

2009-06-16 Thread RijilV
2009/6/16 harry : > Which release  will support Windows OS and is there any date set for > that release  ? The last post on the developer list wrt windows[0] was looking for people to test out the windows support. Probably the best way to get a date set right now is to check out the code and giv

[Puppet Users] Next Release for Windows

2009-06-16 Thread harry
Hello, Which release will support Windows OS and is there any date set for that release ? Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-u

[Puppet Users] Re: Passenger

2009-06-16 Thread Moty
FIXED What solved the problem was upgrading passenger. ubuntu jaunty distribution comes with version 2.0.3. upgrading to version 2.2.2 from : http://apt.brightbox.net solved all issue. Moty On Jun 16, 4:40 pm, Moty wrote: > Hi, > > I'm trying to setup puppetmasterd with passenger and after >

[Puppet Users] Re: Dependencies on defines

2009-06-16 Thread Brad
On Jun 16, 1:28 am, Peter Meier wrote: > > Is it possible to require a user define? Something like: > > > define a { > >      type { "$name": > >      } > >     type { "xyy": > >     } > > } > > > type { "foo": > >      require => A["bar"], > > } > > this works. > Good to know thanks. Internally

[Puppet Users] Re: puppet+augeas inittab

2009-06-16 Thread Rob McBroom
On 2009-Jun-15, at 6:49 PM, David Lutterkort wrote: > Just as a headsup: the next version of Augeas (the one after 0.5.1) > will > have a slightly different tree structure for inittab; we'll use the id > field from inittab as the name of the subtree for that line; I think that will make a lot

[Puppet Users] Passenger

2009-06-16 Thread Moty
Hi, I'm trying to setup puppetmasterd with passenger and after implementing the document about this configuration I keep getting the following messages: On the server: /var/log/apache2/error.log: Premature end of script headers: RPC2 *** Exception NoMethodError in Passenger::Rack::Application

[Puppet Users] Re: keeping some code out of the repo

2009-06-16 Thread Nicolas Szalay
Le mardi 16 juin 2009 à 11:07 +0200, Dan Bode a écrit : > thanks David, > > setting custom values in the database and retrieving them seems like a > resonable solution for managing values outside of the code repo. I > still need to read more about this. > > Ok, it took me a second to understand

[Puppet Users] Re: keeping some code out of the repo

2009-06-16 Thread Dan Bode
thanks David, setting custom values in the database and retrieving them seems like a resonable solution for managing values outside of the code repo. I still need to read more about this. Ok, it took me a second to understand how, but this is quite useful and could easily meet my requirements. I

[Puppet Users] Re: Dependencies on defines

2009-06-16 Thread Peter Meier
> Is it possible to require a user define? Something like: > > define a { > type { "$name": > } > type { "xyy": > } > } > > type { "foo": > require => A["bar"], > } this works. cheers pate --~--~-~--~~~---~--~~ You received this message b