2014-09-18 01:32:49 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
set -o pipefail
|
|
|
|
|
2014-10-02 10:14:25 +00:00
|
|
|
if [[ "rhel7 centos7" =~ "$DISTRO_NAME" ]]; then
|
2014-10-09 18:00:12 +00:00
|
|
|
rpm -q epel-release || yum install -y http://download.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-2.noarch.rpm
|
2014-10-02 10:14:25 +00:00
|
|
|
elif [[ "rhel" =~ "$DISTRO_NAME" ]]; then
|
2014-10-09 18:00:12 +00:00
|
|
|
rpm -q epel-release || yum install -y http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
|
2014-10-02 10:14:25 +00:00
|
|
|
fi
|