add logging of PC92A ip addresses
[spider.git] / perl / create_sysop.pl
index fbfc776481c3b65a92e1f656706a12253fc68831..22b64d71ee6f277c94a76d8da77f9137941789ee 100755 (executable)
@@ -6,7 +6,7 @@
 #
 # Copyright (c) 1998 Dirk Koopman G1TLH
 #
-# $Id$
+#
 # 
 
 # make sure that modules are searched in the order local then perl
@@ -15,6 +15,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";
 }
 
@@ -28,7 +29,7 @@ sub delete_it
 
 sub create_it
 {
-       my $ref = DXUser->get(uc $mycall);
+       my $ref = DXUser::get(uc $mycall);
        $ref->del() if $ref;
        
        my $self = DXUser->new(uc $mycall);
@@ -51,7 +52,7 @@ sub create_it
        $self->close();
 
        # now do one for the alias
-       $ref = DXUser->get(uc $myalias);
+       $ref = DXUser::get(uc $myalias);
        $ref->del() if $ref;
 
        $self = DXUser->new(uc $myalias);
@@ -69,13 +70,16 @@ sub create_it
        $self->{dxok} = 1;
        $self->{annok} = 1;
        $self->{lang} = 'en';
+       $self->{group} = [qw(local #9000)];
   
        # write it away
        $self->close();
 
 }
 
-$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 = "$root/local/cluster.lck";       # lock file name
 if (-e $lockfn) {
        open(CLLOCK, "$lockfn") or die "Can't open Lockfile ($lockfn) $!";
        my $pid = <CLLOCK>;
@@ -84,7 +88,9 @@ if (-e $lockfn) {
        close CLLOCK;
 }
 
-if (-e "$userfn") {
+$DXUser::v3 = 1;
+
+if (-e "$userfn.v2" || -e "$userfn.v3") {
        print "Do you wish to destroy your user database (THINK!!!) [y/N]: ";
        $ans = <STDIN>;
        if ($ans =~ /^[Yy]/) {