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

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] 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'