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

postfix: fix depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 30 12:09:40 2008 +0000 (2008-07-30)
parents ff8a1f3e8408
children 65a6365f0550
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="SMTP server"
13 DAEMON=/usr/libexec/postfix/master
14 OPTIONS=$POSTFIX_OPTIONS
15 PIDFILE=/var/spool/postfix/pid/master.pid
17 case "$1" in
18 start)
19 if [ -f $PIDFILE ] ; then
20 echo "$NAME already running."
21 exit 1
22 fi
23 echo -n "Starting $DESC: $NAME... "
24 $DAEMON $OPTIONS &
25 status
26 ;;
27 stop)
28 if [ ! -f $PIDFILE ] ; then
29 echo "$NAME is not running."
30 exit 1
31 fi
32 echo -n "Stopping $DESC: $NAME... "
33 kill `cat $PIDFILE`
34 status
35 ;;
36 restart)
37 if [ ! -f $PIDFILE ] ; then
38 echo "$NAME is not running."
39 exit 1
40 fi
41 echo -n "Restarting $DESC: $NAME... "
42 kill `cat $PIDFILE`
43 sleep 2
44 $DAEMON $OPTIONS &
45 status
46 ;;
47 reload)
48 if [ ! -f $PIDFILE ] ; then
49 echo "$NAME is not running."
50 exit 1
51 fi
52 postsuper active || exit 1
53 kill -HUP `cat $PIDFILE`
54 postsuper &
55 status
56 ;;
57 *)
58 echo ""
59 echo -e "\033[1mUsage:\033[0m /etc/init.d/`basename $0` [start|stop|restart|reload]"
60 echo ""
61 exit 1
62 ;;
63 esac
65 exit 0