File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff 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"
You can’t perform that action at this time.
0 commit comments