From 2578565d55c6ebee538b9d960da195f1dab0670d Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Thu, 11 Apr 2013 11:15:57 +1000 Subject: [PATCH] Add rhel6 as an allowed distro Add RHEL6 based distributions as a valid install target Change-Id: I89fb68d18a0d2079493be93b230162679123881d --- stack.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack.sh b/stack.sh index 497e8a1b71..0461c49d2c 100755 --- a/stack.sh +++ b/stack.sh @@ -105,7 +105,7 @@ disable_negated_services # Warn users who aren't on an explicitly supported distro, but allow them to # override check and attempt installation with ``FORCE=yes ./stack`` -if [[ ! ${DISTRO} =~ (oneiric|precise|quantal|raring|f16|f17|f18|opensuse-12.2) ]]; then +if [[ ! ${DISTRO} =~ (oneiric|precise|quantal|raring|f16|f17|f18|opensuse-12.2|rhel6) ]]; then echo "WARNING: this script has not been tested on $DISTRO" if [[ "$FORCE" != "yes" ]]; then die $LINENO "If you wish to run this script anyway run with FORCE=yes"