]> git.sur5r.net Git - bacula/bacula/commitdiff
exit on failure
authorKern Sibbald <kern@sibbald.com>
Sun, 30 Sep 2007 12:44:23 +0000 (12:44 +0000)
committerKern Sibbald <kern@sibbald.com>
Sun, 30 Sep 2007 12:44:23 +0000 (12:44 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@5691 91ce42f0-d328-0410-95d8-f526ca767f89

regress/scripts/check_for_zombie_jobs

index e2a7e6ffa0cc2ade95cd9e9dd4394db9f9e76a2e..768c4e173130de45baa207bae07ef2a1e797449c 100755 (executable)
@@ -22,12 +22,14 @@ status $1
 @output
 quit
 END_OF_DATA
+
 grep "No Jobs running." tmp/dir.out 2>&1 >/dev/null
 if [ $? != 0 ] ; then
   echo " "
   echo "  !!!! Zombie Jobs in Director !!!!"
   echo "  !!!! Zombie Jobs in Director !!!!" >>test.out
   echo " "
+  exit 1
 fi
 grep "No Jobs running." tmp/fd.out 2>&1 >/dev/null
 if [ $? != 0 ] ; then
@@ -35,6 +37,7 @@ if [ $? != 0 ] ; then
   echo "  !!!! Zombie Jobs in File daemon !!!!"
   echo "  !!!! Zombie Jobs in File daemon !!!!" >>test.out
   echo " "
+  exit 1
 fi
 grep "No Jobs running." tmp/sd.out 2>&1 >/dev/null
 if [ $? != 0 ] ; then
@@ -42,6 +45,7 @@ if [ $? != 0 ] ; then
   echo "  !!!! Zombie Jobs in Storage daemon !!!!"
   echo "  !!!! Zombie Jobs in Storage daemon !!!!" >>test.out
   echo " "
+  exit 1
 fi
 grep "ERROR" tmp/log*.out 2>&1 >/dev/null
 if [ $? = 0 ] ; then
@@ -49,6 +53,7 @@ if [ $? = 0 ] ; then
   echo "  !!!! ERROR in log output !!!!"
   echo "  !!!! ERROR in log output !!!!" >>test.out
   echo " "
+  exit 1
 fi
 grep "Fatal Error" tmp/log*.out 2>&1 >/dev/null
 if [ $? = 0 ] ; then
@@ -56,6 +61,7 @@ if [ $? = 0 ] ; then
   echo "  !!!! Fatal Error in log output !!!!"
   echo "  !!!! Fatal Error in log output !!!!" >>test.out
   echo " "
+  exit 1
 fi
 
 grep "glibc detected" tmp/log*.out 2>&1 >/dev/null
@@ -64,5 +70,5 @@ if [ $? = 0 ] ; then
   echo "  !!!! glibc detected Error in log output !!!!"
   echo "  !!!! glibc detected Error in log output !!!!" >>test.out
   echo " "
+  exit 1
 fi
-