From b4fed7a1c40b69d7342d81e65be49b2531f42d76 Mon Sep 17 00:00:00 2001 From: Jiri Podivin Date: Thu, 15 Sep 2022 12:05:51 +0200 Subject: [PATCH] Updating development vagrant file to centos8 stream Centos 8 is no longer actively maintained, furthermore some of the repos have changed their URLs so they are now unreachable. Moving project to stream is the easiest way forward. Signed-off-by: Jiri Podivin Change-Id: Ic70f0cf692f5efaf4129ee1f16726a7803d2cd73 --- Vagrantfile.centos | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrantfile.centos b/Vagrantfile.centos index fc0c6603..5eab1e0e 100644 --- a/Vagrantfile.centos +++ b/Vagrantfile.centos @@ -1,6 +1,6 @@ Vagrant.configure("2") do |config| - config.vm.box = "centos/8" - config.vm.box_version = "1905.1" + config.vm.box = "centos/stream8" + config.vm.box_version = "20210210.0" config.vm.provider "virtualbox" do |vb| vb.memory = "2048" end