2014-01-08 23:12:26 +00:00
|
|
|
require "vagrant/util/shell_quote"
|
|
|
|
|
2014-01-03 19:13:21 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module GuestLinux
|
|
|
|
module Cap
|
|
|
|
class InsertPublicKey
|
|
|
|
def self.insert_public_key(machine, contents)
|
2014-01-08 23:12:26 +00:00
|
|
|
contents = Vagrant::Util::ShellQuote.escape(contents, "'")
|
|
|
|
contents = contents.gsub("\n", "\\n")
|
|
|
|
|
2014-01-03 19:13:21 +00:00
|
|
|
machine.communicate.tap do |comm|
|
|
|
|
comm.execute("mkdir -p ~/.ssh")
|
|
|
|
comm.execute("chmod 0700 ~/.ssh")
|
2014-01-08 23:12:26 +00:00
|
|
|
comm.execute("printf '#{contents}' >> ~/.ssh/authorized_keys")
|
2014-01-03 19:13:21 +00:00
|
|
|
comm.execute("chmod 0600 ~/.ssh/authorized_keys")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|