release 1.5
[spider.git] / cmd / shutdown.pl
index 43b6fb7531a24887dea609cb7f39a7fc095e9dfa..c2350de0f197df34f70f58fe51d4173f5be72650 100644 (file)
@@ -4,7 +4,17 @@
 # $Id$
 #
 my $self = shift;
+my $call = $self->call;
+my $ref;
+
 if ($self->priv >= 5) {
-  &main::cease();
+       foreach $ref (DXChannel::get_all()) {
+               $ref->send_now("D", DXProt::pc39($main::mycall, "Shutdown by $call")) 
+                       if $ref->is_ak1a  && $ref != $DXProt::me; 
+               $ref->send_now("D", $self->msg('shutting')) if $ref->is_user;
+       }
+    
+    # give some time for the buffers to empty and then shutdown (see cluster.pl)
+       $main::decease = 250;
 }
-return (0);
+return (1);