git://git.exim.org
/
users
/
jgh
/
exim.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ee15e97
)
Fix kill commandline for Solaris compatibility #2
author
Todd Lyons
<tlyons@exim.org>
Thu, 18 Sep 2014 16:02:17 +0000
(09:02 -0700)
committer
Todd Lyons
<tlyons@exim.org>
Thu, 18 Sep 2014 16:02:17 +0000
(09:02 -0700)
test/runtest
patch
|
blob
|
history
diff --git
a/test/runtest
b/test/runtest
index 095b968517c2d6d39c03a7b22e9997e6262cd389..d1af19afaacab0e40d08ca3b6661ddfdc53b6bfd 100755
(executable)
--- a/
test/runtest
+++ b/
test/runtest
@@
-1752,14
+1752,14
@@
if (/^killdaemon/)
print ">> killdaemon: recovered pid $pid\n" if $debug;
if ($pid)
{
- run_system("sudo /bin/kill -
SIG
INT $pid");
+ run_system("sudo /bin/kill -INT $pid");
wait;
}
} else {
$pid = `cat $parm_cwd/spool/exim-daemon.*`;
if ($pid)
{
- run_system("sudo /bin/kill -
SIG
INT $pid");
+ run_system("sudo /bin/kill -INT $pid");
close DAEMONCMD; # Waits for process
}
}