fix virtualbox network rake tests
This commit is contained in:
parent
d80968433c
commit
837dff00b8
|
@ -248,10 +248,10 @@ module VagrantPlugins
|
|||
def hostonly_config(options)
|
||||
options = {
|
||||
auto_config: true,
|
||||
dhcp_server: true,
|
||||
mac: nil,
|
||||
nic_type: nil,
|
||||
type: :static,
|
||||
dhcp_server: true,
|
||||
}.merge(options)
|
||||
|
||||
# Make sure the type is a symbol
|
||||
|
@ -321,6 +321,7 @@ module VagrantPlugins
|
|||
return {
|
||||
adapter_ip: options[:adapter_ip],
|
||||
auto_config: options[:auto_config],
|
||||
dhcp_server: options[:dhcp_server],
|
||||
ip: options[:ip],
|
||||
mac: options[:mac],
|
||||
name: options[:name],
|
||||
|
|
|
@ -123,6 +123,7 @@ describe VagrantPlugins::ProviderVirtualBox::Action::Network do
|
|||
dhcp_ip: "172.28.128.2",
|
||||
dhcp_lower: "172.28.128.3",
|
||||
dhcp_upper: "172.28.128.254",
|
||||
dhcp_server: true,
|
||||
adapter: 2
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in New Issue