Sha256: be5e15ffba55bbc2cf6dea7fdd41ae0a9f598dc6b3a6f9f5cbb8d14f39ee06c7
Contents?: true
Size: 672 Bytes
Versions: 7
Compression:
Stored size: 672 Bytes
Contents
require "vagrant/util/shell_quote" module VagrantPlugins module GuestFreeBSD module Cap class InsertPublicKey def self.insert_public_key(machine, contents) contents = Vagrant::Util::ShellQuote.escape(contents, "'") contents = contents.gsub("\n", "\\n") machine.communicate.tap do |comm| comm.execute("mkdir -p ~/.ssh", shell: "sh") comm.execute("chmod 0700 ~/.ssh", shell: "sh") comm.execute("printf '#{contents}' >> ~/.ssh/authorized_keys", shell: "sh") comm.execute("chmod 0600 ~/.ssh/authorized_keys", shell: "sh") end end end end end end
Version data entries
7 entries across 4 versions & 3 rubygems