X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshutdown.pl;h=1a5a5663ec2d426773ce47ed713e060a687056d9;hb=86316dcf45d7cbdcd8e3f512be655242ab1701ff;hp=43b6fb7531a24887dea609cb7f39a7fc095e9dfa;hpb=6b6a8002929017b6d4217f68fa492a2d728ee1fe;p=spider.git diff --git a/cmd/shutdown.pl b/cmd/shutdown.pl index 43b6fb75..1a5a5663 100644 --- a/cmd/shutdown.pl +++ b/cmd/shutdown.pl @@ -4,7 +4,14 @@ # $Id$ # my $self = shift; -if ($self->priv >= 5) { - &main::cease(); +my $call = $self->call; +my $ref; +return (1, $self->msg('e5')) unless $self->priv >= 5; +foreach $ref (DXChannel::get_all()) { + $ref->send($self->msg('shutting')) if $ref->is_user; } -return (0); + +# give some time for the buffers to empty and then shutdown (see cluster.pl) +$main::decease = 25; + +return (1);