#!/bin/sh
#
# httpd.service - httpd(8) service file
#

case $1 in
start)
	/usr/sbin/apachectl start
	;;
stop)	/usr/sbin/apachectl stop
	;;
*)
	echo "usage: $0 start|stop"
esac

# EOF
