summaryrefslogtreecommitdiff
path: root/lib/chef/resource/windows_feature.rb
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-11-06 11:56:09 -0800
committerTim Smith <tsmith@chef.io>2018-11-06 11:56:09 -0800
commite34c188b4e64a359094c0a43fb3cdc1c5c134304 (patch)
tree9ccfaca67be80edeb737b43e2a92ffd16f91dd81 /lib/chef/resource/windows_feature.rb
parentaf1d8fa79d2a2233134a4fc4049845fee87f9530 (diff)
downloadchef-e34c188b4e64a359094c0a43fb3cdc1c5c134304.tar.gz
Add additional descriptions to resource and update otherswording
Update descriptions to match the edits that were done to the docs site. Also fix windows_share to lazily eval the arrays, which is a bugfix + a docs fix the way we generate docs right now. Signed-off-by: Tim Smith <tsmith@chef.io>gi Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/resource/windows_feature.rb')
-rw-r--r--lib/chef/resource/windows_feature.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/chef/resource/windows_feature.rb b/lib/chef/resource/windows_feature.rb
index c80b875fbd..c6bcaac2dc 100644
--- a/lib/chef/resource/windows_feature.rb
+++ b/lib/chef/resource/windows_feature.rb
@@ -24,9 +24,7 @@ class Chef
resource_name :windows_feature
provides(:windows_feature) { true }
- description "Use the windows_feature resource to add, remove or delete Windows features and roles. This resource calls"\
- " the 'windows_feature_dism' or 'windows_feature_powershell' resources depending on the specified installation"\
- " method and defaults to dism, which is available on both Workstation and Server editions of Windows."
+ description "Use the windows_feature resource to add, remove or entirely delete Windows features and roles. This resource calls the 'windows_feature_dism' or 'windows_feature_powershell' resources depending on the specified installation method and defaults to dism, which is available on both Workstation and Server editions of Windows."
introduced "14.0"
property :feature_name, [Array, String],
@@ -36,7 +34,7 @@ class Chef
name_property: true
property :source, String,
- description: "Use a local repository for the feature install."
+ description: "Specify a local repository for the feature install."
property :all, [TrueClass, FalseClass],
description: "Install all sub features.",