X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshutdown.pl;h=4ee21ebade351aae062ff0b6029a6727d1f2a589;hb=fe40d951b9d78262b2c3be192ad3986fa4164bcf;hp=c2350de0f197df34f70f58fe51d4173f5be72650;hpb=b060a0a3ee72530aa3f10d453186a662b66d7efe;p=spider.git diff --git a/cmd/shutdown.pl b/cmd/shutdown.pl index c2350de0..4ee21eba 100644 --- a/cmd/shutdown.pl +++ b/cmd/shutdown.pl @@ -6,15 +6,14 @@ my $self = shift; my $call = $self->call; my $ref; - -if ($self->priv >= 5) { - 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 (1, $self->msg('e5')) unless $self->priv >= 5; +foreach $ref (DXChannel::get_all()) { + $ref->send_now("D", DXProt::pc39($main::mycall, "Shutdown by $call")) if $ref->is_node && $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 (1);