From 3171cb98a9aea3e1c53664d75985de81a289a855 Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Fri, 27 Jun 2014 13:26:27 +1000 Subject: [PATCH] Add rhel7 as supported distro rhel7 testing has been fairly stable with redhatci bot testing beta and RC builds for some time. Centos7 testing is now coming online with the nightly builds. Thus no need to require the unsupported flag any more. Change-Id: Iceab5c1d8b713f1f96b5751cf988fe060cfeff58 --- stack.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack.sh b/stack.sh index d376bd9897..823f5581ae 100755 --- a/stack.sh +++ b/stack.sh @@ -142,7 +142,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} =~ (precise|saucy|trusty|7.0|wheezy|sid|testing|jessie|f19|f20|rhel6) ]]; then +if [[ ! ${DISTRO} =~ (precise|saucy|trusty|7.0|wheezy|sid|testing|jessie|f19|f20|rhel6|rhel7) ]]; 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"