diff options
author | Tim Smith <tsmith@chef.io> | 2018-03-06 19:23:47 -0800 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-03-06 19:23:47 -0800 |
commit | ca6b0f702d8eb21a8a06ce16662f46c8737b3ad7 (patch) | |
tree | c44a2df97734509aa534a598ff506ff0b5667c64 /lib/chef/resource | |
parent | 4994aa6b92c20fa59a872365755b54dad6054e33 (diff) | |
download | chef-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')
-rw-r--r-- | lib/chef/resource/bff_package.rb | 4 |
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"\ |