core: avoid crash case with nil [GH-6730]

This commit is contained in:
Mitchell Hashimoto 2015-12-24 12:38:14 -08:00
parent cf4b03d701
commit 45212a9b67
2 changed files with 3 additions and 1 deletions

View File

@ -6,6 +6,8 @@ BUG FIXES:
- core: Fix exception on installing VirtualBox [GH-6713]
- core: Do not convert standalone drive letters such as "D:" to
UNC paths [GH-6598]
- core: Fix a crash in parsing the config in some cases with network
configurations [GH-6730]
- commands/up: Smarter logic about what provider to install, avoiding
situations where VirtualBox was installed over the correct provider [GH-6731]
- guests/debian: Fix Docker install [GH-6722]

View File

@ -698,7 +698,7 @@ module VagrantPlugins
end
end
if options[:ip] && options[:ip].end_with?(".1") && options[:type].to_sym != :dhcp
if options[:ip] && options[:ip].end_with?(".1") && (options[:type] || "").to_sym != :dhcp
machine.ui.warn(I18n.t(
"vagrant.config.vm.network_ip_ends_in_one"))
end