@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
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
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
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
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
echo " !!!! glibc detected Error in log output !!!!"
echo " !!!! glibc detected Error in log output !!!!" >>test.out
echo " "
+ exit 1
fi
-