22 lines
460 B
Ruby
22 lines
460 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
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
|