[Puppet Users] class include order

2010-11-29 Thread walexey
puppet 2.6.3 How i can make this work? class a { if ($b::x) { notify yeah! } } class b { $x=true } node base { include a } node test inherits base { include b } currently i got Could not look up qualified variable 'b::x'; class b has not been evaluated -- You received this message

Re: [Puppet Users] class include order

2010-11-29 Thread Peter Meier
currently i got Could not look up qualified variable 'b::x'; class b has not been evaluated Node Inheritance isn't working the way you are assuming it should work [1]. I would generally get rid off of any node inheritance. ~pete [1]