From f8f1bc9a304ba14203f2091524cb7ee0fe5b4b35 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Tue, 21 May 2024 10:04:51 -0700 Subject: [PATCH] Vagrantfile.fedora: bump to F40 Get the image from Fedora directly. Also, remove the comment about cgroup v2 as it is also tested on Ubuntu 22.04 now. Signed-off-by: Kir Kolyshkin --- Vagrantfile.fedora | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Vagrantfile.fedora b/Vagrantfile.fedora index f8931804df2..4863808ee51 100644 --- a/Vagrantfile.fedora +++ b/Vagrantfile.fedora @@ -2,8 +2,9 @@ # vi: set ft=ruby : Vagrant.configure("2") do |config| -# Fedora box is used for testing cgroup v2 support - config.vm.box = "fedora/39-cloud-base" + config.vm.box = "fedora-40" + # For URL, check https://www.fedoraproject.org/cloud/download + config.vm.box_url = "https://download.fedoraproject.org/pub/fedora/linux/releases/40/Cloud/x86_64/images/Fedora-Cloud-Base-Vagrant-libvirt.x86_64-40-1.14.vagrant.libvirt.box" config.vm.provider :virtualbox do |v| v.memory = 2048 v.cpus = 2