From c287e7ec3c22a9b4c2d89c1e36a6383b351f9b17 Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Wed, 11 Dec 2019 16:55:41 +1100 Subject: [PATCH] Remove CentOS 7 as supported environment We do not support CentOS 7 on master branch due to no Python 3 or ongoing eco-system (i.e. RDO) support; see Id9ef507dd6f4226d65c6ed3043666b0aa6a3bd1c. Change-Id: If98581708568e7a8d15e6edc588a008df0cac0fb --- stack.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack.sh b/stack.sh index 4e1134b7e3..0f1ddb1b3f 100755 --- a/stack.sh +++ b/stack.sh @@ -221,7 +221,7 @@ write_devstack_version # 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} =~ (bionic|stretch|jessie|f30|f31|opensuse-15.0|opensuse-15.1|opensuse-tumbleweed|rhel7) ]]; then +if [[ ! ${DISTRO} =~ (bionic|stretch|jessie|f30|f31|opensuse-15.0|opensuse-15.1|opensuse-tumbleweed) ]]; 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"