added information in the result.html when selfserver dies (previously

only in output.log)


git-svn-id: svn://10.0.0.236/trunk@85335 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
sonmi%netscape.com 2001-01-23 01:47:32 +00:00
parent 37385c44d0
commit 5f8b25434f

View File

@ -53,6 +53,8 @@ is_selfserv_alive()
sleep 5
if [ ! -f "${SERVERPID}" ]
then
echo "<TR><TD>fatal error - no serverpidfile</TD><TD bgcolor=red>Failed</TD><TR>" >> ${RESULTS}
echo "</TABLE><BR>" >> ${RESULTS}
Exit "Fatal Error - selfserver pid file ${SERVERPID} still does not exist - exiting"
fi
fi
@ -66,7 +68,9 @@ is_selfserv_alive()
fi
if [ "$SERVER_OK" = "FALSE" ]
then
Exit "Fatal Error - selfserver process not dedectable"
echo "<TR><TD>fatal error - no selfserverprocess</TD><TD bgcolor=red>Failed</TD><TR>" >> ${RESULTS}
echo "</TABLE><BR>" >> ${RESULTS}
Exit "Fatal Error - selfserver process not detectable"
fi
}