From 77866259e4204eb08afd55e8a29994ad49c58e0b Mon Sep 17 00:00:00 2001 From: Lee Yarwood Date: Fri, 7 Dec 2018 18:52:16 +0000 Subject: [PATCH] Update supported Fedora releases Fedora 27 has now hit EOL [1] while Fedora 29 has been released [2]. [1] https://fedoramagazine.org/fedora-27-end-of-life/ [2] https://fedoramagazine.org/announcing-fedora-29/ Change-Id: I12e287e36f01581f1c7145545ab05be527ed15c6 --- stack.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack.sh b/stack.sh index 144c233f05..54a4f985bd 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} =~ (xenial|artful|bionic|stretch|jessie|f27|f28|opensuse-42.3|opensuse-15.0|opensuse-tumbleweed|rhel7) ]]; then +if [[ ! ${DISTRO} =~ (xenial|artful|bionic|stretch|jessie|f28|f29|opensuse-42.3|opensuse-15.0|opensuse-tumbleweed|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"