diff options
author | mwrock <matt@mattwrock.com> | 2020-11-30 13:40:36 -0800 |
---|---|---|
committer | mwrock <matt@mattwrock.com> | 2020-11-30 13:40:36 -0800 |
commit | 6408c925c03bb44ea3ae2194c064815177497d2e (patch) | |
tree | c3f043432e755fe29a66b2ea2f140556c8859d7d /lib/chef/mixin | |
parent | 3d7728a6ae3f7baed8c3d6bd4f1612607f6bce74 (diff) | |
download | chef-6408c925c03bb44ea3ae2194c064815177497d2e.tar.gz |
replace usages of Cmdlet class with powershell_exec
Signed-off-by: mwrock <matt@mattwrock.com>
Diffstat (limited to 'lib/chef/mixin')
-rw-r--r-- | lib/chef/mixin/powershell_exec.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/chef/mixin/powershell_exec.rb b/lib/chef/mixin/powershell_exec.rb index 03b058edcf..bbf8ae1a69 100644 --- a/lib/chef/mixin/powershell_exec.rb +++ b/lib/chef/mixin/powershell_exec.rb @@ -23,10 +23,12 @@ require_relative "../pwsh" # powershell_exec is initialized with a string that should be set to the script # to run and also takes an optional interpreter argument which must be either # :powershell (Windows PowerShell which is the default) or :pwsh (PowerShell -# Core). It will return a Chef::PowerShell object that provides 4 methods: +# Core). It will return a Chef::PowerShell object that provides 5 methods: # # .result - returns a hash representing the results returned by executing the # PowerShell script block +# .verbose - this is an array of string containing any messages written to the +# PowerShell verbose stream during execution # .errors - this is an array of string containing any messages written to the # PowerShell error stream during execution # .error? - returns true if there were error messages written to the PowerShell |