From 6810cf9d4dd2d05dec4172669b2da04c6c3e912a Mon Sep 17 00:00:00 2001 From: Anoop C S Date: Tue, 12 Jan 2021 11:38:03 +0530 Subject: Update vagrant version to resolve dependency errors --- samba-integration-centos-ci-tests.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/samba-integration-centos-ci-tests.sh b/samba-integration-centos-ci-tests.sh index 185b05f..a9eb4d6 100755 --- a/samba-integration-centos-ci-tests.sh +++ b/samba-integration-centos-ci-tests.sh @@ -101,9 +101,10 @@ yum -y group install "Development Tools" # couple of times in a row to prevent it from failing. As a positive # side effect, it also avoids duplicate downloads of the RPM. # -if ! rpm -q vagrant-2.2.7 +VAGRANT_VERSION="2.2.14" +if ! rpm -q "vagrant-${VAGRANT_VERSION}" then - yum -y install https://releases.hashicorp.com/vagrant/2.2.7/vagrant_2.2.7_x86_64.rpm + yum -y install "https://releases.hashicorp.com/vagrant/${VAGRANT_VERSION}/vagrant_${VAGRANT_VERSION}_x86_64.rpm" fi vagrant plugin install vagrant-libvirt -- cgit