]> git.etc.gen.nz Git - spong.git/commitdiff
Disabled --kill until runaway issues are fixed.
authorStephen L Johnson <sjohnson@monsters.org>
Wed, 29 Jan 2003 22:47:57 +0000 (22:47 +0000)
committerStephen L Johnson <sjohnson@monsters.org>
Wed, 29 Jan 2003 22:47:57 +0000 (22:47 +0000)
src/spong-network.pl

index 58eff5a0e7438611192aad32e8d9d1069d80cf2b..68267a7afbd5d397c7d72553daf1e746a84bae68 100755 (executable)
@@ -17,7 +17,7 @@
 # (2) Converted checks to new plugin mechanism (Stephen Johnson May 28, 1999)
 #     Added user-configurable escalation mechanism
 #
-# $Id: spong-network.pl,v 1.45 2002/10/31 22:14:27 sljohnson Exp $
+# $Id: spong-network.pl,v 1.46 2003/01/29 22:47:57 sljohnson Exp $
 
 use Carp;
 use lib "@@LIBDIR@@";
@@ -62,11 +62,6 @@ $HOST       =~ tr/A-Z/a-z/;
 &init_logging();      # Initialize logging contexts
 
 
-
-
-
-
-
 # signal the current server is asked
 if ( $restart || $kill ) { 
    handle_signals();
@@ -540,12 +535,18 @@ sub handle_signals {
       close PID;
       
       if( $restart ) { 
-        &debug( "telling pid $pid to restart" ); kill( 'HUP', $pid ); }
+#       &debug( "telling pid $pid to restart" ); kill( 'HUP', $pid ); }
+         print qq{
+--restart has been disabled due to a runaway process spawning problem.
+Please use --kill to stop and restart spong-network.
+};
+         }
+
       if( $kill ) { 
         &debug( "telling pid $pid to die" ); kill( 'QUIT', $pid );}
       
    } else {
-      debug("Can't find instance of spong-network running");
+      print ("Can't find instance of spong-network running\n");
    }
 
 }