summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2019-11-15 15:15:13 -0800
committerTim Smith <tsmith84@gmail.com>2019-11-15 15:15:13 -0800
commit36ced2f214001d8b302dd555b7f29356db78174c (patch)
tree74f38a1951e70c176a7af7299eac9756bcc13c85
parent9bcf293b5fe03401914c78977c48ccfaaeaea017 (diff)
downloadchef-36ced2f214001d8b302dd555b7f29356db78174c.tar.gz
Description improvements
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/resource/windows_package.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/resource/windows_package.rb b/lib/chef/resource/windows_package.rb
index 784b68542e..3402cb0792 100644
--- a/lib/chef/resource/windows_package.rb
+++ b/lib/chef/resource/windows_package.rb
@@ -70,11 +70,11 @@ class Chef
property :checksum, String,
desired_state: false, coerce: (proc { |c| c.downcase }),
- description: "The SHA-256 checksum of the file. Use to prevent a file from being re-downloaded. When the local file matches the checksum, Chef Infra Client does not download it. Use when a URL is specified by the source property."
+ description: "The SHA-256 checksum of the file. Use to prevent a file from being re-downloaded. When the local file matches the checksum, #{Chef::Dist::PRODUCT} does not download it. Use when a URL is specified by the source property."
property :remote_file_attributes, Hash,
desired_state: false,
- description: "A package at a remote location define as a Hash of properties that modifies the properties of the remote_file resource."
+ description: "If the source package to install is at a remote location this property allows you to define a hash of properties and their value which will be used by the underlying remote_file resource, which fetches the source."
end
end
end