X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2Fupdate_sysop.pl;h=168ee16a9a9e9ce1c45cffe3f242b7a3952b1599;hb=601ea9fb47810209aeedef1a3041df5a916964f3;hp=f76dc7257faa71d9c10b89f380e4a7e51c8d2920;hpb=4b49fe47b37249d748f0a52fe2a778d4bc27232f;p=spider.git diff --git a/perl/update_sysop.pl b/perl/update_sysop.pl index f76dc725..168ee16a 100755 --- a/perl/update_sysop.pl +++ b/perl/update_sysop.pl @@ -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 = "$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 = ; @@ -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);