Added DEVICE option to RedHat host only networking template. [GH-382]
This allows the networking to work even when the VM has multiple adapters.
This commit is contained in:
parent
3582a8f2aa
commit
c9d03cf138
|
@ -1,6 +1,7 @@
|
||||||
## 0.7.6 (unreleased)
|
## 0.7.6 (unreleased)
|
||||||
|
|
||||||
|
- Added DEVICE option to the RedHat host only networking entry, which allows
|
||||||
|
host only networking to work even if the VM has multiple NICs. [GH-382]
|
||||||
|
|
||||||
## 0.7.5 (May 16, 2011)
|
## 0.7.5 (May 16, 2011)
|
||||||
|
|
||||||
|
|
|
@ -5,4 +5,5 @@ BOOTPROTO=static
|
||||||
DHCPCLASS=
|
DHCPCLASS=
|
||||||
IPADDR=<%= net_options[:ip] %>
|
IPADDR=<%= net_options[:ip] %>
|
||||||
NETMASK=<%= net_options[:netmask] %>
|
NETMASK=<%= net_options[:netmask] %>
|
||||||
|
DEVICE=eth<%= net_options[:adapter] %>
|
||||||
#VAGRANT-END
|
#VAGRANT-END
|
Loading…
Reference in New Issue