Skip to content

Commit 0d0148d

Browse files
committed
We no longer support Ubuntu versions bellow 12.04
1 parent 69c0a0c commit 0d0148d

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

bootstrap-salt.sh

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1327,14 +1327,8 @@ __check_end_of_life_versions() {
13271327
ubuntu)
13281328
# Ubuntu versions not supported
13291329
#
1330-
# < 10
1331-
# = 10.10
1332-
# = 11.04
1333-
# = 11.10
1334-
if ([ "$DISTRO_MAJOR_VERSION" -eq 10 ] && [ "$DISTRO_MINOR_VERSION" -eq 10 ]) || \
1335-
([ "$DISTRO_MAJOR_VERSION" -eq 11 ] && [ "$DISTRO_MINOR_VERSION" -eq 04 ]) || \
1336-
([ "$DISTRO_MAJOR_VERSION" -eq 11 ] && [ "$DISTRO_MINOR_VERSION" -eq 10 ]) || \
1337-
[ "$DISTRO_MAJOR_VERSION" -lt 10 ]; then
1330+
# < 12.04
1331+
if [ "$DISTRO_MAJOR_VERSION" -lt 12 ]; then
13381332
echoerror "End of life distributions are not supported."
13391333
echoerror "Please consider upgrading to the next stable. See:"
13401334
echoerror " https://wiki.ubuntu.com/Releases"

0 commit comments

Comments
 (0)