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 <jpodivin@redhat.com>
Change-Id: Ic70f0cf692f5efaf4129ee1f16726a7803d2cd73
This commit is contained in:
Jiri Podivin 2022-09-15 12:05:51 +02:00
parent 5076004733
commit b4fed7a1c4
1 changed files with 2 additions and 2 deletions

View File

@ -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