Merge pull request #750 from jsoriano/master

NIC type can be defined for host-only adapters
This commit is contained in:
Mitchell Hashimoto 2012-02-20 08:58:43 -08:00
commit e210c9b947
2 changed files with 3 additions and 1 deletions

View File

@ -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)

View File

@ -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