summaryrefslogtreecommitdiff
path: root/chef/lib/chef/provider/user.rb
diff options
context:
space:
mode:
Diffstat (limited to 'chef/lib/chef/provider/user.rb')
-rw-r--r--chef/lib/chef/provider/user.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/chef/lib/chef/provider/user.rb b/chef/lib/chef/provider/user.rb
index 3f76f8ad4b..5bff74d49b 100644
--- a/chef/lib/chef/provider/user.rb
+++ b/chef/lib/chef/provider/user.rb
@@ -29,8 +29,8 @@ class Chef
attr_accessor :user_exists, :locked
- 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)
@user_exists = true
@locked = nil
end