X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2Fupdate_sysop.pl;h=74d6812ab6f6749f4cc9ac6629dfdb769fc83bc7;hb=b7dedfebf0e11a5fc3050f8a0350a45a5a680e11;hp=f7adc6dc43d51652220f9d9a35d204dfb9b8560a;hpb=14fa5913c9b5be9f55ef741236aaafbe516f64fe;p=spider.git diff --git a/perl/update_sysop.pl b/perl/update_sysop.pl index f7adc6dc..74d6812a 100755 --- a/perl/update_sysop.pl +++ b/perl/update_sysop.pl @@ -1,4 +1,4 @@ -#!/bin/env perl +#!/usr/bin/env perl # # remove all records with the sysop/cluster callsign and recreate # it from the information contained in DXVars @@ -19,11 +19,14 @@ 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"; } use DXVars; +use SysVar; use DXUser; +use DXUtil; sub create_it { @@ -85,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 = "$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 +97,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);