Sha256: df7e6f9f8b8a87f2ab99d79baf1e8bae470b3da5f3fe9cf188dc983145fbc547
Contents?: true
Size: 453 Bytes
Versions: 23
Compression:
Stored size: 453 Bytes
Contents
# frozen_string_literal: true module VagrantPlugins module ProviderLibvirt module Cap class PublicAddress def self.public_address(machine) # This does not need to be a globally routable address, it # only needs to be accessible from the machine running # Vagrant. ssh_info = machine.ssh_info return nil if !ssh_info ssh_info[:host] end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems