summaryrefslogtreecommitdiff
path: root/www/thttpd/files/thttpd.sh
blob: 5b8ef54460890be831aa14382e81fb412991489c (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/sh
#
# $NetBSD: thttpd.sh,v 1.4 2001/01/14 06:14:13 jlam Exp $
#
# PROVIDE: thttpd
# REQUIRE: DAEMON

name="thttpd"
command=@PREFIX@/sbin/${name}

pid=`ps -ax | awk '{print $1,$5}' | grep ${name} | awk '{print $1}'`

cmd=${1:-start}

case ${cmd} in
start)
	if [ "$pid" = "" -a -x ${command} -a -f /etc/${name}.conf ]
	then
		echo "Starting ${name}."
		${command} -C /etc/${name}.conf
	fi
	;;

stop)
	if [ "$pid" != "" ]
	then
		echo "Stopping ${name}."
		kill -TERM ${pid}
	else
		echo "${name} not running?"
	fi
	;;

restart)
	( $0 stop )
	sleep 1
	$0 start
	;;

status)
	if [ "$pid" != "" ]
	then
		echo "${name} is running as pid ${pid}."
	else
		echo "${name} is not running."
	fi
	;;

*)
	echo 1>&2 "Usage: ${name} [restart|start|stop|status]"
	exit 1
	;;
esac
exit 0