Issue #4685 has been updated by James Turnbull. Target version changed from 2.7.x to 2.7.0
---------------------------------------- Bug #4685: Classes, defines, and nodes allowed inside of non-evaluated conditionals https://projects.puppetlabs.com/issues/4685 Author: Paul Berry Status: Closed Priority: Normal Assignee: Jesse Wolfe Category: parser Target version: 2.7.0 Affected Puppet version: development Keywords: Branch: http://github.com/reductivelabs/puppet/tree/next The fix for issue #4522 introduced an error message if the user tries to declare a class, node, or define inside of a conditional construct. However, the error is only raised if the conditional code is actually evaluated. For example, this code generates an error (as expected): <pre> if true { class foo { } } </pre> but this code does not: <pre> if false { class bar { } } </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.
