summaryrefslogtreecommitdiff
path: root/scripts/mini_httpd.sh
blob: 0dde12ee276f9a47aa1bf47943e6529ec07a920a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh
#
# mini_httpd.sh - startup script for mini_httpd on FreeBSD
#
# This goes in /usr/local/etc/rc.d and gets run at boot-time.

case "$1" in
 
    start)
    if [ -x /usr/local/sbin/mini_httpd_wrapper ] ; then
	echo -n " mini_httpd"
	/usr/local/sbin/mini_httpd_wrapper &
    fi
    ;;

    stop)
    kill -USR1 `cat /var/run/mini_httpd.pid`
    ;;
	    
    *)
    echo "usage: $0 { start | stop }" >&2
    exit 1
    ;;
			     
esac