X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2Fupdate_sysop.pl;h=666a7d5d4fd160e5d7f284b6ce8408ec16cad2ae;hb=refs%2Fheads%2Fnew-spawn;hp=4cba9abf4c5d04c343cd24720805694ecbf73fac;hpb=5e7031a532b4df6beb475aa3e7e3f6eec29360a6;p=spider.git diff --git a/perl/update_sysop.pl b/perl/update_sysop.pl index 4cba9abf..666a7d5d 100755 --- a/perl/update_sysop.pl +++ b/perl/update_sysop.pl @@ -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 @@ -10,7 +10,7 @@ # # Copyright (c) 1998 Dirk Koopman G1TLH # -# $Id$ +# # # make sure that modules are searched in the order local then perl @@ -23,27 +23,29 @@ BEGIN { } use DXVars; +use SysVar; use DXUser; +use DXUtil; sub create_it { my $ref; - while ($ref = DXUser->get($mycall)) { + while ($ref = DXUser::get(uc $mycall)) { print "old call $mycall deleted\n"; $ref->del(); } - my $self = DXUser->new($mycall); - $self->{alias} = $myalias; + my $self = DXUser->new(uc $mycall); + $self->{alias} = uc $myalias; $self->{name} = $myname; $self->{qth} = $myqth; - $self->{qra} = $mylocator; + $self->{qra} = uc $mylocator; $self->{lat} = $mylatitude; $self->{long} = $mylongitude; $self->{email} = $myemail; $self->{bbsaddr} = $mybbsaddr; - $self->{homenode} = $mycall; + $self->{homenode} = uc $mycall; $self->{sort} = 'S'; # C - Console user, S - Spider cluster, A - AK1A, U - User, B - BBS $self->{priv} = 9; # 0 - 9 - with 9 being the highest $self->{lastin} = 0; @@ -55,26 +57,27 @@ sub create_it print "new call $mycall added\n"; # now do one for the alias - while ($ref = DXUser->get($myalias)) { + while ($ref = DXUser::get($myalias)) { print "old call $myalias deleted\n"; $ref->del(); } - $self = DXUser->new($myalias); + $self = DXUser->new(uc $myalias); $self->{name} = $myname; $self->{qth} = $myqth; - $self->{qra} = $mylocator; + $self->{qra} = uc $mylocator; $self->{lat} = $mylatitude; $self->{long} = $mylongitude; $self->{email} = $myemail; $self->{bbsaddr} = $mybbsaddr; - $self->{homenode} = $mycall; + $self->{homenode} = uc $mycall; $self->{sort} = 'U'; # C - Console user, S - Spider cluster, A - AK1A, U - User, B - BBS $self->{priv} = 9; # 0 - 9 - with 9 being the highest $self->{lastin} = 0; $self->{dxok} = 1; $self->{annok} = 1; $self->{lang} = 'en'; + $self->{group} = [qw(local #9000)]; # write it away $self->close(); @@ -82,7 +85,9 @@ sub create_it } -$lockfn = "$root/perl/cluster.lck"; # lock file name +die "\$myalias \& \$mycall are the same ($mycall)!, they must be different (hint: make \$mycall = '${mycall}-2';).\n" if $mycall eq $myalias; + +$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 = ; @@ -91,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);