blob: 8ed467b079514f5a4866f043dad14b22e0e62b73 (
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
|
#! /bin/sh
#
# odeviced This shell script starts and stops the open event daemon.
#
# chkconfig: 345 90 20
# description: py-oeventd is the open evend daemon
# processname: python
PATH=/bin:/usr/bin:/sbin:/usr/sbin
NAME=oeventd
[ -f /etc/default/rcS ] && . /etc/default/rcS
case "$1" in
start)
echo -n "Starting open event daemon: "
start-stop-daemon --start --pidfile /var/run/${NAME}.pid --make-pidfile --background -x /usr/bin/oeventd
if [ $? = 0 ]; then
echo "(ok)"
else
echo "(failed)"
fi
;;
stop)
echo -n "Stopping open event daemon: "
start-stop-daemon --stop --pidfile /var/run/${NAME}.pid --oknodo
rm -f /var/run/${NAME}.pid
echo "(done)"
;;
restart|force-reload)
$0 stop
$0 start
;;
*)
echo "Usage: /etc/init.d/oeventd {start|stop|restart|force-reload}"
exit 1
;;
esac
exit 0
|