From e32b2cbaeb3c63b0c57f80a2e7646fcf2294b51b Mon Sep 17 00:00:00 2001 From: Mitesh Shah Date: Fri, 11 Jul 2014 13:32:19 +0530 Subject: [PATCH] Fix #181 --- bin/install.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/bin/install.sh b/bin/install.sh index 3b7c342b..d2c4ea2f 100644 --- a/bin/install.sh +++ b/bin/install.sh @@ -50,6 +50,14 @@ if [ "$EE_LINUX_DISTRO" != "Ubuntu" ] && [ "$EE_LINUX_DISTRO" != "Debian" ]; the exit 100 fi +# EasyEngine (ee) only support all Ubuntu/Debian distro except the distro reached EOL +lsb_release -d | egrep -e "12.04|14.04|squeeze|wheezy" &>> $EE_INSTALL_LOG +if [ "$?" -ne "0" ]; then + ee_lib_echo_fail "EasyEngine (ee) only support Ubuntu 12.04/14.04 and Debian 6.x/7.x" + exit 100 +fi + + # Capture errors function ee_lib_error() {