diff options
author | Thom May <thom@may.lt> | 2015-11-25 09:41:43 +0000 |
---|---|---|
committer | Thom May <thom@may.lt> | 2015-11-25 09:41:43 +0000 |
commit | 5fd2df311af0b5867c6c845321901f841fc1c7de (patch) | |
tree | 1dd68042e5f370b20d758627bc532a51e8f1a33f | |
parent | 26dbab99fd9aea988195f027975963db14a9de87 (diff) | |
parent | f8e55db82af844448f50611fa7fc8d770a634f17 (diff) | |
download | chef-5fd2df311af0b5867c6c845321901f841fc1c7de.tar.gz |
Merge pull request #4153 from matschaffer/patch-1
Require ShellOut before Knife::SSH definition
-rw-r--r-- | lib/chef/knife/ssh.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/knife/ssh.rb b/lib/chef/knife/ssh.rb index fcffb718f5..99ae2f426a 100644 --- a/lib/chef/knife/ssh.rb +++ b/lib/chef/knife/ssh.rb @@ -16,6 +16,7 @@ # limitations under the License. # +require 'chef/mixin/shell_out' require 'chef/knife' class Chef @@ -29,7 +30,6 @@ class Chef require 'readline' require 'chef/exceptions' require 'chef/search/query' - require 'chef/mixin/shell_out' require 'chef/mixin/command' require 'chef/util/path_helper' require 'mixlib/shellout' |