]> git.pld-linux.org Git - packages/dovecot.git/blobdiff - dovecot.init
- rel 4; run ldconfig in -libs
[packages/dovecot.git] / dovecot.init
index 4e1a0299a7a3f8c0e14d16f4ce8a0de00cf1ec2c..6a76990e9c823c30a602764d16f0bbf78c8892ae 100644 (file)
@@ -23,10 +23,7 @@ else
        exit 0
 fi
 
-RETVAL=0
-# See how we were called.
-case "$1" in
-  start)
+start() {
        # Check if the service is already running?
        if [ ! -f /var/lock/subsys/dovecot ]; then
                msg_starting "Dovecot"
@@ -35,29 +32,65 @@ case "$1" in
                [ $RETVAL -eq 0 ] && touch /var/lock/subsys/dovecot
        else
                msg_already_running "Dovecot"
-               exit 1
        fi
-       ;;
-  stop)
-       if [ -f /var/lock/subsys/dovecot ]; then
+}
+
+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
+  start)
+       start
+       ;;
+  stop)
+       stop
        ;;
   restart)
-       $0 stop
-       $0 start
-       exit $?
+       stop
+       start
+       ;;
+  try-restart)
+       condrestart 0
+       ;;
+  reload|force-reload)
+       reload
        ;;
   status)
        status dovecot
        exit $?
        ;;
   *)
-       msg_usage "$0 {start|stop|restart|force-reload|status}"
+       msg_usage "$0 {start|stop|restart|try-restart|reload|force-reload|status}"
        exit 3
 esac
 
This page took 0.031349 seconds and 4 git commands to generate.