From: elijah Date: Fri, 23 Nov 2012 18:39:10 +0000 (-0800) Subject: fix vagrant.key permission problem, i think. X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=ba80599d9230b63b71bfeca45fc89c7f69987723;p=leap%2Fleap_cli.git fix vagrant.key permission problem, i think. --- diff --git a/lib/leap_cli/commands/vagrant.rb b/lib/leap_cli/commands/vagrant.rb index 4a480ff..41dccc9 100644 --- a/lib/leap_cli/commands/vagrant.rb +++ b/lib/leap_cli/commands/vagrant.rb @@ -1,4 +1,5 @@ require 'ipaddr' +require 'fileutils' module LeapCli; module Commands @@ -29,9 +30,15 @@ module LeapCli; module Commands public def vagrant_ssh_key_file - file = File.expand_path('../../../vendor/vagrant_ssh_keys/vagrant.key', File.dirname(__FILE__)) - Util.assert_files_exist! file - return file + file_path = File.expand_path('../../../vendor/vagrant_ssh_keys/vagrant.key', File.dirname(__FILE__)) + Util.assert_files_exist! file_path + if File.new(file_path).stat.uid == Process.euid + # if the vagrant.key file is owned by ourselves, we need to make sure that it is not world readable + FileUtils.cp file_path, '/tmp/vagrant.key' + FileUtils.chmod 0600, '/tmp/vagrant.key' + file_path = '/tmp/vagrant.key' + end + return file_path end private