put dx.pl into an explicit handle sub
[spider.git] / perl / update_sysop.pl
index e7225c7c3c65ba49574426e2d58859a9dc863c17..666a7d5d4fd160e5d7f284b6ce8408ec16cad2ae 100755 (executable)
@@ -22,6 +22,7 @@ BEGIN {
        unshift @INC, "$root/local";
 }
 
+use DXVars;
 use SysVar;
 use DXUser;
 use DXUtil;
@@ -86,7 +87,7 @@ 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 = localdata("cluster.lck");       # lock file name
+$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 = <CLLOCK>;
@@ -97,7 +98,7 @@ if (-e $lockfn) {
 
 DXUser::init(1);
 create_it();
-DXUser:finish();
+DXUser::finish();
 print "Update of $myalias on cluster $mycall successful\n";
 exit(0);