From 70257d7acd6c7d251047e2d4cbb6d671affad7f0 Mon Sep 17 00:00:00 2001 From: immarvin Date: Tue, 4 Dec 2012 13:22:38 +0000 Subject: [PATCH] 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 --- xCAT-server/sbin/xcatd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/sbin/xcatd b/xCAT-server/sbin/xcatd index c9cebe0b2..444927ce3 100755 --- a/xCAT-server/sbin/xcatd +++ b/xCAT-server/sbin/xcatd @@ -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";