summaryrefslogtreecommitdiff
path: root/lib/chef/provider/windows_task.rb
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-08-03 19:28:59 -0700
committerTim Smith <tsmith84@gmail.com>2020-08-03 19:28:59 -0700
commitc965d25dd22f2b13f51be79fd0c8c3767b4b4da6 (patch)
tree6167237f4e5ec4c84758f7fefd1286cf02795d79 /lib/chef/provider/windows_task.rb
parentb390d87f3710afb466ce7a80510af0bebb64052f (diff)
downloadchef-shell_out.tar.gz
Remove unnecessary Mixin::ShellOut in providersshell_out
No need for this in the providers. Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/provider/windows_task.rb')
-rw-r--r--lib/chef/provider/windows_task.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/chef/provider/windows_task.rb b/lib/chef/provider/windows_task.rb
index 63a7b331e1..c402818321 100644
--- a/lib/chef/provider/windows_task.rb
+++ b/lib/chef/provider/windows_task.rb
@@ -16,7 +16,6 @@
# limitations under the License.
#
-require_relative "../mixin/shell_out"
require "rexml/document" unless defined?(REXML::Document)
require "iso8601" if ChefUtils.windows?
require_relative "../provider"
@@ -26,8 +25,6 @@ require "win32/taskscheduler" if ChefUtils.windows?
class Chef
class Provider
class WindowsTask < Chef::Provider
- include Chef::Mixin::ShellOut
-
if ChefUtils.windows?
include Win32