Merge pull request #750 from jsoriano/master
NIC type can be defined for host-only adapters
This commit is contained in:
commit
e210c9b947
|
@ -24,6 +24,7 @@
|
|||
- Fix edge case where an exception could be raised in networking code. [GH-742]
|
||||
- Add missing translation for the "guru meditation" state. [GH-745]
|
||||
- Check that VirtualBox exists before certain commands. [GH-746]
|
||||
- NIC type can be defined for host-only network adapters.
|
||||
|
||||
## 0.9.7 (February 9, 2012)
|
||||
|
||||
|
|
|
@ -252,7 +252,8 @@ module Vagrant
|
|||
:adapter => config[:adapter],
|
||||
:type => :hostonly,
|
||||
:hostonly => interface[:name],
|
||||
:mac_address => config[:mac]
|
||||
:mac_address => config[:mac],
|
||||
:nic_type => config[:nic_type]
|
||||
}
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue