Re: [Puppet Users] Weird paramterized issue

2011-06-06 Thread Ronen Narkis
Amazing! Iv somehow missed that :) There was another include that missed my eyes (never include within an init.pp above a class) Thank you! Ronen On Sat, Jun 4, 2011 at 11:16 PM, Ken Barber wrote: > Ronen, > > Have you tried grepping through all your content to make sure your not > using 'in

Re: [Puppet Users] Weird paramterized issue

2011-06-06 Thread Ken Barber
Ronen, Have you tried grepping through all your content to make sure your not using 'include "nodejs"' elsewhere - or some other usage of it where you are not specifying user. You might be seeing non-deterministic class loading order which may be why your symptoms are intermittent. ken. On Sat,

[Puppet Users] Weird paramterized issue

2011-06-04 Thread Ronen Narkis
Im using a parameterized class in my site.pp: class development($user) { class{"basenode": user => $user} class{"nodejs": user => $user} include "coffeescript" include "ruby" } This class defines nodejs class that epects a user as input: class nodejs($user) { class {"nodejs::npm": use