Hey,
after updating Vagrant (OS X) from 1.2.2 to 1.2.4 I'm not able to configure a private network using a dynamic IP-address provided by VirtualBox-DHCP-server:
config.vm.network :private_network, type: "dhcp"
But the network interface in basebox expects to be configured via DHCP. Is that bug known?
I researched on plugins/kernel_v2/config/vm.rb in the validate-method and theoretically it should work:
[...]
if type == :private_network
if options[:type] != :dhcp
errors << I18n.t("vagrant.config.vm.network_ip_required")
[...]
It seems the option "type" is not passed to validate() correctly.
Can you give me a hint how to get this working again, please?
With kind regards
Robert