mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 09:40:21 +00:00
Declare EOL for openSUSE LEAP 42.1
This commit is contained in:
parent
adc8efa2c6
commit
fd7b9ebe09
2 changed files with 6 additions and 4 deletions
|
@ -262,7 +262,7 @@ Red Hat family
|
||||||
SUSE family
|
SUSE family
|
||||||
~~~~~~~~~~~
|
~~~~~~~~~~~
|
||||||
|
|
||||||
- openSUSE Leap 42
|
- openSUSE Leap 42.2/42.3
|
||||||
- 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
|
||||||
|
|
||||||
|
|
|
@ -1490,8 +1490,8 @@ __check_end_of_life_versions() {
|
||||||
# = 14.10
|
# = 14.10
|
||||||
# = 15.04, 15.10
|
# = 15.04, 15.10
|
||||||
if [ "$DISTRO_MAJOR_VERSION" -lt 14 ] || \
|
if [ "$DISTRO_MAJOR_VERSION" -lt 14 ] || \
|
||||||
[ "$DISTRO_MAJOR_VERSION" -eq 15 ] || \
|
[ "$DISTRO_MAJOR_VERSION" -eq 15 ] || \
|
||||||
([ "$DISTRO_MAJOR_VERSION" -lt 16 ] && [ "$DISTRO_MINOR_VERSION" -eq 10 ]); then
|
([ "$DISTRO_MAJOR_VERSION" -lt 16 ] && [ "$DISTRO_MINOR_VERSION" -eq 10 ]); 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 " https://wiki.ubuntu.com/Releases"
|
echoerror " https://wiki.ubuntu.com/Releases"
|
||||||
|
@ -1503,7 +1503,9 @@ __check_end_of_life_versions() {
|
||||||
# openSUSE versions not supported
|
# openSUSE versions not supported
|
||||||
#
|
#
|
||||||
# <= 13.X
|
# <= 13.X
|
||||||
if [ "$DISTRO_MAJOR_VERSION" -le 13 ]; then
|
# <= 42.1
|
||||||
|
if [ "$DISTRO_MAJOR_VERSION" -le 13 ] || \
|
||||||
|
([ "$DISTRO_MAJOR_VERSION" -eq 42 ] && [ "$DISTRO_MINOR_VERSION" -le 1 ]); 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"
|
||||||
|
|
Loading…
Add table
Reference in a new issue