From cb1448495b3c8ea63febeeda862040447839f716 Mon Sep 17 00:00:00 2001 From: Jens Harbott Date: Tue, 6 Mar 2018 19:22:59 +0000 Subject: [PATCH] Add bionic as supported distro Add the upcoming release Ubuntu 18.04 Bionic Beaver to the list of supported distros. Drop the now unsupported 17.04 (zesty) instead. Change-Id: Iea0b4bfdc510797f7886fac96eff6fdfb730252d --- stack.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack.sh b/stack.sh index badc1a1047..ce6e6fe83d 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|zesty|artful|stretch|jessie|f25|f26|f27|opensuse-42.3|opensuse-tumbleweed|rhel7) ]]; then +if [[ ! ${DISTRO} =~ (xenial|artful|bionic|stretch|jessie|f25|f26|f27|opensuse-42.3|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"