Sha256: a43742f15d0f9fbb2bb97356ef40957c25fc2a8563afec8492465305cd4924e6
Contents?: true
Size: 622 Bytes
Versions: 36
Compression:
Stored size: 622 Bytes
Contents
require "vagrant/util/shell_quote" module VagrantPlugins module GuestHaiku module Cap class RemovePublicKey def self.remove_public_key(machine, contents) contents = contents.chomp contents = Vagrant::Util::ShellQuote.escape(contents, "'") machine.communicate.tap do |comm| if comm.test("test -f $(finddir B_USER_SETTINGS_DIRECTORY)/ssh/authorized_keys") comm.execute( "sed -i '/^.*#{contents}.*$/d' $(finddir B_USER_SETTINGS_DIRECTORY)/ssh/authorized_keys") end end end end end end end
Version data entries
36 entries across 32 versions & 5 rubygems