From d88e3dcff2bd3355da4178e1d717be69a8a2dd05 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 25 Nov 2013 18:46:54 -0800 Subject: [PATCH] kernel/v2: new style default box url --- plugins/kernel_v2/config/vm.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/kernel_v2/config/vm.rb b/plugins/kernel_v2/config/vm.rb index 40d579392..1bb9d9371 100644 --- a/plugins/kernel_v2/config/vm.rb +++ b/plugins/kernel_v2/config/vm.rb @@ -30,6 +30,7 @@ module VagrantPlugins @boot_timeout = UNSET_VALUE @box_download_client_cert = UNSET_VALUE @box_download_insecure = UNSET_VALUE + @box_url = UNSET_VALUE @graceful_halt_timeout = UNSET_VALUE @guest = UNSET_VALUE @hostname = UNSET_VALUE @@ -254,6 +255,7 @@ module VagrantPlugins @boot_timeout = 300 if @boot_timeout == UNSET_VALUE @box_download_client_cert = nil if @box_download_client_cert == UNSET_VALUE @box_download_insecure = false if @box_download_insecure == UNSET_VALUE + @box_url = nil if @box_url == UNSET_VALUE @graceful_halt_timeout = 300 if @graceful_halt_timeout == UNSET_VALUE @guest = nil if @guest == UNSET_VALUE @hostname = nil if @hostname == UNSET_VALUE