Sha256: 8411ae05357674ff2e355b25ecd86326bf1d4a1c31469b99bf15de7b7d718ee9

Contents?: true

Size: 878 Bytes

Versions: 17

Compression:

Stored size: 878 Bytes

Contents

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

          if real_path
            # The last line is the path we care about
            real_path = real_path.split("\n").last.chomp
          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

17 entries across 17 versions & 3 rubygems

Version Path
vagrant-unbundled-1.9.7.1 plugins/guests/linux/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/linux/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/linux/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/linux/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/linux/cap/shell_expand_guest_path.rb
vagrant-unbundled-1.9.5.1 plugins/guests/linux/cap/shell_expand_guest_path.rb
vagrant-unbundled-1.9.1.1 plugins/guests/linux/cap/shell_expand_guest_path.rb
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/guests/linux/cap/shell_expand_guest_path.rb
vagrant-compose-yaml-0.1.2 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/guests/linux/cap/shell_expand_guest_path.rb
vagrant-compose-yaml-0.1.1 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/guests/linux/cap/shell_expand_guest_path.rb
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/guests/linux/cap/shell_expand_guest_path.rb
vagrant-unbundled-1.8.5.2 plugins/guests/linux/cap/shell_expand_guest_path.rb
vagrant-unbundled-1.8.5.1 plugins/guests/linux/cap/shell_expand_guest_path.rb
vagrant-unbundled-1.8.4.2 plugins/guests/linux/cap/shell_expand_guest_path.rb
vagrant-unbundled-1.8.4.1 plugins/guests/linux/cap/shell_expand_guest_path.rb
vagrant-unbundled-1.8.1.2 plugins/guests/linux/cap/shell_expand_guest_path.rb
vagrant-unbundled-1.8.1.1 plugins/guests/linux/cap/shell_expand_guest_path.rb