vagrant-hosts 1.1.2 → 1.1.3
Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG
CHANGED
@@ -64,9 +64,9 @@ class VagrantHosts::Provisioner::Linux
|
|
64
64
|
m_hostname = m.config.vm.hostname
|
65
65
|
|
66
66
|
m_networks.each do |(net_type, opts)|
|
67
|
-
next unless
|
67
|
+
next unless net_type == :private_network
|
68
68
|
addr = opts[:ip]
|
69
|
-
hosts << [addr, [
|
69
|
+
hosts << [addr, [m.name, m_hostname]]
|
70
70
|
end
|
71
71
|
end
|
72
72
|
|