Disable EPEL on CentOS 8 by default

It's currently broken and not really needed anyway.

Depends-On: https://review.opendev.org/#/c/738435/
Change-Id: I767f6fc4e4177af5f7f93a0d4d3f8dcc578da2c4
This commit is contained in:
Dmitry Tantsur 2020-06-29 14:57:22 +02:00
parent 2063b5814d
commit 2a19fa368c
1 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1,4 @@
if [[ "$DISTRO_NAME" == "centos" ]] && [[ "$DIB_RELEASE" == 8 ]]; then
# Disable EPEL unless enabled explicitly
export DIB_EPEL_DISABLED=${DIB_EPEL_DISABLED:-1}
fi