From e17a60c6b4e8a1196ebd4269c21f43ffba73869f Mon Sep 17 00:00:00 2001 From: Shireesh Anjal Date: Mon, 12 Dec 2011 20:21:01 +0530 Subject: Fixed dependency checking in gmg-backend-install.sh --- build/gmg-backend-install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/gmg-backend-install.sh b/build/gmg-backend-install.sh index 5893f5d2..98aec67b 100755 --- a/build/gmg-backend-install.sh +++ b/build/gmg-backend-install.sh @@ -44,7 +44,7 @@ function pre() quit "/sbin/chkconfig not found!" ${CHKCONFIG_ERR} fi - if which python 1>/dev/null 2>/dev/null; then + if ! which python 1>/dev/null 2>/dev/null; then quit "python not found" -2 fi @@ -53,7 +53,7 @@ function pre() quit "python version 2.4+ and less than 3.0 is required" -2 fi - if which perl 1>/dev/null 2>/dev/null; then + if ! which perl 1>/dev/null 2>/dev/null; then quit "perl not found" -2 fi @@ -61,7 +61,7 @@ function pre() quit "perl::RRDs not found" -2 fi - if which smbd 1>/dev/null 2>/dev/null; then + if ! which smbd 1>/dev/null 2>/dev/null; then quit "samba not found" -2 fi -- cgit