fix localdata with correct paths
[spider.git] / perl / update_sysop.pl
index 6700b98ff18c1728bae75427dfc0d350729b3cda..613e91f0bc35f9602846463d0a14624c648e8a4b 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/perl
+#!/usr/bin/env perl
 #
 # remove all records with the sysop/cluster callsign and recreate
 # it from the information contained in DXVars
@@ -23,7 +23,9 @@ BEGIN {
 }
 
 use DXVars;
+use SysVar;
 use DXUser;
+use DXUtil;
 
 sub create_it
 {
@@ -85,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 = "$root/local/cluster.lck";       # lock file name
+$lockfn = localdata("cluster.lck");       # lock file name
 if (-e $lockfn) {
        open(CLLOCK, "$lockfn") or die "Can't open Lockfile ($lockfn) $!";
        my $pid = <CLLOCK>;
@@ -94,9 +96,9 @@ if (-e $lockfn) {
        close CLLOCK;
 }
 
-DXUser->init($userfn, 1);
+DXUser::init(1);
 create_it();
-DXUser->finish();
+DXUser:finish();
 print "Update of $myalias on cluster $mycall successful\n";
 exit(0);