#!/bin/ksh
##################################################
# name: [SK]httpd
# purpose: script that will start or stop the httpd service.
##################################################

case "$1" in
start )
	/opt/httpd/sbin/apachectl start
	;;
stop )
	/opt/httpd/sbin/apachectl stop
	;;
* )
	echo "Usage: $0 (start | stop)"
	exit 1
esac
