vaguerent/plugins/guests/openwrt/cap/insert_public_key.rb

24 lines
569 B
Ruby

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
require "vagrant/util/shell_quote"
module VagrantPlugins
module GuestOpenWrt
module Cap
class InsertPublicKey
def self.insert_public_key(machine, contents)
contents = contents.chomp
contents = Vagrant::Util::ShellQuote.escape(contents, "'")
machine.communicate.tap do |comm|
comm.execute <<~EOH
printf '#{contents}\\n' >> /etc/dropbear/authorized_keys
EOH
end
end
end
end
end
end