diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2014-07-29 00:30:26 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2014-07-29 00:30:26 -0700 |
commit | 9e85bbdb9419e5b9946ab6d0d37817612e43cc4a (patch) | |
tree | b8d2049f768471e8cba29ab08c64c08a623bd5e0 /lib/chef/provider.rb | |
parent | 4edfb5be4391f1b6ad54e472b1721af00fbada5e (diff) | |
download | chef-9e85bbdb9419e5b9946ab6d0d37817612e43cc4a.tar.gz |
add shell_out to base provider code
Diffstat (limited to 'lib/chef/provider.rb')
-rw-r--r-- | lib/chef/provider.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/chef/provider.rb b/lib/chef/provider.rb index 90b6ead716..db7629dbcb 100644 --- a/lib/chef/provider.rb +++ b/lib/chef/provider.rb @@ -22,11 +22,13 @@ require 'chef/mixin/convert_to_class_name' require 'chef/dsl/recipe' require 'chef/mixin/enforce_ownership_and_permissions' require 'chef/mixin/why_run' +require 'chef/mixin/shell_out' class Chef class Provider include Chef::DSL::Recipe include Chef::Mixin::WhyRun + include Chef::Mixin::ShellOut attr_accessor :new_resource attr_accessor :current_resource |