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

updated firefox-official packages (68.0 -> 69.0)
author Hans-G?nter Theisgen
date Tue Sep 24 16:03:49 2019 +0100 (2019-09-24)
parents 4aed2b24febc
children
line source
1 #!/bin/sh
2 # /etc/init.d/slmodem: Start, stop and restart slmodemd daemon 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 daemon')"
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 _ '%s is already running.' "$NAME"
21 exit 1
22 fi
23 action 'Starting %s: %s...' "$DESC" "$NAME"
24 $DAEMON $OPTIONS && echo $(/bin/pidof $DAEMON) > $PIDFILE
25 status
26 ;;
27 stop)
28 if ! active_pidfile $PIDFILE slmodemd ; then
29 _ '%s is not running.' "$NAME"
30 exit 1
31 fi
32 action 'Stopping %s: %s...' "$DESC" "$NAME"
33 kill $(cat $PIDFILE)
34 status
35 ;;
36 restart)
37 if ! active_pidfile $PIDFILE slmodemd ; then
38 _ '%s is not running.' "$NAME"
39 exit 1
40 fi
41 action 'Restarting %s: %s...' "$DESC" "$NAME"
42 kill $(cat $PIDFILE)
43 sleep 2
44 $DAEMON $OPTIONS && echo $(/bin/pidof $DAEMON) > $PIDFILE
45 status
46 ;;
47 *)
48 emsg "<n><b>$(_ 'Usage:')</b> $0 [start|stop|restart]"
49 newline
50 exit 1
51 ;;
52 esac
54 exit 0