From 2c568a75f27e59a8bfccf933807f9676c999606f Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 13 Dec 2013 22:32:01 -0800 Subject: [PATCH] commands/ssh: use proper variable --- plugins/commands/ssh/command.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/commands/ssh/command.rb b/plugins/commands/ssh/command.rb index e393f6898..2b3a0b04a 100644 --- a/plugins/commands/ssh/command.rb +++ b/plugins/commands/ssh/command.rb @@ -55,7 +55,7 @@ module VagrantPlugins return exit_status else @logger.debug("Invoking `ssh` action on machine") - vm.action(:ssh, :ssh_opts => opts) + vm.action(:ssh, :ssh_opts => ssh_opts) # We should never reach this point, since the point of `ssh` # is to exec into the proper SSH shell, but we'll just return