]> git.pld-linux.org Git - packages/postfix.git/blobdiff - postfix.init
- enable epoll on HEAD
[packages/postfix.git] / postfix.init
index e02cb3a65c1026cbfd4d36e8bdecc71e0555bd91..10671edc7f84a05366fc0f25f22b123bc9c198b5 100644 (file)
@@ -1,11 +1,11 @@
 #!/bin/sh
 #
-# postfix       This shell script takes care of starting and stopping
-#               postfix.
+# postfix      This shell script takes care of starting and stopping
+#              postfix.
 #
-# chkconfig:   2345 80 30
+# chkconfig:   345 80 30
 #
-# description: Postfix is a Mail Transport Agent, which is the program
+# description: Postfix is a Mail Transport Agent, which is the program \
 #              that moves mail from one machine to another.
 
 
 [ -f /etc/sysconfig/postfix ] && . /etc/sysconfig/postfix
 
 # Check that networking is up.
-if [ "${NETWORKING}" = "no" ]; then
-       echo "WARNING: Networking is down. Postfix service can't be runed."
-       exit 1
+if is_yes "${NETWORKING}"; then
+       if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
+               msg_network_down Postfix
+               exit 1
+       fi
+else
+       exit 0
 fi
 
+RETVAL=0
 # See how we were called.
 case "$1" in
   start)
        # Check if the service is already running?
        if [ ! -f /var/lock/subsys/postfix ]; then
-               show Starting postfix
+               msg_starting Postfix
                busy
-               newaliases
-               $0 rebuilddb
                MSG="`/usr/sbin/postfix start 2>&1`"
-               if [ "$?" = "0" ] ; then
-                       deltext; ok
+               if [ $? -eq 0 ]; then
+                       ok
+                       touch /var/lock/subsys/postfix
                else
-                       deltext; fail
+                       RETVAL=1
+                       fail
                        echo "$MSG"
                fi
        else
-               echo "postfix already is running"
+               msg_already_running Postfix
        fi
-       touch /var/lock/subsys/postfix
        ;;
   stop)
        # Stop daemons.
-       show "Shutting down postfix"
-       busy
-       MSG="`/usr/sbin/postfix stop 2>&1`"
-       if [ "$?" = "0" ]; then
-               deltext; ok
+       if [ -f /var/lock/subsys/postfix ]; then
+               msg_stopping Postfix
+               busy
+               MSG="`/usr/sbin/postfix stop 2>&1`"
+               if [ $? -eq 0 ]; then
+                       ok
+               else
+                       fail
+                       echo "$MSG"
+               fi
+               rm -f /var/lock/subsys/postfix
        else
-               deltext; fail
-               echo "$MSG"
+               msg_not_running Postfix
        fi
-       rm -f /var/lock/subsys/postfix
        ;;
   restart)
        $0 stop
        $0 start
+       exit $?
        ;;
-  reload)
-       /usr/sbin/postfix reload
+  reload|force-reload)
+       if [ -f /var/lock/subsys/postfix ]; then
+               msg_reloading Postfix
+               daemon /usr/sbin/postfix reload
+               RETVAL=$?
+               [ $RETVAL -ne 0 ] && RETVAL=7
+       else
+               msg_not_running Postfix
+               exit 7
+       fi
        ;;
   status)
-       status postfix
+       status master
+       exit $?
        ;;
   rebuilddb)
-        for I in access canonical relocated transport virtual; do
-               if [ -f /etc/mail/$I ] ; then
+       standard_db="access canonical relocated transport virtual"
+       extra_db=$(ls -1 /etc/mail/*.db 2> /dev/null | grep -v aliases.db | sed -e 's#.db$##')
+       for base in $standard_db $extra_db; do
+               I=$(basename "$base")
+               if [ -f /etc/mail/$I ]; then
                        /usr/sbin/postmap hash:/etc/mail/$I < /etc/mail/$I
                fi
        done
-       ;;
+       /usr/bin/newaliases
+       ;;
   *)
-       echo "Usage: $0 {start|stop|status|restart|reload|rebuilddb}"
-       exit 1
+       msg_usage "$0 {start|stop|restart|reload|force-reload|rebuilddb|status}"
+       exit 3
 esac
 
-exit 0
+exit $RETVAL
This page took 0.042449 seconds and 4 git commands to generate.