summaryrefslogtreecommitdiff
path: root/lib/leap_cli/path.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/leap_cli/path.rb')
-rw-r--r--lib/leap_cli/path.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/leap_cli/path.rb b/lib/leap_cli/path.rb
index 43bb3e0..62ea013 100644
--- a/lib/leap_cli/path.rb
+++ b/lib/leap_cli/path.rb
@@ -99,8 +99,11 @@ module LeapCli; module Path
end
end
- def self.vagrant_ssh_key_file
+ def self.vagrant_ssh_priv_key_file
File.join(LEAP_CLI_BASE_DIR, 'vendor', 'vagrant_ssh_keys', 'vagrant.key')
end
+ def self.vagrant_ssh_pub_key_file
+ File.join(LEAP_CLI_BASE_DIR, 'vendor', 'vagrant_ssh_keys', 'vagrant.pub')
+ end
end; end