summaryrefslogtreecommitdiff
path: root/.inspircd.inc
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-10-28 18:29:40 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-10-28 18:29:40 +0000
commitdad5d5ed15bad4c5ec342c0a451c68a0900a7ecc (patch)
tree276bf5a327c88df8cef85120bcd729595a3ca824 /.inspircd.inc
parent2451bc6ba359122a72c2487b1e721c3a220faae6 (diff)
Improve ./inspircd stop [danieldg]
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10743 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to '.inspircd.inc')
-rw-r--r--.inspircd.inc25
1 files changed, 12 insertions, 13 deletions
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;
}