wok view knock/stuff/etc/init.d/knock @ rev 20375

I. nagios update: 3.5.0 (March 15, 2013) -> 3.5.1 (2013-08-30) II. typo
author Erkan Yilmaz <erkan@slitaz.org>
date Wed Jun 13 07:19:54 2018 +0000 (2018-06-13)
parents db66c997923a
children
line source
1 #!/bin/sh
2 # /etc/init.d/knock : Start, stop and restart knockd server on SliTaz, at
3 # boot time or with the command line.
4 #
5 # To start Knock server at boot time, just put knock 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=Knock
12 DESC="$(_ '%s server' knock)"
13 DAEMON=/usr/sbin/knockd
14 OPTIONS=$KNOCK_OPTIONS
15 PIDFILE=/var/run/knockd.pid
16 IFACE="$(route -n | awk '{ if ($1 == "0.0.0.0" && $3 == $1) print $8}')"
17 [ -n "$OPTIONS" ] || OPTIONS="-d -i ${IFACE:-eth0}"
19 case "$1" in
20 start)
21 if active_pidfile $PIDFILE knockd ; then
22 _ '%s is already running.' $NAME
23 exit 1
24 fi
25 action 'Starting %s: %s...' "$DESC" $NAME
26 $DAEMON $OPTIONS
27 status
28 ;;
29 stop)
30 if ! active_pidfile $PIDFILE knockd ; then
31 _ '%s is not running.' $NAME
32 exit 1
33 fi
34 action 'Stopping %s: %s...' "$DESC" $NAME
35 kill $(cat $PIDFILE)
36 status
37 ;;
38 restart)
39 if ! active_pidfile $PIDFILE knockd ; then
40 _ '%s is not running.' $NAME
41 exit 1
42 fi
43 action 'Restarting %s: %s...' "$DESC" $NAME
44 kill $(cat $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