File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / thttpd / scripts / thttpd.sh
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 17:21:13 2012 UTC (13 years, 1 month ago) by misho
Branches: thttpd, MAIN
CVS tags: v2_25b, HEAD
thttpd

    1: #!/bin/sh
    2: #
    3: # thttpd.sh - startup script for thttpd on FreeBSD
    4: #
    5: # This goes in /usr/local/etc/rc.d and gets run at boot-time.
    6: 
    7: case "$1" in
    8: 
    9:     start)
   10:     if [ -x /usr/local/sbin/thttpd_wrapper ] ; then
   11: 	echo -n " thttpd"
   12: 	/usr/local/sbin/thttpd_wrapper &
   13:     fi
   14:     ;;
   15: 
   16:     stop)
   17:     kill -USR1 `cat /var/run/thttpd.pid`
   18:     ;;
   19: 
   20:     *)
   21:     echo "usage: $0 { start | stop }" >&2
   22:     exit 1
   23:     ;;
   24: 
   25: esac

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>