]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - .inspircd.inc
Revert "Remove user no longer being watched, not the quitting one. Fix from Szymek...
[user/henk/code/inspircd.git] / .inspircd.inc
index b09ffb386ea6544ed94a442732225e18c3384f43..76e7248c192a31e72d0d8fe22ed32e1b4123af44 100644 (file)
@@ -3,14 +3,14 @@
 #       | Inspire Internet Relay Chat Daemon |
 #       +------------------------------------+
 #
-#      (C) 2002-2008 InspIRCd Development Team
-#   http://www.inspircd.org/wiki/index.php/Credits
+#  InspIRCd: (C) 2002-2008 InspIRCd Development Team
+# See: http://www.inspircd.org/wiki/index.php/Credits
 #
-# Written by Craig Edwards, Craig McLure, and others.
 # This program is free but copyrighted software; see
-#            the file COPYING for details.
+#          the file COPYING for details.
 #
 # ---------------------------------------------------
+#
 use POSIX;
 
 my $basepath   =       "@BASE_DIR@";
@@ -214,16 +214,17 @@ sub stop {
        # Get to here, we have something to kill.
        my $pid = getprocessid();
        print "Stopping InspIRCd (pid: $pid)...\n";
-       system("kill -TERM $pid >/dev/null 2>&1");
-       # Give it twenty seconds to exit, otherwise valgrind can't write out all output before being killed -9
-       # TODO make this a variable number based on if it's valgrind or normal start.
-       sleep(20);
-       if (getstatus() == 1)
-       {
-               print "InspIRCd not dying quietly -- forcing kill\n";
-               system("kill -9 $pid >/dev/null 2>&1");
+       my $maxwait = (`ps -o command $pid` =~ /valgrind/i) ? 30 : 5;
+       kill TERM => $pid;
+       for (1..$maxwait) {
+               sleep 1;
+               if (getstatus() == 1) {
+                       print "InspIRCd Stopped.\n";
+                       return;
+               }
        }
-       print "InspIRCd Stopped.\n";
+       print "InspIRCd not dying quietly -- forcing kill\n";
+       kill KILL => $pid;
 }
 
 # GetPidfile Version 2 - Now With Include Support..
@@ -303,10 +304,8 @@ sub getpidfile {
 
 sub getstatus {
        my $pid = getprocessid();
-       if ($pid == 0) { return 0; }
-       $status = system("kill -0 $pid >/dev/null 2>&1") / 256;
-       if ($status == 0) { return 1; }
-       else { return 0; }
+       return 0 if $pid == 0;
+       return kill 0, $pid;
 }