wok view openerp-web/stuff/etc/init.d/openerp-web @ rev 9670

openerp-web: fix init script
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 02 16:23:17 2011 +0200 (2011-05-02)
parents b7f5000cceb9
children 7f188676b59c
line source
1 #!/bin/sh
2 # /etc/init.d/openerp-web : Start, stop and restart openerp-web server on SliTaz, at
3 # boot time or with the command line.
4 #
5 # To start openerp-web server at boot time, just put etiny in the $RUN_DAEMONS
6 # variable of /etc/rcS.conf and configure options with /etc/daemons.conf
7 #
8 . /etc/init.d/rc.functions
9 . /etc/daemons.conf
11 NAME=openerp-web
12 DESC="openerp-web server"
13 DAEMON=/usr/bin/openerp-web
14 OPTIONS=$OPENERP_WEB_OPTIONS
15 PIDFILE=/var/run/openerp-web.pid
16 [ -n "$OPTIONS" ] || OPTIONS="-c /etc/openerp/openerp-web.conf"
18 ps ww | grep $DAEMON | awk '{ if (!/grep/) print $1 }' > $PIDFILE
19 case "$1" in
20 start)
21 if active_pidfile $PIDFILE $NAME ; then
22 echo "$NAME already running."
23 exit 1
24 fi
25 echo -n "Starting $DESC: $NAME... "
26 $DAEMON $OPTIONS &
27 status
28 sleep 2 ;;
29 stop)
30 if ! active_pidfile $PIDFILE $NAME ; then
31 echo "$NAME is not running."
32 exit 1
33 fi
34 echo -n "Stopping $DESC: $NAME... "
35 kill `cat $PIDFILE`
36 status
37 sleep 2 ;;
38 restart)
39 if ! active_pidfile $PIDFILE $NAME ; then
40 echo "$NAME is not running."
41 exit 1
42 fi
43 echo -n "Restarting $DESC: $NAME... "
44 kill `cat $PIDFILE`
45 sleep 2
46 $DAEMON $OPTIONS &
47 status
48 sleep 2 ;;
49 *)
50 echo ""
51 echo -e "\033[1mUsage:\033[0m /etc/init.d/`basename $0` [start|stop|restart]"
52 echo ""
53 exit 1 ;;
54 esac
56 exit 0