FreeBSD < 9.1 is not supported.

This commit is contained in:
Pedro Algarvio 2013-09-26 16:55:38 +01:00
parent bea21852d1
commit 5012fc5f25

View file

@ -1058,6 +1058,14 @@ __check_end_of_life_versions() {
fi
;;
freebsd)
# FreeBSD versions lower than 9.1 are not supported.
if ([ $DISTRO_MAJOR_VERSION -eq 9 ] && [ $DISTRO_MINOR_VERSION -lt 01 ]) || [ $DISTRO_MAJOR_VERSION -lt 9 ]; then
echoerror "Versions lower than FreeBSD 9.1 are not supported."
exit 1
fi
;;
*)
;;
esac