From b5214b29fc31728cb4c60e312adb94fd296f8ab3 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Tue, 8 Jun 2021 10:57:14 +0200 Subject: [PATCH] tests: use CentOS 8.4 image CentOS 8.4 vagrant image is available at https://cloud.centos.org let's use it. Signed-off-by: Guillaume Abrioux (cherry picked from commit c2aaa96fc7d9a9b47774b51c533906004cd768bd) --- tests/scripts/vagrant_up.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/vagrant_up.sh b/tests/scripts/vagrant_up.sh index 819ff46c8..e90b7d543 100644 --- a/tests/scripts/vagrant_up.sh +++ b/tests/scripts/vagrant_up.sh @@ -1,7 +1,7 @@ #!/bin/bash vagrant box remove --force --provider libvirt --box-version 0 centos/8 || true -vagrant box add --provider libvirt --name centos/8 https://cloud.centos.org/centos/8/vagrant/x86_64/images/CentOS-8-Vagrant-8.3.2011-20201204.2.x86_64.vagrant-libvirt.box || true +vagrant box add --provider libvirt --name centos/8 https://cloud.centos.org/centos/8/vagrant/x86_64/images/CentOS-8-Vagrant-8.4.2105-20210603.0.x86_64.vagrant-libvirt.box || true retries=0 until [ $retries -ge 5 ]