From cd57449c9f5d8f0ecac59da359108fdba80a31f7 Mon Sep 17 00:00:00 2001 From: Jens Harbott Date: Tue, 23 Jun 2020 08:08:13 +0200 Subject: [PATCH] Stop claiming to support Debian distros We haven't had a working job for stretch or jessie in years, attempts to get things fixed have been dropped, set let's be honest and drop those from our support list. Change-Id: Ia6152be79f8044f7ff039ec0911ad4938d6271f4 --- files/debs/nova | 1 - stack.sh | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/files/debs/nova b/files/debs/nova index dce8f6ac89..a7aebbf946 100644 --- a/files/debs/nova +++ b/files/debs/nova @@ -17,7 +17,6 @@ mysql-server # NOPRIME parted pm-utils python3-mysqldb -qemu # dist:wheezy,jessie NOPRIME qemu-kvm # NOPRIME rabbitmq-server # NOPRIME socat # used by ajaxterm diff --git a/stack.sh b/stack.sh index fa27743bb3..709b97b0ef 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|focal|stretch|jessie|f30|f31|opensuse-15.0|opensuse-15.1|opensuse-tumbleweed|rhel8) ]]; then +if [[ ! ${DISTRO} =~ (bionic|focal|f30|f31|opensuse-15.0|opensuse-15.1|opensuse-tumbleweed|rhel8) ]]; 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"