Sha256: b22c753dcb9156394fa4f481726e6b65801a58621901493b7e1be1a1761cb701

Contents?: true

Size: 449 Bytes

Versions: 62

Compression:

Stored size: 449 Bytes

Contents

module VagrantPlugins
  module GuestWindows
    module Cap
      module ChooseAddressableIPAddr
        def self.choose_addressable_ip_addr(machine, possible)
          machine.communicate.tap do |comm|
            possible.each do |ip|
              command = "ping -n 1 -w 1 #{ip}"
              if comm.test(command)
                return ip
              end
            end
          end

          nil
        end
      end
    end
  end
end

Version data entries

62 entries across 55 versions & 7 rubygems

Version Path
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-309e896975d1/plugins/guests/windows/cap/choose_addressable_ip_addr.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-272fb27e0536/plugins/guests/windows/cap/choose_addressable_ip_addr.rb