summaryrefslogtreecommitdiff
path: root/lib/leap_cli/remote/tasks.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/remote/tasks.rb
parente1190e9127ffac98304e7ddb7730b092d2a0a00b (diff)
vagrant bugfix: upload the correct vagrant ssh key. closes #7436
Diffstat (limited to 'lib/leap_cli/remote/tasks.rb')
-rw-r--r--lib/leap_cli/remote/tasks.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/leap_cli/remote/tasks.rb b/lib/leap_cli/remote/tasks.rb
index a2d12b8..048238d 100644
--- a/lib/leap_cli/remote/tasks.rb
+++ b/lib/leap_cli/remote/tasks.rb
@@ -25,7 +25,7 @@ end
task :install_insecure_vagrant_key, :max_hosts => MAX_HOSTS do
leap.log :installing, "insecure vagrant key" do
leap.mkdirs '/root/.ssh'
- upload LeapCli::Path.vagrant_ssh_key_file, '/root/.ssh/authorized_keys2', :mode => '600'
+ upload LeapCli::Path.vagrant_ssh_pub_key_file, '/root/.ssh/authorized_keys2', :mode => '600'
end
end