Sha256: 223b8ed7f8643a516eb91ce954399b787b42693c934056fd725d1f13fd0b2ea0

Contents?: true

Size: 756 Bytes

Versions: 46

Compression:

Stored size: 756 Bytes

Contents

require "vagrant/util/shell_quote"

module VagrantPlugins
  module GuestSmartos
    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|
            comm.execute <<-EOH.sub(/^ */, '')
              if test -f /usbkey/config.inc/authorized_keys ; then
                sed -i '' '/^.*#{contents}.*$/d' /usbkey/config.inc/authorized_keys
              fi
              if test -f ~/.ssh/authorized_keys ; then
                sed -i '' '/^.*#{contents}.*$/d' ~/.ssh/authorized_keys
              fi
            EOH
          end
        end
      end
    end
  end
end

Version data entries

46 entries across 42 versions & 5 rubygems

Version Path
vagrant-unbundled-2.3.6.0 plugins/guests/smartos/cap/remove_public_key.rb
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/plugins/guests/smartos/cap/remove_public_key.rb
vagrant-unbundled-2.3.3.0 plugins/guests/smartos/cap/remove_public_key.rb
vagrant-unbundled-2.3.2.0 plugins/guests/smartos/cap/remove_public_key.rb
vagrant-unbundled-2.2.19.0 plugins/guests/smartos/cap/remove_public_key.rb
vagrant-unbundled-2.2.18.0 plugins/guests/smartos/cap/remove_public_key.rb
vagrant-unbundled-2.2.16.0 plugins/guests/smartos/cap/remove_public_key.rb
vagrant-unbundled-2.2.14.0 plugins/guests/smartos/cap/remove_public_key.rb
vagrant-aws-mkubenka-0.7.2.pre.24 vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-22795b161bf6/plugins/guests/smartos/cap/remove_public_key.rb
vagrant-unbundled-2.2.10.0 plugins/guests/smartos/cap/remove_public_key.rb
vagrant-unbundled-2.2.9.0 plugins/guests/smartos/cap/remove_public_key.rb
vagrant-unbundled-2.2.8.0 plugins/guests/smartos/cap/remove_public_key.rb
vagrant-unbundled-2.2.7.0 plugins/guests/smartos/cap/remove_public_key.rb
vagrant-unbundled-2.2.6.2 plugins/guests/smartos/cap/remove_public_key.rb
vagrant-unbundled-2.2.6.1 plugins/guests/smartos/cap/remove_public_key.rb
vagrant-unbundled-2.2.6.0 plugins/guests/smartos/cap/remove_public_key.rb
vagrant-unbundled-2.2.5.0 plugins/guests/smartos/cap/remove_public_key.rb
vagrant-unbundled-2.2.4.0 plugins/guests/smartos/cap/remove_public_key.rb
vagrant-unbundled-2.2.3.0 plugins/guests/smartos/cap/remove_public_key.rb
vagrant-unbundled-2.2.2.0 plugins/guests/smartos/cap/remove_public_key.rb