Sha256: 0267bf7e3cfb8197676a010e5cb6a4b1b857f333d5fed6938998c5abcc14c7fa

Contents?: true

Size: 391 Bytes

Versions: 36

Compression:

Stored size: 391 Bytes

Contents

require "socket"

module VagrantPlugins
  module HostDarwin
    module Cap
      class ConfiguredIPAddresses

        def self.configured_ip_addresses(env)
          Socket.getifaddrs.map do |interface|
            if interface.addr.ipv4? && !interface.addr.ipv4_loopback?
              interface.addr.ip_address
            end
          end.compact
        end
      end
    end
  end
end

Version data entries

36 entries across 32 versions & 5 rubygems

Version Path
vagrant-unbundled-2.2.0.0 plugins/hosts/darwin/cap/configured_ip_addresses.rb
vagrant-unbundled-2.1.4.0 plugins/hosts/darwin/cap/configured_ip_addresses.rb
vagrant-unbundled-2.1.2.0 plugins/hosts/darwin/cap/configured_ip_addresses.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/plugins/hosts/darwin/cap/configured_ip_addresses.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/plugins/hosts/darwin/cap/configured_ip_addresses.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/plugins/hosts/darwin/cap/configured_ip_addresses.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/plugins/hosts/darwin/cap/configured_ip_addresses.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/plugins/hosts/darwin/cap/configured_ip_addresses.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/plugins/hosts/darwin/cap/configured_ip_addresses.rb
vagrant-unbundled-2.1.1.0 plugins/hosts/darwin/cap/configured_ip_addresses.rb
vagrant-unbundled-2.0.4.0 plugins/hosts/darwin/cap/configured_ip_addresses.rb
vagrant-unbundled-2.0.3.0 plugins/hosts/darwin/cap/configured_ip_addresses.rb
vagrant-aws-detiber-0.7.2.pre.4 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/plugins/hosts/darwin/cap/configured_ip_addresses.rb
vagrant-aws-detiber-0.7.2.pre.3 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/plugins/hosts/darwin/cap/configured_ip_addresses.rb
vagrant-aws-detiber-0.7.2.pre.2 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/plugins/hosts/darwin/cap/configured_ip_addresses.rb
vagrant-unbundled-2.0.2.0 plugins/hosts/darwin/cap/configured_ip_addresses.rb