wok view chillispot/stuff/chilli @ rev 19001

Use variables in $TARBALL
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 23 11:51:37 2016 +0200 (2016-03-23)
parents cf2ce55f4ea3
children 7f188676b59c
line source
1 #!/bin/sh
2 # /etc/init.d/chilli : Start, stop and restart ChilliSpot server on SliTaz, at
3 # boot time or with the command line.
4 #
5 # To start ChilliSpot server at boot time, just put chilli 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=ChilliSpot
12 DESC="ChilliSpot server"
13 DAEMON=/usr/sbin/chilli
14 OPTIONS=$CHILLI_OPTIONS
15 PIDFILE=/var/run/chilli.pid
16 [ -n "$OPTIONS" ] || OPTIONS="--pidfile $PIDFILE --statedir /var/lib/chilli/"
18 case "$1" in
19 start)
20 if active_pidfile $PIDFILE chilli ; then
21 echo "$NAME already running."
22 exit 1
23 fi
24 $DAEMON $OPTIONS
25 status
26 ;;
27 stop)
28 if ! active_pidfile $PIDFILE chilli ; then
29 echo "$NAME is not running."
30 exit 1
31 fi
32 echo -n "Stopping $DESC: $NAME... "
33 kill `cat $PIDFILE`
34 status
35 ;;
36 restart)
37 if ! active_pidfile $PIDFILE chilli ; then
38 echo "$NAME is not running."
39 exit 1
40 fi
41 echo -n "Restarting $DESC: $NAME... "
42 kill `cat $PIDFILE`
43 sleep 2
44 $DAEMON $OPTIONS
45 status
46 ;;
47 *)
48 echo ""
49 echo -e "\033[1mUsage:\033[0m /etc/init.d/`basename $0` [start|stop|restart]"
50 echo ""
51 exit 1
52 ;;
53 esac
55 exit 0