X-Git-Url: http://www.dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2Fupdate_sysop.pl;h=74d6812ab6f6749f4cc9ac6629dfdb769fc83bc7;hb=refs%2Fheads%2Fstaging;hp=613e91f0bc35f9602846463d0a14624c648e8a4b;hpb=d1daa87473f824fcae5751e2576c31265bf53544;p=spider.git diff --git a/perl/update_sysop.pl b/perl/update_sysop.pl index 613e91f0..74d6812a 100755 --- a/perl/update_sysop.pl +++ b/perl/update_sysop.pl @@ -19,6 +19,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"; } @@ -87,7 +88,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 = ; @@ -98,7 +99,7 @@ if (-e $lockfn) { DXUser::init(1); create_it(); -DXUser:finish(); +DXUser::finish(); print "Update of $myalias on cluster $mycall successful\n"; exit(0);