From b63db333157cabaa66951b7aa7d4253fbbd07aee Mon Sep 17 00:00:00 2001 From: Evgeni Golov Date: Mon, 13 Jan 2025 09:48:57 +0100 Subject: [PATCH] force Vagrant to use the "new" API URL It seems Vagrant has introduced a new API and their proprietary client does use that by default now, so they turned off the old one (or the redirect, I really have no idea what was there last week). Just setting the new URL (which I found out by using `vagrant --debug`) as the server URL works for now, so let's do that, and at least unblock nightlies. --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index 248f386de..b95d7ff0c 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -4,6 +4,7 @@ ENV['LANG'] = 'en_US.UTF-8' ENV['LC_ALL'] = 'en_US.UTF-8' +ENV['VAGRANT_SERVER_URL'] ||= 'https://vagrantcloud.com/api/v2/vagrant' VAGRANTFILE_DIR = File.dirname(__FILE__) require "#{VAGRANTFILE_DIR}/vagrant/lib/forklift"