Re: [Puppet Users] Hosting the user password only, not the .bashrc and -bash_profile files

2011-12-19 Thread Jeff McCune
On Mon, Dec 19, 2011 at 3:47 AM, Kenneth Holter wrote: > Hi all, > > > We have a number of server on which user "admin" exists, and that have > manual modifications to its bashrc and bash_profile files. What I'd > like to do is to host its user password from puppet master, but not > the bash-files

Re: [Puppet Users] Learn from MY Mistake: "false" != false

2011-12-19 Thread Henrik Lindberg
On 2011-20-12 24:57, James Turnbull wrote: Dan White wrote: Thanks for pointing that out for two reasons: (1) In the flow of the mailing list, simple little tricks like this can flash right past you if you are not reading carefully. (2) That thread gave me a better approach for what I am doing

Re: [Puppet Users] Learn from MY Mistake: "false" != false

2011-12-19 Thread James Turnbull
Dan White wrote: > Thanks for pointing that out for two reasons: > (1) In the flow of the mailing list, simple little tricks like this can flash > right past you if you are not reading carefully. > (2) That thread gave me a better approach for what I am doing in my class. > > Thanks again, everyo

[Puppet Users] When the lint accumulates...

2011-12-19 Thread James Turnbull
So some of you may be aware that Tim Sharpe from GitHub wrote a Puppet linting tool: $ gem install puppet-lint $ puppet-lint mymanifest.pp Source: https://github.com/rodjek/puppet-lint The linting tool checks Puppet code for "best practice" based on the Puppet Labs Style Guide: http://docs.pupp

Re: [Puppet Users] Re: Seperate CA's/Master behind load balancer

2011-12-19 Thread Brice Figureau
On 19/12/11 12:05, ollies...@googlemail.com wrote: > Thanks, > > On our older infrastrcture if we wanted to scale out we just copied > the ssldir and changed the filenames to the FQDN of the new master > server. certdnsnames would be wildcarded. The problem with this way of scaling is that you wo

Re: [Puppet Users] Learn from MY Mistake: "false" != false

2011-12-19 Thread Dan White
Thanks for pointing that out for two reasons: (1) In the flow of the mailing list, simple little tricks like this can flash right past you if you are not reading carefully. (2) That thread gave me a better approach for what I am doing in my class. Thanks again, everyone ! “Sometimes I think the

Re: [Puppet Users] duplicate definition error

2011-12-19 Thread Daniel Piddock
On 19/12/11 16:36, Chris Blumentritt wrote: > I have an error that I do not understand. I get a duplicate > definition and I am not sure why: http://pastie.org/3041278 > > if I change line 27 in that paste from class { 'passenger': } to > include passenger, there is not an error but the passenger

[Puppet Users] duplicate definition error

2011-12-19 Thread Chris Blumentritt
I have an error that I do not understand. I get a duplicate definition and I am not sure why: http://pastie.org/3041278 if I change line 27 in that paste from class { 'passenger': } to include passenger, there is not an error but the passenger class (it is a module) is not evaluated. Does having

Re: [Puppet Users] Learn from MY Mistake: "false" != false

2011-12-19 Thread Brice Figureau
On Mon, 2011-12-19 at 16:14 +, Dan White wrote: > Sharing my stoopid mistake in the hopes of saving someone else the same grief: > > I had a boolean toggle that was not performing as expected. > > Long story short: I had put quotes around the word "false" > > class { 'foo' : boolFlag => "fal

[Puppet Users] Learn from MY Mistake: "false" != false

2011-12-19 Thread Dan White
Sharing my stoopid mistake in the hopes of saving someone else the same grief: I had a boolean toggle that was not performing as expected. Long story short: I had put quotes around the word "false" class { 'foo' : boolFlag => "false" } was coming up TRUE To fix it, lose the quotes class { 'foo'

AW: [Puppet Users] Hosting the user password only, not the .bashrc and -bash_profile files

2011-12-19 Thread Bernd Adamowicz
Are you sure Puppet does change your bash-files? I got the same configuration a lot of times (Puppet 2.6.6 and 2.6.12) and did not encounter such behavior. Can you give more details? Bernd > -Ursprüngliche Nachricht- > Von: puppet-users@googlegroups.com [mailto:puppet- > us...@googlegro

[Puppet Users] Hosting the user password only, not the .bashrc and -bash_profile files

2011-12-19 Thread Kenneth Holter
Hi all, We have a number of server on which user "admin" exists, and that have manual modifications to its bashrc and bash_profile files. What I'd like to do is to host its user password from puppet master, but not the bash-files. I tries this (we're running Puppet Enterprise 2): -- code start

[Puppet Users] Re: How to change the time interval in dashboard for a node is considered unresponsive

2011-12-19 Thread Antonio Xanxess
Hi Martin, Thank you very much for the information, I had not noticed that there was this file, I have it as .example Thank you very much, Best regards! ;) On 16 dic, 15:19, Martin Willemsma wrote: > Hi Antonio, > > I believe this is the setting your looking for: > > In /config/settings.yml: >

[Puppet Users] Re: Seperate CA's/Master behind load balancer

2011-12-19 Thread ollies...@googlemail.com
Thanks, On our older infrastrcture if we wanted to scale out we just copied the ssldir and changed the filenames to the FQDN of the new master server. certdnsnames would be wildcarded. Now using 2.7.9 how do we do certificates so we could scale out horizontally from behind this loadbalancer ? Tr