File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,12 @@ Vagrant.configure("2") do |config|
2121 # BOX_VERSION is deprecated. Use "BOX=<BOX>@<BOX_VERSION>".
2222 config . vm . box_version = ENV [ "BOX_VERSION" ] || ( ENV [ "BOX" ] . split ( "@" ) [ 1 ] if ENV [ "BOX" ] )
2323
24+ # Set box_url for archive boxes
25+ # Workaround for https://github.com/containerd/containerd/issues/12124
26+ if config . vm . box . include? ( "fedora/39-cloud-base" )
27+ config . vm . box_url = "https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/39/Cloud/x86_64/images/Fedora-Cloud-Base-Vagrant-39-1.5.x86_64.vagrant-libvirt.box"
28+ end
29+
2430 memory = 4096
2531 cpus = 2
2632 disk_size = 60
You can’t perform that action at this time.
0 commit comments