[Puppet Users] Re: virtual resources: multiple exports and one collect

2009-01-26 Thread Marce
2009/1/24 udo waechter udo.waech...@uni-osnabrueck.de: Hello Marce, nice to see that someone else is also configuring sge with puppet. I do want to release our module to the public soon. Currently i can configure nearly all aspects of the gridengin. Unfortunately I need to do some cleanups

[Puppet Users] Using Puppet to deploy Ruby Enterprise Edition

2009-01-26 Thread dkam
Hi there, I was wondering if anyone had any experience getting puppet to install Ruby Enterprise Edition (http:// www.rubyenterpriseedition.com/) via puppet? It's installed via a script which is included in the tar package it comes in. The installer is quite straight forward, just a call to

[Puppet Users] Re: I'm starting to think that mongrel is not working

2009-01-26 Thread Bunkzillla
It just hangs... debug: /Settings[/etc/puppet/puppet.conf]/Settings[puppetd]/File[/var/ lib/puppet/state/state.yaml]: Changing mode debug: /Settings[/etc/puppet/puppet.conf]/Settings[puppetd]/File[/var/ lib/puppet/state/state.yaml]: 1 change(s) debug:

[Puppet Users] executing one liner with puppet

2009-01-26 Thread kevin
Hi, I need to bulk enable a series of apache modules on debian/ubuntu. on the server itself I would just use this invocation: ( works, not sure about the style points ) perl -e 'print join , map { /^(.*?)\.load/ } *.load' | a2enmod Now i just need to get puppet to do this for me, so i

[Puppet Users] Re: executing one liner with puppet

2009-01-26 Thread elijah wright
You could emulate a2enmod's behavior (hey, it basically just makes a symlink in the proper place...) with a list of resources and then just restart apache. ;-) --elijah On Mon, Jan 26, 2009 at 12:59 PM, kevin lazy...@gmail.com wrote: Hi, I need to bulk enable a series of apache modules on

[Puppet Users] Re: executing one liner with puppet

2009-01-26 Thread Robin Lee Powell
On Mon, Jan 26, 2009 at 09:59:18AM -0800, kevin wrote: Hi, I need to bulk enable a series of apache modules on debian/ubuntu. on the server itself I would just use this invocation: ( works, not sure about the style points ) perl -e 'print join , map { /^(.*?)\.load/ } *.load' |

[Puppet Users] 0.24.5 - 0.24.7 function output strangeness

2009-01-26 Thread udo waechter
Hello all. Some days ago I have updated our puppetmaster to 0.24.7 (Debian, something between etch and lenny) I have a function: #substract array from array module Puppet::Parser::Functions newfunction(:array_substract, :type = :rvalue) do |args| args[0] - args[1] end end

[Puppet Users] Re: 0.24.5 - 0.24.7 function output strangeness

2009-01-26 Thread udo waechter
Hello again. I just saw http://projects.reductivelabs.com/issues/1824 Obviously this is already recognized as an issue. Bye, udo. On 26.01.2009, at 20:19, udo waechter wrote: Hello all. Some days ago I have updated our puppetmaster to 0.24.7 (Debian, something between etch and lenny) I

[Puppet Users] Re: I'm starting to think that mongrel is not working

2009-01-26 Thread Andrew Shafer
I get that it just hangs, that is the puppetd making the request to the puppemasterd. Then you also had a Pound log that looks like the request was received there and but Pound was stuck waiting for mongrel on 127.0.0.1:18140. Without more data, I think you are right that the problem is mongrel

[Puppet Users] Chef?

2009-01-26 Thread Eno
Any puppet users seen this? http://blog.opscode.com/2009/01/announcing-chef.htm --~--~-~--~~~---~--~~ 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] Re: Chef?

2009-01-26 Thread dysinger
I am. On Jan 26, 12:22 pm, Nigel Kersten nig...@google.com wrote: On Mon, Jan 26, 2009 at 2:19 PM, Eno symb...@gmail.com wrote: Any puppet users seen this? http://blog.opscode.com/2009/01/announcing-chef.htm Yep. http://madstop.com/2009/01/16/opscode-announces-chef-a-puppet-competi...

[Puppet Users] A Survey about Puppet and Reductive Labs

2009-01-26 Thread Luke Kanies
Hi all, I'd appreciate your help improving our understanding of what the community is most looking for from Puppet, how Reductive Labs manages it, and how best to provide services around the project. Toward this end, we've created a short survey (it should take you less than ten minutes):

[Puppet Users] Re: Chef?

2009-01-26 Thread michael
Nigel Kersten writes: http://madstop.com/2009/01/16/opscode-announces-chef-a-puppet-competitor/ Luke pretty much summarized my feelings about the situation in his post there. It's an interesting set of design decisions, from the very quick read I've had of the documentation; the DSL choice

[Puppet Users] Re: virtual resources: multiple exports and one collect

2009-01-26 Thread Luke Kanies
On Jan 23, 2009, at 4:20 AM, Marce wrote: 2008/10/6 udo waechter udo.waech...@uni-osnabrueck.de: Ah, I see an error in my reasoning here: On 06.10.2008, at 20:36, udo waechter wrote: What comes to my mind now, is that I can do a hack and replace:

[Puppet Users] Re: Chef?

2009-01-26 Thread Larry Ludwig
I read the reason that Chef does not have dependency management because it makes the code hard to read is just plain silly. The way I ALWAYS code my Puppet recipes is in the order of dependency. What's so hard about that? My question about Chef is how can it handle multiple dependencies?

[Puppet Users] Re: Chef?

2009-01-26 Thread dysinger
Sorry that last post was worded wrong. I meant I am a Chef user / part-time (small-time) dev. You are welcome to join us on IRC @ #chef to ask questions. There is also a chef mailing list. http://wiki.opscode.com/display/chef/Mailing+Lists Chef has similarities because we all used to use

[Puppet Users] Re: I'm starting to think that mongrel is not working

2009-01-26 Thread bunkytom
No I mean when I try to do the puppetd -vdt --server localhost --masterport 18140 it just hangs. I've tried doing the gems install mongrel again. The puppetmasterd is starting, is there anyway of getting more debug information other than the puppetmasterd -vd ?That's not showing anything

[Puppet Users] Re: I'm starting to think that mongrel is not working

2009-01-26 Thread Bunkzillla
I started from scratch scratch... I'm getting further. I'll post more tomorrow. On Jan 26, 8:57 pm, bunkytom bunky...@gmail.com wrote: No I mean when I try to do the puppetd -vdt --server localhost --masterport 18140 it just hangs. I've tried doing the gems install mongrel again.   The