From 485c27e18680f5eaeefe5de7f7916ba23f66c8f0 Mon Sep 17 00:00:00 2001 From: Adam Kunk Date: Tue, 28 Jun 2016 15:33:26 -0400 Subject: [PATCH] updates to fix install script for RHEL fixing install script for rhel7 fixing install script for rhel7 Signed-off-by: Adam Kunk updates to fix install script for RHEL fixing install script for rhel7 fixing install script for rhel7 Signed-off-by: Adam Kunk --- hack/install.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hack/install.sh b/hack/install.sh index 14f41dd602..5cce0198d4 100644 --- a/hack/install.sh +++ b/hack/install.sh @@ -251,6 +251,12 @@ do_install() { lsb_dist="$(echo "$lsb_dist" | tr '[:upper:]' '[:lower:]')" + # Special case redhatenterpriseserver + if [ "${lsb_dist}" = "redhatenterpriseserver" ]; then + # Set it to redhat, it will be changed to centos below anyways + lsb_dist='redhat' + fi + case "$lsb_dist" in ubuntu)