summaryrefslogtreecommitdiff
path: root/lib/chef/dsl
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2019-05-23 13:08:33 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2019-05-23 13:11:06 -0700
commitace17c29b95c118b76f3d5440b614c0075992e0c (patch)
tree90bf327569cf15aa48f354623464e04f9f666815 /lib/chef/dsl
parentf5de2c58ea3705a20a6784251a3cd8a58618f24d (diff)
downloadchef-ace17c29b95c118b76f3d5440b614c0075992e0c.tar.gz
Better target mode shell_outlcg/better-target-mode-shell-out
- integrates target-mode fully with shell_out - removes the train_or_shellout mixin - apt_package is now fully supported in target-mode Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/dsl')
-rw-r--r--lib/chef/dsl/universal.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/chef/dsl/universal.rb b/lib/chef/dsl/universal.rb
index cdcd5ee286..c9afa38f98 100644
--- a/lib/chef/dsl/universal.rb
+++ b/lib/chef/dsl/universal.rb
@@ -25,7 +25,6 @@ require_relative "../mixin/powershell_exec"
require_relative "../mixin/powershell_out"
require_relative "../mixin/shell_out"
require_relative "../mixin/lazy_module_include"
-require_relative "../mixin/train_or_shell"
class Chef
module DSL
@@ -55,7 +54,6 @@ class Chef
include Chef::Mixin::PowershellExec
include Chef::Mixin::PowershellOut
include Chef::Mixin::ShellOut
- include Chef::Mixin::TrainOrShell
extend Chef::Mixin::LazyModuleInclude
end
end