blob: 5e310b01dd21aba6ab32858a3bc9b8dca5e541cb (
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
|
#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
PIDFILE=/run/web/parabolaweb.pid
case $1 in
start)
stat_busy "Starting ParabolaWeb"
install -dm777 ${PIDFILE%/*}
if parabolaweb-fcgi pidfile=${PIDFILE}; then
add_daemon parabolaweb
stat_done
exit 0
else
stat_fail
exit 1
fi
;;
stop)
stat_busy "Stopping ParabolaWeb"
if [[ -f ${PIDFILE} ]]; then
pid=$(cat ${PIDFILE})
kill ${pid}
rm_daemon parabolaweb
stat_done
else
stat_fail
exit 1
fi
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart}" >&2
exit 1
esac
|