From 5fb5f78d441b24d72587eb696a5039e603d6a3a9 Mon Sep 17 00:00:00 2001 From: Denys Havrysh Date: Fri, 18 Aug 2017 10:31:58 +0300 Subject: [PATCH] Declare EOL for openSUSE releases earlier and including 13.X --- README.rst | 1 - bootstrap-salt.sh | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 6f1d10f..7500a67 100644 --- a/README.rst +++ b/README.rst @@ -261,7 +261,6 @@ Red Hat family SUSE family ~~~~~~~~~~~ -- openSUSE 12/13 - openSUSE Leap 42 - openSUSE Tumbleweed 2015 - SUSE Linux Enterprise Server 11 SP1/11 SP2/11 SP3/12 diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index bf7ab0b..4e0ec3e 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -1517,8 +1517,8 @@ __check_end_of_life_versions() { opensuse) # openSUSE versions not supported # - # <= 12.1 - if ([ "$DISTRO_MAJOR_VERSION" -eq 12 ] && [ "$DISTRO_MINOR_VERSION" -eq 1 ]) || [ "$DISTRO_MAJOR_VERSION" -lt 12 ]; then + # <= 13.X + if [ "$DISTRO_MAJOR_VERSION" -le 13 ]; then echoerror "End of life distributions are not supported." echoerror "Please consider upgrading to the next stable. See:" echoerror " http://en.opensuse.org/Lifetime"