wok annotate tinc/stuff/etc/init.d/tinc @ rev 22130

updated wifidog (1.1.5 -> 1.3.0)
author Hans-G?nter Theisgen
date Mon Nov 04 11:16:52 2019 +0100 (2019-11-04)
parents 7f188676b59c
children
rev   line source
pascal@15885 1 #!/bin/sh
al@19161 2 # /etc/init.d/tinc: Start, stop and restart tinc daemon on SliTaz, at boot
pascal@15885 3 # time or with the command line.
pascal@15885 4 #
pascal@15885 5 # To start daemon at boot time, just put the right name in the $RUN_DAEMONS
pascal@15885 6 # variable of /etc/rcS.conf and configure options with /etc/daemons.conf.
pascal@15885 7 #
pascal@15885 8 . /etc/init.d/rc.functions
pascal@15885 9 . /etc/daemons.conf
pascal@15885 10
pascal@15885 11 NAME=tinc
al@19159 12 DESC="$(_ '%s daemon' tinc)"
pascal@15885 13 DAEMON=/usr/sbin/tincd
pascal@15885 14 OPTIONS=$TINC_OPTIONS
pascal@15885 15 PIDFILE=/var/run/tinc.pid
pascal@15885 16
pascal@15885 17 case "$1" in
pascal@15885 18 start)
pascal@15885 19 if active_pidfile $PIDFILE tincd ; then
al@19159 20 _ '%s is already running.' $NAME
pascal@15885 21 exit 1
pascal@15885 22 fi
al@19159 23 action 'Starting %s: %s...' "$DESC" $NAME
al@19159 24 $DAEMON $OPTIONS
pascal@15885 25 status
pascal@15885 26 ;;
pascal@15885 27 stop)
pascal@15885 28 if ! active_pidfile $PIDFILE tincd ; then
al@19159 29 _ '%s is not running.' $NAME
pascal@15885 30 exit 1
pascal@15885 31 fi
al@19159 32 action 'Stopping %s: %s...' "$DESC" $NAME
al@19159 33 $DAEMON -k
pascal@15885 34 status
pascal@15885 35 ;;
pascal@15885 36 restart)
pascal@15885 37 if ! active_pidfile $PIDFILE tincd ; then
al@19159 38 _ '%s is not running.'
pascal@15885 39 exit 1
pascal@15885 40 fi
al@19159 41 action 'Restarting %s: %s...' "$DESC" $NAME
al@19159 42 $DAEMON -k
pascal@15885 43 sleep 2
pascal@15885 44 $DAEMON $OPTIONS
pascal@15885 45 status
pascal@15885 46 ;;
pascal@15885 47 *)
al@19159 48 emsg "<n><b>$(_ 'Usage:')</b> $0 [start|stop|reload|restart]"
al@19159 49 newline
pascal@15885 50 exit 1
pascal@15885 51 ;;
pascal@15885 52 esac
pascal@15885 53
pascal@15885 54 exit 0