[Puppet Users] classes with parameters

2011-09-06 Thread David Kavanagh
I have a node def that refers to 2 classes like this; node default { class { [ eucalyptus, eucalyptus::nc ]: } } The 2nd requires the first class. Now, I've added parameters to the 2nd class and would like to set values here. What is the appropriate way to do that? I'm looking at the

Re: [Puppet Users] classes with parameters

2011-09-06 Thread Gabriel Filion
Hi, On 11-09-06 11:11 AM, David Kavanagh wrote: I have a node def that refers to 2 classes like this; node default { class { [ eucalyptus, eucalyptus::nc ]: } } The 2nd requires the first class. Now, I've added parameters to the 2nd class and would like to set values

Re: [Puppet Users] classes with parameters

2011-09-06 Thread Gabriel Filion
On 11-09-06 12:15 PM, David Kavanagh wrote: Thanks, It wasn't clicking that it was an array notation. hep, no problem ;) I thought it was a little bit weird too, to be changing from include classname to class { 'classname': ...}. (e.g. because of the 'class' reserved word, it now looks like