Need to correctly configure the template's options.

pull the config through the bridged interface configuration routine

template debugging

add another test line

set the setting in the correct areas, yay dynamic method calls
This commit is contained in:
Justin Lynn 2012-04-05 09:48:41 -07:00
parent bf3d3b0245
commit a20ee32c9a
1 changed files with 3 additions and 2 deletions

View File

@ -389,13 +389,14 @@ module Vagrant
:type => :bridged,
:bridge => chosen_bridge,
:mac_address => config[:mac],
:nic_type => config[:nic_type],
:nic_type => config[:nic_type]
}
end
def bridged_network_config(config)
return {
:type => :dhcp
:type => :dhcp,
:use_dhcp_assigned_default_route => config[:use_dhcp_assigned_default_route]
}
end
end