X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2Fcreate_sysop.pl;h=c0ac9e3afc7d8557803a71fc146e65a72fc09349;hb=ab811a0c902225075a9bd69749f65594079433a9;hp=11673e3146f55694f654bd1b7771811e779d1fcf;hpb=83e360f5c54444dc63a14de5124ad0a78624bf5a;p=spider.git diff --git a/perl/create_sysop.pl b/perl/create_sysop.pl index 11673e31..c0ac9e3a 100755 --- a/perl/create_sysop.pl +++ b/perl/create_sysop.pl @@ -6,7 +6,7 @@ # # Copyright (c) 1998 Dirk Koopman G1TLH # -# $Id$ +# # # make sure that modules are searched in the order local then perl @@ -28,7 +28,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 +51,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,6 +69,7 @@ sub create_it $self->{dxok} = 1; $self->{annok} = 1; $self->{lang} = 'en'; + $self->{group} = [qw(local #9000)]; # write it away $self->close(); @@ -84,7 +85,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 = ; if ($ans =~ /^[Yy]/) {