mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 09:40:21 +00:00
Fix comments about EOL to match actual checks
This commit is contained in:
parent
0d66b66d69
commit
f156f5c2a3
1 changed files with 6 additions and 6 deletions
|
@ -1462,7 +1462,7 @@ __check_end_of_life_versions() {
|
|||
;;
|
||||
|
||||
fedora)
|
||||
# Fedora lower than 18 are no longer supported
|
||||
# Fedora lower than 23 are no longer supported
|
||||
if [ "$DISTRO_MAJOR_VERSION" -lt 23 ]; then
|
||||
echoerror "End of life distributions are not supported."
|
||||
echoerror "Please consider upgrading to the next stable. See:"
|
||||
|
@ -1472,7 +1472,7 @@ __check_end_of_life_versions() {
|
|||
;;
|
||||
|
||||
centos)
|
||||
# CentOS versions lower than 5 are no longer supported
|
||||
# CentOS versions lower than 6 are no longer supported
|
||||
if [ "$DISTRO_MAJOR_VERSION" -lt 6 ]; then
|
||||
echoerror "End of life distributions are not supported."
|
||||
echoerror "Please consider upgrading to the next stable. See:"
|
||||
|
@ -1482,7 +1482,7 @@ __check_end_of_life_versions() {
|
|||
;;
|
||||
|
||||
red_hat*linux)
|
||||
# Red Hat (Enterprise) Linux versions lower than 5 are no longer supported
|
||||
# Red Hat (Enterprise) Linux versions lower than 6 are no longer supported
|
||||
if [ "$DISTRO_MAJOR_VERSION" -lt 6 ]; then
|
||||
echoerror "End of life distributions are not supported."
|
||||
echoerror "Please consider upgrading to the next stable. See:"
|
||||
|
@ -1492,7 +1492,7 @@ __check_end_of_life_versions() {
|
|||
;;
|
||||
|
||||
oracle*linux)
|
||||
# Oracle Linux versions lower than 5 are no longer supported
|
||||
# Oracle Linux versions lower than 6 are no longer supported
|
||||
if [ "$DISTRO_MAJOR_VERSION" -lt 6 ]; then
|
||||
echoerror "End of life distributions are not supported."
|
||||
echoerror "Please consider upgrading to the next stable. See:"
|
||||
|
@ -1502,7 +1502,7 @@ __check_end_of_life_versions() {
|
|||
;;
|
||||
|
||||
scientific*linux)
|
||||
# Scientific Linux versions lower than 5 are no longer supported
|
||||
# Scientific Linux versions lower than 6 are no longer supported
|
||||
if [ "$DISTRO_MAJOR_VERSION" -lt 6 ]; then
|
||||
echoerror "End of life distributions are not supported."
|
||||
echoerror "Please consider upgrading to the next stable. See:"
|
||||
|
@ -1512,7 +1512,7 @@ __check_end_of_life_versions() {
|
|||
;;
|
||||
|
||||
cloud*linux)
|
||||
# Cloud Linux versions lower than 5 are no longer supported
|
||||
# Cloud Linux versions lower than 6 are no longer supported
|
||||
if [ "$DISTRO_MAJOR_VERSION" -lt 6 ]; then
|
||||
echoerror "End of life distributions are not supported."
|
||||
echoerror "Please consider upgrading to the next stable. See:"
|
||||
|
|
Loading…
Add table
Reference in a new issue