2016-06-05 17:36:58 +00:00
|
|
|
require "tempfile"
|
2014-02-04 04:09:29 +00:00
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module GuestFreeBSD
|
|
|
|
module Cap
|
|
|
|
class InsertPublicKey
|
|
|
|
def self.insert_public_key(machine, contents)
|
2016-06-05 17:36:58 +00:00
|
|
|
comm = machine.communicate
|
|
|
|
contents = contents.chomp
|
2014-02-04 04:09:29 +00:00
|
|
|
|
2016-06-05 17:36:58 +00:00
|
|
|
remote_path = "/tmp/vagrant-authorized-keys-#{Time.now.to_i}"
|
|
|
|
Tempfile.open("vagrant-freebsd-insert-public-key") do |f|
|
|
|
|
f.binmode
|
|
|
|
f.write(contents)
|
|
|
|
f.fsync
|
|
|
|
f.close
|
|
|
|
comm.upload(f.path, remote_path)
|
2014-02-04 04:09:29 +00:00
|
|
|
end
|
2016-06-05 17:36:58 +00:00
|
|
|
|
|
|
|
command = <<-EOH.gsub(/^ {12}/, '')
|
|
|
|
mkdir -p ~/.ssh
|
|
|
|
chmod 0700 ~/.ssh
|
|
|
|
cat '#{remote_path}' >> ~/.ssh/authorized_keys
|
|
|
|
chmod 0600 ~/.ssh/authorized_keys
|
|
|
|
|
|
|
|
# Remove the temporary file
|
|
|
|
rm -f '#{remote_path}'
|
|
|
|
EOH
|
|
|
|
comm.execute(command, { shell: "sh" })
|
2014-02-04 04:09:29 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|