Sha256: fde94e22de60b25e173641d56793ac0e082633ebcf217074975db4eb65ac5874

Contents?: true

Size: 724 Bytes

Versions: 22

Compression:

Stored size: 724 Bytes

Contents

module VagrantPlugins
  module GuestNetBSD
    module Cap
      class ShellExpandGuestPath
        def self.shell_expand_guest_path(machine, path)
          real_path = nil
          machine.communicate.execute("printf #{path}") do |type, data|
            if type == :stdout
              real_path ||= ""
              real_path += data
            end
          end

          if !real_path
            # If no real guest path was detected, this is really strange
            # and we raise an exception because this is a bug.
            raise ShellExpandFailed
          end

          # Chomp the string so that any trailing newlines are killed
          return real_path.chomp
        end
      end
    end
  end
end

Version data entries

22 entries across 19 versions & 5 rubygems

Version Path
vagrant-unbundled-1.9.7.1 plugins/guests/netbsd/cap/shell_expand_guest_path.rb
vagrant-aws-mkubenka-0.7.2.pre.14 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/netbsd/cap/shell_expand_guest_path.rb
vagrant-aws-mkubenka-0.7.2.pre.11 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/netbsd/cap/shell_expand_guest_path.rb
vagrant-aws-mkubenka-0.7.2.pre.10 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/netbsd/cap/shell_expand_guest_path.rb
vagrant-aws-mkubenka-0.7.2.pre.9 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/netbsd/cap/shell_expand_guest_path.rb
vagrant-unbundled-1.9.5.1 plugins/guests/netbsd/cap/shell_expand_guest_path.rb
vagrant-unbundled-1.9.1.1 plugins/guests/netbsd/cap/shell_expand_guest_path.rb
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/guests/netbsd/cap/shell_expand_guest_path.rb
vagrant-compose-yaml-0.1.2 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/guests/netbsd/cap/shell_expand_guest_path.rb
vagrant-compose-yaml-0.1.1 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/guests/netbsd/cap/shell_expand_guest_path.rb
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/guests/netbsd/cap/shell_expand_guest_path.rb
vagrant-unbundled-1.8.5.2 plugins/guests/netbsd/cap/shell_expand_guest_path.rb
vagrant-unbundled-1.8.5.1 plugins/guests/netbsd/cap/shell_expand_guest_path.rb
vagrant-unbundled-1.8.4.2 plugins/guests/netbsd/cap/shell_expand_guest_path.rb
vagrant-unbundled-1.8.4.1 plugins/guests/netbsd/cap/shell_expand_guest_path.rb
vagrant-unbundled-1.8.1.2 plugins/guests/netbsd/cap/shell_expand_guest_path.rb
vagrant-unbundled-1.8.1.1 plugins/guests/netbsd/cap/shell_expand_guest_path.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-b421af58e8b3/plugins/guests/netbsd/cap/shell_expand_guest_path.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-1cf2a8db4ccb/plugins/guests/netbsd/cap/shell_expand_guest_path.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-309e896975d1/plugins/guests/netbsd/cap/shell_expand_guest_path.rb