lib/chef/provider/group.rb in chef-0.7.10 vs lib/chef/provider/group.rb in chef-0.7.12

- old
+ new

@@ -25,11 +25,11 @@ class Provider class Group < Chef::Provider include Chef::Mixin::Command attr_accessor :group_exists - def initialize(node, new_resource) - super(node, new_resource) + def initialize(node, new_resource, collection=nil, definitions=nil, cookbook_loader=nil) + super(node, new_resource, collection, definitions, cookbook_loader) @group_exists = true end def load_current_resource @current_resource = Chef::Resource::Group.new(@new_resource.name)