make it more difficult to have $mycall & $myalias the same
[spider.git] / perl / create_sysop.pl
index 622bc05656052a05edb19b2c30daf5839d7fb3dc..c59358b612dea4efa99f2e44e555617c4ca83bcf 100755 (executable)
@@ -28,7 +28,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 +51,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 +76,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) $!";