wok view dnsmasq/stuff/etc/init.d/dnsmasq @ rev 22757

updated ffmpegthumbnailer and ffmpegthumbnailer-dev (2.2.0 -> 2.2.2)
author Hans-G?nter Theisgen
date Fri Jan 24 16:35:42 2020 +0100 (2020-01-24)
parents 7f188676b59c
children 24fe92acc96d
line source
1 #!/bin/sh
2 # /etc/init.d/dnsmasq: Start, stop and restart DNSmasq 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=DNSmasq
12 DESC="$(_ '%s daemon' dnsmasq)"
13 DAEMON=/usr/sbin/dnsmasq
14 OPTIONS=$DNSMASQ_OPTIONS
15 PIDFILE=/var/run/dnsmasq.pid
17 case "$1" in
18 start)
19 if active_pidfile $PIDFILE dnsmasq ; then
20 _ '%s is already running.' $NAME
21 exit 1
22 fi
23 action 'Starting %s: %s...' "$DESC" $NAME
24 $DAEMON $OPTIONS
25 status
26 ;;
27 stop)
28 if ! active_pidfile $PIDFILE dnsmasq ; then
29 _ '%s is not running.' $NAME
30 exit 1
31 fi
32 action 'Stopping %s: %s...' "$DESC" $NAME
33 kill $(cat $PIDFILE)
34 rm $PIDFILE
35 status
36 ;;
37 restart)
38 if ! active_pidfile $PIDFILE dnsmasq ; then
39 _ '%s is not running.' $NAME
40 exit 1
41 fi
42 action 'Restarting %s: %s...' "$DESC" $NAME
43 kill $(cat $PIDFILE)
44 rm $PIDFILE
45 sleep 2
46 $DAEMON $OPTIONS
47 status
48 ;;
49 *)
50 emsg "<n><b>$(_ 'Usage:')</b> $0 [start|stop|restart]"
51 newline
52 exit 1
53 ;;
54 esac
56 exit 0