diff options
author | Stuart Preston <stuart@chef.io> | 2018-03-03 16:49:20 -0800 |
---|---|---|
committer | Stuart Preston <stuart@chef.io> | 2018-03-03 16:49:20 -0800 |
commit | 611c9cbb8e9cba16e6e6d85edcadde7e78349ea0 (patch) | |
tree | 686936de28788dc048eaa1d7a72204b86fa2dbc7 /lib/chef/dsl | |
parent | 599f0dfec0c8c2b0d6d6eaf2a594abeebf40ff66 (diff) | |
download | chef-611c9cbb8e9cba16e6e6d85edcadde7e78349ea0.tar.gz |
Initial commit of new Chef PowerShell support
Signed-off-by: Stuart Preston <stuart@chef.io>
Diffstat (limited to 'lib/chef/dsl')
-rw-r--r-- | lib/chef/dsl/universal.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/chef/dsl/universal.rb b/lib/chef/dsl/universal.rb index 6e3d162b6f..f3b79b1d60 100644 --- a/lib/chef/dsl/universal.rb +++ b/lib/chef/dsl/universal.rb @@ -18,6 +18,7 @@ # require "chef/dsl/platform_introspection" +require "chef/mixin/powershell_exec" require "chef/mixin/powershell_out" require "chef/mixin/shell_out" @@ -43,6 +44,7 @@ class Chef # module Universal include Chef::DSL::PlatformIntrospection + include Chef::Mixin::PowershellExec include Chef::Mixin::PowershellOut include Chef::Mixin::ShellOut end |