Merge "Install yum plugin priorities only on centos7 and fedora"

This commit is contained in:
Zuul 2021-08-27 02:06:08 +00:00 committed by Gerrit Code Review
commit 357c0cd0b7
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@
set -e
set -o xtrace
if [[ "centos7 fedora" =~ "$DISTRO_NAME" ]]; then
if [[ "$DISTRO_NAME" == "centos7" || "$DISTRO_NAME" == "fedora" ]]; then
install-packages -m overcloud-base yum_plugin_priorities_package
fi