23 lines
678 B
Ruby
23 lines
678 B
Ruby
|
require "vagrant/util/shell_quote"
|
||
|
|
||
|
module VagrantPlugins
|
||
|
module GuestSolaris
|
||
|
module Cap
|
||
|
class InsertPublicKey
|
||
|
def self.insert_public_key(machine, contents)
|
||
|
# TODO: Code is identical to linux/cap/insert_public_key
|
||
|
contents = contents.chomp
|
||
|
contents = Vagrant::Util::ShellQuote.escape(contents, "'")
|
||
|
|
||
|
machine.communicate.tap do |comm|
|
||
|
comm.execute("mkdir -p ~/.ssh")
|
||
|
comm.execute("chmod 0700 ~/.ssh")
|
||
|
comm.execute("printf '#{contents}\\n' >> ~/.ssh/authorized_keys")
|
||
|
comm.execute("chmod 0600 ~/.ssh/authorized_keys")
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|