diff options
author | Tim Smith <tsmith@chef.io> | 2018-03-04 20:15:36 -0800 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-03-04 20:19:03 -0800 |
commit | a96e2311e2bfb59b750ac11cb290cd17d02fef71 (patch) | |
tree | b682d37033587c76ed645c829b3f6c861914cb1a /lib/chef/resource/windows_feature_powershell.rb | |
parent | e0a14935df0c0dd34fdaa8d3228d5d83e4a7cfbd (diff) | |
download | chef-misc_resource.tar.gz |
Updates from the reviewmisc_resource
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/resource/windows_feature_powershell.rb')
-rw-r--r-- | lib/chef/resource/windows_feature_powershell.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/resource/windows_feature_powershell.rb b/lib/chef/resource/windows_feature_powershell.rb index 65fa3cc40b..7e7fb6c160 100644 --- a/lib/chef/resource/windows_feature_powershell.rb +++ b/lib/chef/resource/windows_feature_powershell.rb @@ -39,7 +39,7 @@ class Chef property :source, String, description: "Use a local repository for the feature install." - property :all, [true, false], + property :all, [TrueClass, FalseClass], description: "Install all sub features. This is equivalent to using the"\ " -InstallAllSubFeatures switch with Add-WindowsFeature.", default: false @@ -48,7 +48,7 @@ class Chef description: "Specifies a timeout (in seconds) for feature install.", default: 600 - property :management_tools, [true, false], + property :management_tools, [TrueClass, FalseClass], description: "", default: false |