Issue #3665 has been updated by Luke Kanies. Status changed from Accepted to Ready for Testing Branch changed from http://github.com/masterzen/puppet/tree/tickets/testing/3665 to luke/tickets/testing/3665
Okay, I pushed Brice's branch -- which does seem to fix all of the problems -- plus a commit that removes 'nodescope' as discussed (I'll close the separate ticket). ---------------------------------------- Bug #3665: Node scope inheritance is broken in testing http://projects.puppetlabs.com/issues/3665 Author: Brice Figureau Status: Ready for Testing Priority: Normal Assigned to: Luke Kanies Category: compiler Target version: Rowlf Affected version: testing Keywords: Branch: luke/tickets/testing/3665 The following manifest (which works in 0.25.x) doesn't work anymore in testing <pre> $topvar = 12 notice("topvar in main is : ${topvar}") node macbook { notice("topvar in node is : ${topvar}") } </pre> On testing it produces (notice the undef in node): <pre> notice: Scope(Class[main]): topvar in main is : 12 notice: Scope(Node[macbook]): topvar in node is : undef </pre> On 0.25.x it produces: <pre> notice: Scope(Class[main]): topvar in main is : 12 notice: Scope(Node[macbook]): topvar in node is : 12 </pre> -- You have received this notification because you have either subscribed to it, or are involved in it. To change your notification preferences, please click here: http://projects.puppetlabs.com/my/account -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/puppet-bugs?hl=en.
