san...@sanpei.org (MIHIRA Yoshiro) writes:
> # Yes, We modify some ports to support start,stop.....

And others to no longer support it. The Apache 1.2 port used to
support it, the Apache 1.3 port doesn't. Here's a replacement:

#!/bin/sh

if [ ! -x /usr/local/sbin/apachectl ] ; then
        echo "apachectl not found"
        exit 1
fi

case $1 in
start|stop|restart)
        /usr/local/sbin/apachectl $1
        ;;
*)
        echo "Usage: $(basename $0) start|stop|restart"
        exit 1
        ;;
esac

DES
-- 
Dag-Erling Smorgrav - d...@flood.ping.uio.no


To Unsubscribe: send mail to majord...@freebsd.org
with "unsubscribe freebsd-hackers" in the body of the message

Reply via email to