File: 0013-Fix-the-default-vagrant-URL-for-pulling-boxes.patch

package info (click to toggle)
vagrant 2.3.7%2Bgit20230731.5fc64cde%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 17,616 kB
  • sloc: ruby: 111,820; sh: 462; makefile: 123; ansic: 34; lisp: 1
file content (23 lines) | stat: -rw-r--r-- 929 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From: Jarek Prokop <jprokop@redhat.com>
Date: Thu, 16 Jan 2025 13:36:05 +0100
Subject: Fix the default vagrant URL for pulling boxes.

Origin: Fedora, https://src.fedoraproject.org/rpms/vagrant/blob/28f6e257f9df947e327d693daab09c42aefb0249/f/vagrant-2.3.4-Fix-the-default-vagrant-URL-for-pulling-boxes.patch
Bug-Debian: http://bugs.debian.org/1092987
---
 lib/vagrant/shared_helpers.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/vagrant/shared_helpers.rb b/lib/vagrant/shared_helpers.rb
index 21e3d7f..fb440e5 100644
--- a/lib/vagrant/shared_helpers.rb
+++ b/lib/vagrant/shared_helpers.rb
@@ -10,7 +10,7 @@ module Vagrant
   # of Vagrant that may require remote access.
   #
   # @return [String]
-  DEFAULT_SERVER_URL = "https://vagrantcloud.com".freeze
+  DEFAULT_SERVER_URL = "https://vagrantcloud.com/api/v2/vagrant".freeze
 
   # Max number of seconds to wait for joining an active thread.
   #