blob: 20187b116c515be943254cf98aef9466c96d1deb (
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
55
56
57
58
59
60
61
62
63
|
#!/bin/sh
# Start/stop/restart the thttpd daemon
# Copyright (c) 2009 Antonio Hernández Blas <hba.nihilismus@gmail.com>
CONF='/etc/thttpd.conf'
CMMD="/usr/sbin/thttpd -C $CONF"
thttpd_start() {
if [ -x /usr/sbin/thttpd ]; then
if [ -f $CONF ]; then
PIDOF=$(pgrep -f "$CMMD")
if [ ! -z "$PIDOF" ]; then
echo "Error, thttpd is already running."
else
echo "Starting thttpd: $CMMD"
$CMMD
fi
else
echo "Error, file $CONF does not exist."
fi
fi
}
thttpd_stop() {
THTTPDPID=$(pgrep -f "$CMMD")
if [ -z $THTTPDPID ]; then
echo "Error, thttpd is not running."
else
echo "Stoping thttpd: kill $THTTPDPID"
kill $THTTPDPID
fi
}
thttpd_status() {
PIDOF=$(pgrep -f "$CMMD")
if [ ! -z "$PIDOF" ]; then
echo "thttpd is running."
else
echo "thttpd is not running."
fi
}
case $1 in
start)
thttpd_start
;;
stop)
thttpd_stop
;;
restart)
thttpd_stop
sleep 3
thttpd_start
;;
status)
thttpd_status
;;
*)
echo "Usage $0 {start|stop|restart|status}"
exit 1
;;
esac
|