Re: [Puppet Users] Re: Fabric vs ControlTier

2010-04-17 Thread R.I.Pienaar
hello, - "Michael DeHaan" wrote: > > I actually tried Capistrano sometimes ago, didn't quite like it due > > to extensive Ruby use (which admittedly I don't have much expired > > with). MCollective looks interesting, any how it compares to Func/Puppet? > > It introduces a message bus and

[Puppet Users] behavioural testing of puppet manifests with cucumber-puppet

2010-04-17 Thread Nikolay Sturm
Hi, I'd like to announce a little tool I have written, called cucumber- puppet. It supports writing behavioural tests for your puppet manifest, using cucumber. This allows for BDD-style manifest development and fearless refactorings. http://blog.nistu.de/cucumber_puppet_0_0_3_released.html Let m

Re: [Puppet Users] behavioural testing of puppet manifests with cucumber-puppet

2010-04-17 Thread Jeff McCune
On Sat, Apr 17, 2010 at 5:23 PM, Nikolay Sturm wrote: > Hi, > > I'd like to announce a little tool I have written, called cucumber- > puppet. It supports writing behavioural tests for your puppet > manifest, using cucumber. This allows for BDD-style manifest > development and fearless refactorings

Re: [Puppet Users] How to bring about serialization in puppet ?

2010-04-17 Thread Douglas Garstang
On Thu, Apr 15, 2010 at 8:44 AM, Jim Bala wrote: > On Apr 15, 2010, at 1:30 AM, Mayank wrote: > >> Hi, >>    I'm trying to manage some hosts using a single puppetmaster. I >> don't know why but puppet on clients seems to be executing the recipes >> hosted on puppetmaster in a random order which is

Re: [Puppet Users] behavioural testing of puppet manifests with cucumber-puppet

2010-04-17 Thread James Turnbull
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Nikolay Sturm wrote: > Hi, > > I'd like to announce a little tool I have written, called cucumber- > puppet. It supports writing behavioural tests for your puppet > manifest, using cucumber. This allows for BDD-style manifest > development and fearles

Re: [Puppet Users] How to bring about serialization in puppet ?

2010-04-17 Thread Daniel Pittman
Douglas Garstang writes: > On Thu, Apr 15, 2010 at 8:44 AM, Jim Bala wrote: >> On Apr 15, 2010, at 1:30 AM, Mayank wrote: >> >>> I'm trying to manage some hosts using a single puppetmaster. I don't know >>> why but puppet on clients seems to be executing the recipes hosted on >>> puppetmaster in

Re: [Puppet Users] How to bring about serialization in puppet ?

2010-04-17 Thread Nigel Kersten
On Sat, Apr 17, 2010 at 6:21 PM, Douglas Garstang wrote: > On Thu, Apr 15, 2010 at 8:44 AM, Jim Bala wrote: >> On Apr 15, 2010, at 1:30 AM, Mayank wrote: >> >>> Hi, >>>    I'm trying to manage some hosts using a single puppetmaster. I >>> don't know why but puppet on clients seems to be executing

[Puppet Users] Evaluate the value of a variable's value

2010-04-17 Thread Andrew Heagle
Hi, Is it possible for puppet to do the equivalent to this in bash: and...@comet:~$ a=1 and...@comet:~$ x="a" and...@comet:~$ eval echo \$$x 1 Or this perl: #!/usr/bin/perl $a=1; $x="a"; print $$x; (Output would be 1) Or would I need to write a function to do this? Thanks, Andrew -- You recei