diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2015-05-29 10:17:46 -0700 |
---|---|---|
committer | Kartik Null Cating-Subramanian <ksubramanian@chef.io> | 2015-05-29 16:55:50 -0400 |
commit | 8e17c3a65a1fde28778bc3148227e3d11bb91304 (patch) | |
tree | 6039b4f5b32276888086012378a079ee46977332 /lib/chef/resource.rb | |
parent | 0fc76389279df0b28be5d0c3ed95c4c378e79d8d (diff) | |
download | chef-8e17c3a65a1fde28778bc3148227e3d11bb91304.tar.gz |
include powershell_out in DSL places
Diffstat (limited to 'lib/chef/resource.rb')
-rw-r--r-- | lib/chef/resource.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/chef/resource.rb b/lib/chef/resource.rb index 757cd442af..18759b29f7 100644 --- a/lib/chef/resource.rb +++ b/lib/chef/resource.rb @@ -38,6 +38,7 @@ require 'chef/resource_resolver' require 'chef/mixin/deprecation' require 'chef/mixin/provides' require 'chef/mixin/shell_out' +require 'chef/mixin/powershell_out' class Chef class Resource @@ -54,6 +55,7 @@ class Chef # This lets user code do things like `not_if { shell_out!("command") }` include Chef::Mixin::ShellOut + include Chef::Mixin::PowershellOut # # The node the current Chef run is using. |