X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXCron.pm;h=74b65996a3e54eb4d0b2cc01ab8488a9504a7ba2;hb=2bc468970b9ad5fa455e100688cbdd6ab8885edc;hp=870c395e217ea156269ef668bc33c3c3a4c71e53;hpb=6624dcdf07d628e8d6a16fc6549edf40be25b7b2;p=spider.git diff --git a/perl/DXCron.pm b/perl/DXCron.pm index 870c395e..74b65996 100644 --- a/perl/DXCron.pm +++ b/perl/DXCron.pm @@ -26,6 +26,12 @@ $lastmin = 0; my $fn = "$main::cmd/crontab"; my $localfn = "$main::localcmd/crontab"; +use vars qw($VERSION $BRANCH); +$VERSION = sprintf( "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/ ); +$BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/ ) || 0; +$main::build += $VERSION; +$main::branch += $BRANCH; + # cron initialisation / reading in cronjobs sub init { @@ -280,13 +286,13 @@ sub rcmd return unless $noderef && $noderef->version; # send it - DXProt::addrcmd($DXProt::me, $call, $line); + DXProt::addrcmd($main::me, $call, $line); } sub run_cmd { my $line = shift; - my @in = DXCommandmode::run_cmd($DXProt::me, $line); + my @in = DXCommandmode::run_cmd($main::me, $line); dbg("cmd run: $line") if isdbg('cron'); for (@in) { s/\s*$//og;