]> git.pld-linux.org Git - packages/dovecot.git/blobdiff - dovecot.init
- up to 2.2.14
[packages/dovecot.git] / dovecot.init
index b193bbfdbf9af1c825f2761f44866e354db0d236..6a76990e9c823c30a602764d16f0bbf78c8892ae 100644 (file)
@@ -38,13 +38,34 @@ start() {
 stop() {
        if [ -f /var/lock/subsys/dovecot ]; then
                msg_stopping "Dovecot"
-               killproc dovecot
+               killproc --pidfile dovecot/master.pid dovecot
                rm -f /var/lock/subsys/dovecot
        else
                msg_not_running "Dovecot"
        fi
 }
 
+reload() {
+       if [ -f /var/lock/subsys/dovecot ]; then
+               msg_reloading dovecot
+               killproc --pidfile dovecot/master.pid docevot -HUP
+               RETVAL=$?
+       else
+               msg_not_running "Dovecot"
+               RETVAL=7
+       fi
+}
+
+condrestart() {
+       if [ -f /var/lock/subsys/dovecot ]; then
+               stop
+               start
+       else
+               msg_not_running "Dovecot"
+               RETVAL=$1
+       fi
+}
+
 RETVAL=0
 # See how we were called.
 case "$1" in
@@ -54,21 +75,22 @@ case "$1" in
   stop)
        stop
        ;;
-  restart|force-reload)
+  restart)
        stop
        start
        ;;
-  reload)
-       msg_reloading "Dovecot"
-       killproc dovecot -HUP
-       exit $?
+  try-restart)
+       condrestart 0
+       ;;
+  reload|force-reload)
+       reload
        ;;
   status)
        status dovecot
        exit $?
        ;;
   *)
-       msg_usage "$0 {start|stop|reload|restart|force-reload|status}"
+       msg_usage "$0 {start|stop|restart|try-restart|reload|force-reload|status}"
        exit 3
 esac
 
This page took 0.033806 seconds and 4 git commands to generate.