]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Improve ./inspircd stop [danieldg]
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>
Tue, 28 Oct 2008 18:29:40 +0000 (18:29 +0000)
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>
Tue, 28 Oct 2008 18:29:40 +0000 (18:29 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10743 e03df62e-2008-0410-955e-edbf42e46eb7

.inspircd.inc

index b09ffb386ea6544ed94a442732225e18c3384f43..810a3a70d69fb43d3c25fdd637373f4092dfa00a 100644 (file)
@@ -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;
 }