Merge "Use RDO official CloudSIG mirrors for C9S deployments"
This commit is contained in:
commit
c424a7a299
17
stack.sh
17
stack.sh
@ -311,7 +311,22 @@ function _install_rdo {
|
|||||||
sudo dnf -y install https://rdoproject.org/repos/openstack-${rdo_release}/rdo-release-${rdo_release}.el8.rpm
|
sudo dnf -y install https://rdoproject.org/repos/openstack-${rdo_release}/rdo-release-${rdo_release}.el8.rpm
|
||||||
fi
|
fi
|
||||||
elif [[ $DISTRO == "rhel9" ]]; then
|
elif [[ $DISTRO == "rhel9" ]]; then
|
||||||
sudo curl -L -o /etc/yum.repos.d/delorean-deps.repo http://trunk.rdoproject.org/centos9-master/delorean-deps.repo
|
install_package wget
|
||||||
|
# We need to download rdo-release package using wget as installing with dnf from repo.fedoraproject.org fails in
|
||||||
|
# FIPS enabled systems after https://bugzilla.redhat.com/show_bug.cgi?id=2157951
|
||||||
|
# Until we can pull rdo-release from a server which supports EMS, this workaround is doing wget, which does
|
||||||
|
# not relies on openssl but on gnutls, and then install it locally using rpm
|
||||||
|
TEMPRDODIR=$(mktemp -d)
|
||||||
|
if [[ "$TARGET_BRANCH" == "master" ]]; then
|
||||||
|
# rdo-release.el9.rpm points to latest RDO release, use that for master
|
||||||
|
wget -P $TEMPRDODIR https://rdoproject.org/repos/rdo-release.el9.rpm
|
||||||
|
else
|
||||||
|
# For stable branches use corresponding release rpm
|
||||||
|
rdo_release=$(echo $TARGET_BRANCH | sed "s|stable/||g")
|
||||||
|
wget -P $TEMPRDODIR https://rdoproject.org/repos/openstack-${rdo_release}/rdo-release-${rdo_release}.el9.rpm
|
||||||
|
fi
|
||||||
|
sudo rpm -ivh $TEMPRDODIR/rdo-release*rpm
|
||||||
|
rm -rf $TEMPRDODIR
|
||||||
fi
|
fi
|
||||||
sudo dnf -y update
|
sudo dnf -y update
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user