#jUST test IBMHTTP can start/stop automatically.
case "$1" in
'start')
if [ -x /opt/IBMHTTP/bin/apachectl ]
then
/opt/IBMHTTP/bin/apachectl start
fi
;;
'stop')
if [ -x /opt/IBMHTTP/bin/apachectl ]
then
/opt/IBMHTTP/bin/apachectl stop
fi
;;
*)
echo "Usage: /etc/init.d/apache{ start | stop }"
;;