prepare_nfs_settings: Use scoped hash override when reading static IPs.
This commit is contained in:
parent
514193090a
commit
60fd777806
|
@ -90,6 +90,8 @@ module VagrantPlugins
|
||||||
def read_static_machine_ips
|
def read_static_machine_ips
|
||||||
ips = []
|
ips = []
|
||||||
@machine.config.vm.networks.each do |type, options|
|
@machine.config.vm.networks.each do |type, options|
|
||||||
|
options = scoped_hash_override(options, :virtualbox)
|
||||||
|
|
||||||
if type == :private_network && options[:type] != :dhcp && options[:ip].is_a?(String)
|
if type == :private_network && options[:type] != :dhcp && options[:ip].is_a?(String)
|
||||||
ips << options[:ip]
|
ips << options[:ip]
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue