From a4c57cadf2fcc448dbee04a5f911af5613038678 Mon Sep 17 00:00:00 2001 From: David Rabel Date: Fri, 17 Mar 2017 16:14:00 +0100 Subject: [PATCH] Replace "sid" and "testing" by "stretch" Supported Debian distros (codenames) are "sid", "testing", and "jessie", but it should be "stretch" and "jessie". "testing" is no codename and therefore should be replaced by "stretch". "sid" changes all the time and cannot be guaranteed to run correctly or is at least not tested. Change-Id: Id4b80a055452bbff69036d4dc1adeda46ce99664 Closes-Bug: #1673810 Closes-Bug: #1674416 --- stack.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack.sh b/stack.sh index f08d56f60a..20cdc1dfcc 100755 --- a/stack.sh +++ b/stack.sh @@ -192,7 +192,7 @@ source $TOP_DIR/stackrc # 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|sid|testing|jessie|f24|f25|rhel7|kvmibm1) ]]; then +if [[ ! ${DISTRO} =~ (xenial|yakkety|zesty|stretch|jessie|f24|f25|rhel7|kvmibm1) ]]; 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"