summaryrefslogtreecommitdiff
path: root/lib/chef/provider.rb
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2014-07-29 00:30:26 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2014-07-29 00:30:26 -0700
commit9e85bbdb9419e5b9946ab6d0d37817612e43cc4a (patch)
treeb8d2049f768471e8cba29ab08c64c08a623bd5e0 /lib/chef/provider.rb
parent4edfb5be4391f1b6ad54e472b1721af00fbada5e (diff)
downloadchef-9e85bbdb9419e5b9946ab6d0d37817612e43cc4a.tar.gz
add shell_out to base provider code
Diffstat (limited to 'lib/chef/provider.rb')
-rw-r--r--lib/chef/provider.rb2
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