Update CHANGELOG
This commit is contained in:
parent
bb808635f4
commit
0dfc6455ae
|
@ -13,6 +13,8 @@ IMPROVEMENTS:
|
|||
- `vagrant destroy` returns exit status 1 if any of the confirmations
|
||||
are declined. [GH-923]
|
||||
- Forwarded ports can specify a host IP and guest IP to bind to. [GH-1121]
|
||||
- You can now set the "ip" of a private network that uses DHCP. This will
|
||||
change the subnet and such that the DHCP server uses.
|
||||
|
||||
BUG FIXES:
|
||||
|
||||
|
|
|
@ -220,7 +220,7 @@ module VagrantPlugins
|
|||
options[:type] = options[:type].to_sym
|
||||
|
||||
# Default IP is in the 20-bit private network block for DHCP based networks
|
||||
options[:ip] = "172.28.128.1" if options[:type] == :dhcp && options[:ip].nil?
|
||||
options[:ip] = "172.28.128.1" if options[:type] == :dhcp && !options[:ip]
|
||||
|
||||
# Calculate our network address for the given IP/netmask
|
||||
netaddr = network_address(options[:ip], options[:netmask])
|
||||
|
|
Loading…
Reference in New Issue