summaryrefslogtreecommitdiff
path: root/lib/leap_cli/util/remote_command.rb
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2015-09-09 18:19:54 -0700
committerelijah <elijah@riseup.net>2015-09-09 18:19:54 -0700
commitdfaa5f1d2d6af7784bc4c866874025bd299155f7 (patch)
treea19a93709e0bd4af1f113974e815e0685ac4bf22 /lib/leap_cli/util/remote_command.rb
parente1190e9127ffac98304e7ddb7730b092d2a0a00b (diff)
vagrant bugfix: upload the correct vagrant ssh key. closes #7436
Diffstat (limited to 'lib/leap_cli/util/remote_command.rb')
-rw-r--r--lib/leap_cli/util/remote_command.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/leap_cli/util/remote_command.rb b/lib/leap_cli/util/remote_command.rb
index 10a5ca8..70cd11a 100644
--- a/lib/leap_cli/util/remote_command.rb
+++ b/lib/leap_cli/util/remote_command.rb
@@ -142,7 +142,7 @@ module LeapCli; module Util; module RemoteCommand
def contingent_ssh_options_for_node(node)
opts = {}
if node.vagrant?
- opts[:keys] = [vagrant_ssh_key_file]
+ opts[:keys] = [Path::vagrant_ssh_priv_key_file]
opts[:keys_only] = true # only use the keys specified above, and ignore whatever keys the ssh-agent is aware of.
opts[:paranoid] = false # we skip host checking for vagrant nodes, because fingerprint is different for everyone.
if LeapCli::log_level <= 1