wok view postfix/stuff/etc/init.d/postfix @ rev 21909

updated sic (1.1 -> 1.2)
author Hans-G?nter Theisgen
date Fri Oct 04 15:39:32 2019 +0100 (2019-10-04)
parents 9b235e7c8d32
children
line source
1 #!/bin/sh
2 # /etc/init.d/postfix : Start, stop and restart SMTP server on SliTaz, at
3 # boot time or with the command line.
4 #
5 # To start SMTP server at boot time, just put postfix 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=Postfix
12 DESC="$(_ '%s server' SMTP)"
13 DAEMON=/usr/lib/postfix/master
14 OPTIONS=$POSTFIX_OPTIONS
15 PIDFILE=/var/spool/postfix/pid/master.pid
17 case "$1" in
18 start)
19 if active_pidfile $PIDFILE master ; 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 master ; then
29 _ '%s is not running.' $NAME
30 exit 1
31 fi
32 action 'Stopping %s: %s...' "$DESC" $NAME
33 kill $(cat $PIDFILE) && rm -f $PIDFILE
34 status
35 ;;
36 restart)
37 if ! active_pidfile $PIDFILE master ; then
38 _ '%s is not running.' $NAME
39 exit 1
40 fi
41 action 'Restarting %s: %s...' "$DESC" $NAME
42 kill $(cat $PIDFILE) && rm -f $PIDFILE
43 sleep 2
44 $DAEMON $OPTIONS &
45 status
46 ;;
47 reload)
48 if ! active_pidfile $PIDFILE master ; then
49 _ '%s is not running.' $NAME
50 exit 1
51 fi
52 postsuper active || exit 1
53 kill -HUP $(cat $PIDFILE)
54 postsuper &
55 status
56 ;;
57 *)
58 emsg "<n><b>$(_ 'Usage:')</b> $0 [start|stop|restart|reload]"
59 newline
60 exit 1
61 ;;
62 esac
64 exit 0