diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2019-05-23 13:08:33 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2019-05-23 13:11:06 -0700 |
commit | ace17c29b95c118b76f3d5440b614c0075992e0c (patch) | |
tree | 90bf327569cf15aa48f354623464e04f9f666815 /lib/chef/dsl | |
parent | f5de2c58ea3705a20a6784251a3cd8a58618f24d (diff) | |
download | chef-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.rb | 2 |
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 |