summaryrefslogtreecommitdiff
path: root/lib/chef/resource/bff_package.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/resource/bff_package.rb')
-rw-r--r--lib/chef/resource/bff_package.rb30
1 files changed, 15 insertions, 15 deletions
diff --git a/lib/chef/resource/bff_package.rb b/lib/chef/resource/bff_package.rb
index ffe5dfac1b..b0ac15fed8 100644
--- a/lib/chef/resource/bff_package.rb
+++ b/lib/chef/resource/bff_package.rb
@@ -29,25 +29,25 @@ class Chef
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** resources."
introduced "12.0"
examples <<~DOC
- The **bff_package** resource is the default package provider on the AIX platform. The base **package** resource may be used, and then when the platform is AIX, #{ChefUtils::Dist::Infra::PRODUCT} will identify the correct package provider. The following examples show how to install part of the IBM XL C/C++ compiler.
+ The **bff_package** resource is the default package provider on the AIX platform. The base **package** resource may be used, and then when the platform is AIX, #{ChefUtils::Dist::Infra::PRODUCT} will identify the correct package provider. The following examples show how to install part of the IBM XL C/C++ compiler.
- **Installing using the base package resource**
+ **Installing using the base package resource**
- ```ruby
- package 'xlccmp.13.1.0' do
- source '/var/tmp/IBM_XL_C_13.1.0/usr/sys/inst.images/xlccmp.13.1.0'
- action :install
- end
- ```
+ ```ruby
+ package 'xlccmp.13.1.0' do
+ source '/var/tmp/IBM_XL_C_13.1.0/usr/sys/inst.images/xlccmp.13.1.0'
+ action :install
+ end
+ ```
- **Installing using the bff_package resource**
+ **Installing using the bff_package resource**
- ```ruby
- bff_package 'xlccmp.13.1.0' do
- source '/var/tmp/IBM_XL_C_13.1.0/usr/sys/inst.images/xlccmp.13.1.0'
- action :install
- end
- ```
+ ```ruby
+ bff_package 'xlccmp.13.1.0' do
+ source '/var/tmp/IBM_XL_C_13.1.0/usr/sys/inst.images/xlccmp.13.1.0'
+ action :install
+ end
+ ```
DOC
property :package_name, String,