X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2Fupdate_sysop.pl;h=666a7d5d4fd160e5d7f284b6ce8408ec16cad2ae;hb=refs%2Fheads%2Fnew-spawn;hp=2fccbb5aee90c8aa2f46fa5c5412b933150b187d;hpb=ab811a0c902225075a9bd69749f65594079433a9;p=spider.git diff --git a/perl/update_sysop.pl b/perl/update_sysop.pl index 2fccbb5a..666a7d5d 100755 --- a/perl/update_sysop.pl +++ b/perl/update_sysop.pl @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/usr/bin/env perl # # remove all records with the sysop/cluster callsign and recreate # it from the information contained in DXVars @@ -23,7 +23,9 @@ BEGIN { } use DXVars; +use SysVar; use DXUser; +use DXUtil; sub create_it { @@ -83,7 +85,9 @@ sub create_it } -$lockfn = "$root/local/cluster.lck"; # lock file name +die "\$myalias \& \$mycall are the same ($mycall)!, they must be different (hint: make \$mycall = '${mycall}-2';).\n" if $mycall eq $myalias; + +$lockfn = "$main::local_data/cluster.lck"; # lock file name (now in local d if (-e $lockfn) { open(CLLOCK, "$lockfn") or die "Can't open Lockfile ($lockfn) $!"; my $pid = ; @@ -92,9 +96,9 @@ if (-e $lockfn) { close CLLOCK; } -DXUser->init($userfn, 1); +DXUser::init(1); create_it(); -DXUser->finish(); +DXUser::finish(); print "Update of $myalias on cluster $mycall successful\n"; exit(0);