blob: b69ea53e37b68dd4dd4e07e39dd8dfe32292c2f4 (
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
|
#!/bin/sh
PATH=/sbin:/bin:/usr/bin
DAEMON="owserver"
test -f /usr/bin/${DAEMON} || exit 0
if test -f /etc/default/${DAEMON} ; then
. /etc/default/${DAEMON}
else
:
fi
if [ "$START_OWSERVER" != "yes" ]
then
exit 0
fi
startdaemon(){
echo -n "Starting ${DAEMON}: "
start-stop-daemon --start -x /usr/bin/${DAEMON} -- ${CMDLINE} --pid_file /var/run/${DAEMON}.pid
echo "done"
}
stopdaemon(){
echo -n "Stopping ${DAEMON}: "
start-stop-daemon --stop -p /var/run/${DAEMON}.pid
echo "done"
}
case "$1" in
start)
startdaemon
;;
stop)
stopdaemon
;;
force-reload)
stopdaemon
startdaemon
;;
restart)
stopdaemon
startdaemon
;;
reload)
stopdaemon
startdaemon
;;
*)
echo "Usage: ${DAEMON} { start | stop | restart | reload }" >&2
exit 1
;;
esac
exit 0
|