wok view fcron/stuff/fcron @ rev 19159

/etc/init.d/*: use 'action' in pair with 'status'.
'action' returns translated message, so why not to add full translatable /etc/init.d/* content
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu May 26 20:16:45 2016 +0300 (2016-05-26)
parents aefe609dbcdf
children 0db0ae7e04c2
line source
1 #!/bin/sh
2 # /etc/init.d/fcron : Start, stop and fcron on SliTaz, at
3 # boot time or with the command line.
4 #
5 # To start SSH server at boot time, just put fcron 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=fcron
12 DESC="$(_ '%s daemon' Cron)"
13 DAEMON=/usr/bin/fcron
14 OPTIONS=-b
15 PIDFILE=/var/run/fcron.pid
17 case "$1" in
18 start)
19 if active_pidfile $PIDFILE fcron ; 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 fcron ; 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 fcron ; 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
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