tests: Keep beakerlib repo on the VM for tests which need it

Related: rhbz#1769525
This commit is contained in:
Alexander Todorov 2019-11-06 15:12:13 +02:00 committed by Alexander Todorov
parent ed08a283c4
commit 46df9a5a99
1 changed files with 6 additions and 9 deletions

View File

@ -5,16 +5,13 @@ SRPM="$1"
if ! rpm -q beakerlib; then
if [ $(. /etc/os-release && echo $ID) = "rhel" ]; then
(cd /etc/yum.repos.d; curl -O -L http://download.devel.redhat.com/beakerrepos/beaker-client-RedHatEnterpriseLinux.repo)
# The beaker repository doesn't include repos for minor releases
VERSION=$(. /etc/os-release && echo ${VERSION_ID%.*})
yum install -y --releasever=$VERSION --setopt=sslverify=0 beakerlib
# prevent yum from trying to sync the cache again later (it fails without sslverify=0)
rm /etc/yum.repos.d/beaker-client-RedHatEnterpriseLinux.repo
else
yum install -y beakerlib
# disable sslverify b/c yum will fail to sync metadata otherwise
sed -i "s/\(gpgcheck=0\)/\1\nsslverify=0/" /etc/yum.repos.d/beaker-client-RedHatEnterpriseLinux.repo
# do not remove the repo file. We now have tests which use beakerlib
# inside their blueprints so this needs to stay on the VM
fi
yum install -y beakerlib
fi
if ! rpm -q git; then