[Puppet Users] Re: Installing Puppet/Facter without sudo/root access

2012-02-19 Thread Jeff Sussna
I installed RVM, then used that to install Ruby. Installed openssl from RVM in the process. However, when I try to install facter or puppet I get "Could not load openssl; could not install". Sequence of events looked like: rvm pkg install rvm pkg install openssl rvm install 1.8.7 --with-openssl-

Re: [Puppet Users] Austin Puppet User's meetup

2012-02-19 Thread Dan Bode
It looks like everything is sorted out for an Austin Puppet User's meetup. Huge thanks to HomeAway for providing the space at their fantastic downtown office. *Location* HomeAway 1011 W 5th Street (5th and Lamar) Suite 300 *Time* 7-9 Feb 29th 7-9pm I plan to talk a little bit about our plans for

Re: [Puppet Users] Puppet syntax check for Komodo Edit

2012-02-19 Thread Henrik Lindberg
On 2012-19-02 16:24, Alexander Fortin wrote: On 2/18/12 9:01 PM, Mister IT Guru wrote: Hi All, Please forgive me for jumping on this thread, but I'm a bit shocked - Syntax highlighting for puppet? Sorry for being slow on this one, I have been cracking my eyes using nano, and basic text editors

Re: [Puppet Users] Issues with Puppet 2.7.10: recommendation to stop using it

2012-02-19 Thread Michael Stahnke
> On Feb 19, 2012, at 6:48 PM, Walter Heck wrote: > >> Already reverted back to 2.7.9 indeed, but thanks for publically >> acknowledging it. Honesty matters in such cases so people can stop >> wasting time :) >> >> Should 2.7.10 be removed from http://downloads.puppetlabs.com/puppet/ as >> well? >

Re: [Puppet Users] Issues with Puppet 2.7.10: recommendation to stop using it

2012-02-19 Thread Dan White
+1 on that Remove the troublesome version to prevent more folks from using it and having problems. On Feb 19, 2012, at 6:48 PM, Walter Heck wrote: > Already reverted back to 2.7.9 indeed, but thanks for publically > acknowledging it. Honesty matters in such cases so people can stop > wasting tim

Re: [Puppet Users] Issues with Puppet 2.7.10: recommendation to stop using it

2012-02-19 Thread Walter Heck
Already reverted back to 2.7.9 indeed, but thanks for publically acknowledging it. Honesty matters in such cases so people can stop wasting time :) Should 2.7.10 be removed from http://downloads.puppetlabs.com/puppet/ as well? cheers, Walter On Mon, Feb 20, 2012 at 06:15, Michael Stahnke wrote

Re: [Puppet Users] roolback to previouse configuration

2012-02-19 Thread Brian Troutwine
On Sun, Feb 19, 2012 at 5:07 PM, ruslan usifov wrote: > Hello > > Does anybody share how to roll-back configuration if puppet definition on > host is change. For example Let's assume we have host on which initial was > web server and bunch of users. All this resources we configured throw > puppet.

Re: [Puppet Users] puppet-module on Debian

2012-02-19 Thread Brian Troutwine
On Sun, Feb 19, 2012 at 1:30 PM, Peter Berghold wrote: > "The nice thing about standards is that there are so many to choose from." > -- Andrew S Tannenbaum > > Debian does wonky things when you install a gem from "gem install."  Usually > this isn't a problem unless there are executables to consi

[Puppet Users] Issues with Puppet 2.7.10: recommendation to stop using it

2012-02-19 Thread Michael Stahnke
We are continuing to see several issues introduced Puppet 2.7.10. We are recommending that users discontinue its usage. This could mean using 2.7.9 or waiting patiently until we can get 2.7.11 out the door. These are the most significant tickets around the 2.7.10 regressions. http://projects.p

[Puppet Users] roolback to previouse configuration

2012-02-19 Thread ruslan usifov
Hello Does anybody share how to roll-back configuration if puppet definition on host is change. For example Let's assume we have host on which initial was web server and bunch of users. All this resources we configured throw puppet. node { } At some point we decide to remove u

Re: [Puppet Users] overriding parts of a collection of defined resources

2012-02-19 Thread Nan Liu
On Sat, Feb 18, 2012 at 9:43 PM, David wrote: > basefiles::conf { '/etc/passwd:' mode => 0644 } > ... > basefiles::conf { '/var/lib/otherfile:' mode => 0400 } > > and that's all groovy. The manifest looks concise and readable. > > But here's where I stare at a tree and get lost in the forrest

Re: [Puppet Users] Re: overriding parts of a collection of defined resources

2012-02-19 Thread Aaron Grewell
Resource defaults may help you. If you create a default file resource : File{ owner => root, group => root, mode => 644, } The file resources in the class will assume these defaults unless their own definition specifies otherwise. For large numbers of resources of the same type there is als

Re: [Puppet Users] fully qualified variables and nodes.pp

2012-02-19 Thread Nan Liu
On Sun, Feb 19, 2012 at 3:42 AM, Eslam Mamdouh wrote: > hi folks, > As a response to " Dynamic lookup of $var at is deprecated. Support will > be removed in Puppet 2.8. Use a fully-qualified variable name (e.g., > $classname::variable) or parameterized classes." warning > > i'm trying to apply f

Re: [Puppet Users] Display puppet managed resources in motd?

2012-02-19 Thread Nan Liu
On Sat, Feb 18, 2012 at 7:27 PM, Ryan Bowlby wrote: > Hi All, > > I'd like to display which resources are managed by Puppet in a given > host's motd file. Does anyone know the best way to accomplish this? > > As we transition to puppet it would be helpful to know what resources > are currently bei

[Puppet Users] puppet-module on Debian

2012-02-19 Thread Peter Berghold
"The nice thing about standards is that there are so many to choose from." -- Andrew S Tannenbaum Debian does wonky things when you install a gem from "gem install." Usually this isn't a problem unless there are executables to consider. I am running into that very thing with the "puppet-module" s

Re: [Puppet Users] Puppet syntax check for Komodo Edit

2012-02-19 Thread Alexander Fortin
On 2/18/12 9:01 PM, Mister IT Guru wrote: > Hi All, > > Please forgive me for jumping on this thread, but I'm a bit shocked - > Syntax highlighting for puppet? Sorry for being slow on this one, I have > been cracking my eyes using nano, and basic text editors - It never > crossed my mind to use an

[Puppet Users] Re: overriding parts of a collection of defined resources

2012-02-19 Thread Marc DiBlasi
I have a couple pointers that may help you. - The default user and group is root. - You can set type defaults like this: File { user => "root", group => "root"} and if you put this in a class, it only applies to the class. If you put it in site.pp, it applies globally. - You can define multiple re

[Puppet Users] fully qualified variables and nodes.pp

2012-02-19 Thread Eslam Mamdouh
hi folks, As a response to " Dynamic lookup of $var at is deprecated. Support will be removed in Puppet 2.8. Use a fully-qualified variable name (e.g., $classname::variable) or parameterized classes." warning i'm trying to apply fully-qualified variable name solution following this Doc http://do