Merge pull request #1136 from vutny/opensuse-13-eol

Declare EOL for openSUSE releases earlier and including 13.X
This commit is contained in:
Nicole Thomas 2017-08-21 10:40:33 -04:00 committed by GitHub
commit adc8efa2c6
2 changed files with 2 additions and 3 deletions

View file

@ -262,7 +262,6 @@ Red Hat family
SUSE family SUSE family
~~~~~~~~~~~ ~~~~~~~~~~~
- openSUSE 12/13
- openSUSE Leap 42 - openSUSE Leap 42
- openSUSE Tumbleweed 2015 - openSUSE Tumbleweed 2015
- SUSE Linux Enterprise Server 11 SP1/11 SP2/11 SP3/12 - SUSE Linux Enterprise Server 11 SP1/11 SP2/11 SP3/12

View file

@ -1502,8 +1502,8 @@ __check_end_of_life_versions() {
opensuse) opensuse)
# openSUSE versions not supported # openSUSE versions not supported
# #
# <= 12.1 # <= 13.X
if ([ "$DISTRO_MAJOR_VERSION" -eq 12 ] && [ "$DISTRO_MINOR_VERSION" -eq 1 ]) || [ "$DISTRO_MAJOR_VERSION" -lt 12 ]; then if [ "$DISTRO_MAJOR_VERSION" -le 13 ]; then
echoerror "End of life distributions are not supported." echoerror "End of life distributions are not supported."
echoerror "Please consider upgrading to the next stable. See:" echoerror "Please consider upgrading to the next stable. See:"
echoerror " http://en.opensuse.org/Lifetime" echoerror " http://en.opensuse.org/Lifetime"