X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2Fupdate_sysop.pl;h=6700b98ff18c1728bae75427dfc0d350729b3cda;hb=refs%2Fheads%2Fip_address;hp=cec9f56ec04757c7e32e70f7dbed105d28f26b80;hpb=4eef5ad5a1da19f091f3c6f1e50c60772db40a4c;p=spider.git diff --git a/perl/update_sysop.pl b/perl/update_sysop.pl index cec9f56e..6700b98f 100755 --- a/perl/update_sysop.pl +++ b/perl/update_sysop.pl @@ -29,7 +29,7 @@ sub create_it { my $ref; - while ($ref = DXUser->get(uc $mycall)) { + while ($ref = DXUser::get(uc $mycall)) { print "old call $mycall deleted\n"; $ref->del(); } @@ -55,7 +55,7 @@ sub create_it print "new call $mycall added\n"; # now do one for the alias - while ($ref = DXUser->get($myalias)) { + while ($ref = DXUser::get($myalias)) { print "old call $myalias deleted\n"; $ref->del(); } @@ -83,6 +83,8 @@ sub create_it } +die "\$myalias \& \$mycall are the same ($mycall)!, they must be different (hint: make \$mycall = '${mycall}-2';).\n" if $mycall eq $myalias; + $lockfn = "$root/local/cluster.lck"; # lock file name if (-e $lockfn) { open(CLLOCK, "$lockfn") or die "Can't open Lockfile ($lockfn) $!";