X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2Fcreate_sysop.pl;h=22b64d71ee6f277c94a76d8da77f9137941789ee;hb=96c0247decddd941e8a191f48536d68506aca181;hp=622bc05656052a05edb19b2c30daf5839d7fb3dc;hpb=4eef5ad5a1da19f091f3c6f1e50c60772db40a4c;p=spider.git diff --git a/perl/create_sysop.pl b/perl/create_sysop.pl index 622bc056..22b64d71 100755 --- a/perl/create_sysop.pl +++ b/perl/create_sysop.pl @@ -15,6 +15,7 @@ BEGIN { $root = "/spider"; $root = $ENV{'DXSPIDER_ROOT'} if $ENV{'DXSPIDER_ROOT'}; + unshift @INC, "$root/perl"; # this IS the right way round! unshift @INC, "$root/local"; } @@ -28,7 +29,7 @@ sub delete_it sub create_it { - my $ref = DXUser->get(uc $mycall); + my $ref = DXUser::get(uc $mycall); $ref->del() if $ref; my $self = DXUser->new(uc $mycall); @@ -51,7 +52,7 @@ sub create_it $self->close(); # now do one for the alias - $ref = DXUser->get(uc $myalias); + $ref = DXUser::get(uc $myalias); $ref->del() if $ref; $self = DXUser->new(uc $myalias); @@ -76,6 +77,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) $!";