From ed54e8aea07ab7ff1d0090e313b209f26a7fa3bd Mon Sep 17 00:00:00 2001 From: Todd Lyons Date: Thu, 18 Sep 2014 09:02:17 -0700 Subject: [PATCH] Fix kill commandline for Solaris compatibility #2 --- test/runtest | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/runtest b/test/runtest index 095b96851..d1af19afa 100755 --- 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 -SIGINT $pid"); + run_system("sudo /bin/kill -INT $pid"); wait; } } else { $pid = `cat $parm_cwd/spool/exim-daemon.*`; if ($pid) { - run_system("sudo /bin/kill -SIGINT $pid"); + run_system("sudo /bin/kill -INT $pid"); close DAEMONCMD; # Waits for process } } -- 2.30.2