mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-05-28 04:36:05 -04:00
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:
parent
bf3d3b0245
commit
a20ee32c9a
1 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue