summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-08-24 21:23:24 -0700
committerTim Smith <tsmith@chef.io>2018-08-24 21:23:24 -0700
commit0b5eb3a54e035e4bc0297e6379b323e7b64b27cf (patch)
tree4647ac6659d80c958395d5e3972b1507fc7970a4
parentfb4ceb1b44c2f2dfbece64f90278cf3a1ff35033 (diff)
downloadchef-0b5eb3a54e035e4bc0297e6379b323e7b64b27cf.tar.gz
Add missing description to windows_feature_powershellempty_descriptions
This was left empty by mistake. Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/resource/windows_feature_powershell.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/chef/resource/windows_feature_powershell.rb b/lib/chef/resource/windows_feature_powershell.rb
index 6141ff40ba..551fd9ad6f 100644
--- a/lib/chef/resource/windows_feature_powershell.rb
+++ b/lib/chef/resource/windows_feature_powershell.rb
@@ -43,8 +43,7 @@ class Chef
description: "Use a local repository for the feature install."
property :all, [TrueClass, FalseClass],
- description: "Install all sub features. This is equivalent to using the"\
- " -InstallAllSubFeatures switch with Add-WindowsFeature.",
+ description: "Install all sub features. This is equivalent to using the -InstallAllSubFeatures switch with Add-WindowsFeature.",
default: false
property :timeout, Integer,
@@ -52,7 +51,7 @@ class Chef
default: 600
property :management_tools, [TrueClass, FalseClass],
- description: "",
+ description: "Install all applicable management tools for the roles, role services, or features.",
default: false
# Converts strings of features into an Array. Array objects are lowercased unless we're on < 8/2k12+.