OPTIONS=""
PATH=$PATH:/www/apache/bin

case "$1" in
    start)
       echo -n "Starting apache..."
       apachectl start
       ;;
     restart)
       echo -n "Restarting apache..."
       apachectl restart
       ;;
     stop)
       echo -n "Stopping apache..."
       apachectl stop
       ;;
     *)
       echo "usage: start|restart|stop"
       ;;
esac
