while "CTRL+C" trying to kill the plugin process,SIGINT is blocked, use SIGTERM instead

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@14540 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
immarvin 2012-12-04 13:22:38 +00:00
parent 2a88fc4d1d
commit 70257d7acd

View File

@ -1988,7 +1988,7 @@ sub relay_fds { #Relays file descriptors from pipes to children to the SSL socke
print "Aborting...";
foreach (keys %plugin_children) {
print "Sending INT to $_\n";
kill 2, $_;
kill 15, $_;
}
foreach my $cin ($fds->handles) {
print $cin "die\n";