wok view get-softmodem-driver/stuff/slmodem.init @ rev 16404

Up: slitaz-tools, slitaz-tools-boxes (5.7.2) bugfix
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Apr 16 15:34:54 2014 +0300 (2014-04-16)
parents
children ff5fd8788cd9
line source
1 #!/bin/sh
2 # /etc/init.d/slmodem: Start, stop and restart slmodemd deamon on SliTaz, at boot
3 # time or with the command line.
4 #
5 # To start daemon at boot time, just put the right name 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="Smartlink modem"
12 DESC="Smart Link Modem deamon"
13 DAEMON=/usr/sbin/slmodemd
14 OPTIONS=$SLMODEM_OPTIONS
15 PIDFILE=/var/run/slmodemd.pid
17 case "$1" in
18 start)
19 if active_pidfile $PIDFILE slmodemd ; then
20 echo "$NAME already running."
21 exit 1
22 fi
23 echo -n "Starting $DESC: $NAME... "
24 $DAEMON $OPTIONS && echo `/bin/pidof $DAEMON` > $PIDFILE
25 status
26 ;;
27 stop)
28 if ! active_pidfile $PIDFILE slmodemd ; 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 slmodemd ; 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 && echo `/bin/pidof $DAEMON` > $PIDFILE
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