From f1c1dfad2f5b5eb16cfd3ce77d43e93256cdcb94 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 7 Aug 2012 11:31:55 -0700 Subject: [PATCH] Some SSH command cleanup --- plugins/commands/ssh/command.rb | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/plugins/commands/ssh/command.rb b/plugins/commands/ssh/command.rb index 9adf92bef..e84d77a9d 100644 --- a/plugins/commands/ssh/command.rb +++ b/plugins/commands/ssh/command.rb @@ -50,6 +50,7 @@ module VagrantPlugins :extra_args => options[:ssh_args] } + @logger.debug("Invoking `ssh` action on machine") vm.action(:ssh, :ssh_opts => opts) end end @@ -80,11 +81,6 @@ module VagrantPlugins # Exit with the exit status we got from executing the command exit exit_status end - - def ssh_connect(vm, opts) - @logger.debug("`exec` into ssh prompt") - vm.ssh.exec(opts) - end end end end