summaryrefslogtreecommitdiff
path: root/lib/chef/resource/bff_package.rb
diff options
context:
space:
mode:
authorkaustubh-d <kaustubh@clogeny.com>2013-08-01 02:16:39 -0500
committeradamedx <adamed@opscode.com>2013-08-19 22:56:46 -0700
commit29302b97fe14bbf0b2a601965906248a8eaab948 (patch)
tree6af69d65d9071925cf7de203944da1e3e6da568b /lib/chef/resource/bff_package.rb
parentc76a65fd0b1dc47558b087c49d909e8397384267 (diff)
downloadchef-29302b97fe14bbf0b2a601965906248a8eaab948.tar.gz
fix bff_package resource constructor.
Diffstat (limited to 'lib/chef/resource/bff_package.rb')
-rw-r--r--lib/chef/resource/bff_package.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/resource/bff_package.rb b/lib/chef/resource/bff_package.rb
index 2928dce88b..f65aae8449 100644
--- a/lib/chef/resource/bff_package.rb
+++ b/lib/chef/resource/bff_package.rb
@@ -23,8 +23,8 @@ class Chef
class Resource
class BffPackage < Chef::Resource::Package
- def initialize(name, collection=nil, node=nil)
- super(name, collection, node)
+ def initialize(name, run_context=nil)
+ super
@resource_name = :bff_package
@provider = Chef::Provider::Package::Aix
end