Issue #8032 has been updated by Jeff McCune. Status changed from Unreviewed to In Topic Branch Pending Merge Assignee set to Dan Bode
# Topic Branch # A fix for this has been pushed into my topic branch ticket/master/8032_create_resources_containment Pull request: [https://github.com/puppetlabs/puppet/pull/15](https://github.com/puppetlabs/puppet/pull/15) Spec tests verified and passed. ---------------------------------------- Bug #8032: create_resources should contain native types in the local scope https://projects.puppetlabs.com/issues/8032 Author: Jeff McCune Status: In Topic Branch Pending Merge Priority: Normal Assignee: Dan Bode Category: functions Target version: Affected Puppet version: 2.7.0rc3 Keywords: create_resources native type graph containment contain Branch: # Overview # As currently implemented, if create_resources is used with a native type, e.g. group, the resources are not contained within the class container. For example: <pre> class groups { $groups = { 'one' => { 'ensure' => 'present' } } create_resources('group', $groups) } notify { 'alpha': } -> class { 'groups': } -> notify { 'omega': } </pre> The graph produced by this manifest should have Group['one'] fully contained from a relationship perspective within the alpha and omega notifications. However, the group resource floats off in the graph and relationships do not hold. -- 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.
