Ensure epel7 is installed only on rhel7/centos7

Change-Id: I5812812f7d2cb5ba2e310e33d6e01cda8823c1c4
This commit is contained in:
Giulio Fidente 2014-10-02 12:14:25 +02:00
parent 42e79c4a6e
commit ee001cf4bd
1 changed files with 5 additions and 1 deletions

View File

@ -2,4 +2,8 @@
set -eu
set -o pipefail
yum install -y http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-2.noarch.rpm
if [[ "rhel7 centos7" =~ "$DISTRO_NAME" ]]; then
yum install -y http://download.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-2.noarch.rpm
elif [[ "rhel" =~ "$DISTRO_NAME" ]]; then
yum install -y http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
fi