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
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,
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