]> code.citadel.org Git - citadel.git/blobdiff - citadel/debian/citadel.init
* make the citadel run directory world readable, its just our unix domain sockets...
[citadel.git] / citadel / debian / citadel.init
index 37f98d4c3696579ee4d106f832ec1ba0953d4178..2e7364e3dc7161e53136d3d1ce8b891a0af186e7 100644 (file)
@@ -9,6 +9,10 @@
 # Description:       control citadel server start at boot time
 ### END INIT INFO
 
+# uncomment this to create coredumps as described in
+# http://www.citadel.org/doku.php/faq:mastering_your_os:gdb#how.do.i.make.my.system.produce.core-files
+# ulimit -c unlimited
+
 # Author: Wilfried Goesgens <citadel@outgesourced.org>
 
 RUNDIR=/var/run/citadel
@@ -49,6 +53,7 @@ do_start()
         # for ubuntu: check our volatile dirs.
         if test ! -d $RUNDIR; then
            mkdir -p $RUNDIR
+           chmod go+rx $RUNDIR
        fi
        # Return
        #   0 if daemon has been started
@@ -73,11 +78,24 @@ do_stop()
        #   2 if daemon could not be stopped
        #   other if a failure occurred
         if $SENDCOMMAND "DOWN" >/dev/null 2>&1 ; then
+           if test ! -f "$PIDFILE"; then 
+               echo Unable to find Citserver. Not running?
+               return 1
+           fi
+           PID=`cat $PIDFILE`
            rm -f $PIDFILE
-
-           while test -S /var/run/citadel/citadel.socket; do 
+           count=0;
+           while test -S /var/run/citadel/citadel.socket -o -d /proc/$PID; do 
+               count=$(($count+1))
                sleep 1
                echo -n "."
+               if test "$count" = "10"; then
+                   kill $PID
+               fi
+               if test "$count" = "20"; then
+                   kill -9 $PID
+                   rm -rf /var/run/citadel/*
+               fi
            done
                return 0
        else
@@ -90,8 +108,13 @@ do_stop()
 # Function that sends a SIGHUP to the daemon/service
 #
 do_reload() {
-        do_stop
-        do_start
+       # Return
+       #   0 if daemon could not be restarted
+       #   1 if daemon has been restarted
+       #   other if a failure occurred
+        if $SENDCOMMAND "DOWN 1" 2>&1|grep '200 Restarting'>/dev/null ; then
+           return 1
+       fi
        return 0
 }
 
@@ -132,25 +155,18 @@ case "$1" in
            echo "Restarting $DESC" "$NAME"
        fi
 
-       do_stop
+       do_reload
 
        if test -n "$MODERN"; then
            case "$?" in
-               0|1)
-                   do_start
-                   case "$?" in
-                       0) log_end_msg 0 ;;
-                       1) log_end_msg 1 ;; # Old process is still running
-                       *) log_end_msg 1 ;; # Failed to start
-                   esac
+               0)
+                   log_end_msg 0
                    ;;
-               *)
+               1)
                # Failed to stop
                    log_end_msg 1
                    ;;
            esac
-       else
-           do_start
        fi
        ;;
   *)