use #!/usr/bin/env rather than /bin/env
[spider.git] / perl / create_sysop.pl
index c0ac9e3afc7d8557803a71fc146e65a72fc09349..31c208b0381379b6386bd578b3a3c83cb5c42332 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/perl
+#!/usr/bin/env perl
 #
 # create a NEW user database and the sysop record
 #
@@ -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";
 }
 
@@ -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) $!";