From: w00t Date: Tue, 28 Oct 2008 18:29:40 +0000 (+0000) Subject: Improve ./inspircd stop [danieldg] X-Git-Tag: v2.0.23~2369 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=dad5d5ed15bad4c5ec342c0a451c68a0900a7ecc;p=user%2Fhenk%2Fcode%2Finspircd.git Improve ./inspircd stop [danieldg] git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10743 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/.inspircd.inc b/.inspircd.inc index b09ffb386..810a3a70d 100644 --- a/.inspircd.inc +++ b/.inspircd.inc @@ -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; }