#!/bin/bash

ps ax | grep /usr/sbin/httpd > /dev/null
if test $? = 0 ; then
	retval=0
else
	retval=97
fi

exit $retval
