From 83194f956e1c5308386adbf7146626e75875bcfe Mon Sep 17 00:00:00 2001 From: Jens Harbott Date: Fri, 3 Nov 2017 14:14:53 +0000 Subject: [PATCH] Update supported Ubuntu releases With the release of 17.10(artful), support for 16.10(yakkety) has ended. Update our list of supported distros accordingly. Change-Id: Id85e00f109cfd43141dec0c0d2bfedb66f14e664 --- stack.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack.sh b/stack.sh index a125d4a0d7..1d0381483a 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|yakkety|zesty|stretch|jessie|f24|f25|f26|opensuse-42.2|opensuse-42.3|rhel7) ]]; then +if [[ ! ${DISTRO} =~ (xenial|zesty|artful|stretch|jessie|f24|f25|f26|opensuse-42.2|opensuse-42.3|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"