summaryrefslogtreecommitdiff
path: root/lib/chef/resource/bff_package.rb
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-03-06 19:23:47 -0800
committerTim Smith <tsmith@chef.io>2018-03-06 19:23:47 -0800
commitca6b0f702d8eb21a8a06ce16662f46c8737b3ad7 (patch)
treec44a2df97734509aa534a598ff506ff0b5667c64 /lib/chef/resource/bff_package.rb
parent4994aa6b92c20fa59a872365755b54dad6054e33 (diff)
downloadchef-ca6b0f702d8eb21a8a06ce16662f46c8737b3ad7.tar.gz
Rename bff provider to match its resource
We have the bff resource and the aix provider. Rename the provider to to bff as well. Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/resource/bff_package.rb')
-rw-r--r--lib/chef/resource/bff_package.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/chef/resource/bff_package.rb b/lib/chef/resource/bff_package.rb
index f67d6d253e..62838cfd60 100644
--- a/lib/chef/resource/bff_package.rb
+++ b/lib/chef/resource/bff_package.rb
@@ -17,11 +17,13 @@
#
require "chef/resource/package"
-require "chef/provider/package/aix"
class Chef
class Resource
class BffPackage < Chef::Resource::Package
+ resource_name :bff_package
+ provides :bff_package
+
description "Use the bff_package resource to manage packages for the AIX platform"\
" using the installp utility. When a package is installed from a local"\
" file, it must be added to the node using the remote_file or cookbook_file"\