X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2Fcreate_sysop.pl;h=7cc0335fb03bf694219f0cce76ee879cd5c90dd1;hb=4983170a282328e9458ca1c0bff3e28c4937d06c;hp=b85c60b770677b0f7cebadae00d1a2c017182b5b;hpb=c94ff1bf2cbe16ed59c5b273c7f6730fd7314cab;p=spider.git diff --git a/perl/create_sysop.pl b/perl/create_sysop.pl index b85c60b7..7cc0335f 100755 --- a/perl/create_sysop.pl +++ b/perl/create_sysop.pl @@ -19,6 +19,7 @@ BEGIN { unshift @INC, "$root/local"; } +use DXVars; use SysVar; use DXUser; use DXUtil; @@ -50,7 +51,7 @@ sub create_it $self->{annok} = 1; # write it away - $self->close(); + $self->put(); # now do one for the alias $ref = DXUser::get(uc $myalias); @@ -74,13 +75,13 @@ sub create_it $self->{group} = [qw(local #9000)]; # write it away - $self->close(); + $self->put(); } die "\$myalias \& \$mycall are the same ($mycall)!, they must be different (hint: make \$mycall = '${mycall}-2';).\n" if $mycall eq $myalias; -$lockfn = localdata("cluster.lck"); # lock file name +$lockfn = "$main::local_data/cluster.lck"; # lock file name (now in local data) if (-e $lockfn) { open(CLLOCK, "$lockfn") or die "Can't open Lockfile ($lockfn) $!"; my $pid = ; @@ -89,26 +90,26 @@ if (-e $lockfn) { close CLLOCK; } -$DXUser::v3 = 1; +$DXUser::v4 = 1; -if (-e "$userfn.v2" || -e "$userfn.v3") { +if (-e localdata("users.v4")) { print "Do you wish to destroy your user database (THINK!!!) [y/N]: "; $ans = ; if ($ans =~ /^[Yy]/) { delete_it(); - DXUser::init(1); + DXUser::init(4); create_it(); } else { print "Do you wish to reset your cluster and sysop information? [y/N]: "; $ans = ; if ($ans =~ /^[Yy]/) { - DXUser::init(1); + DXUser::init(4); create_it(); } } } else { - DXUser::init(1); + DXUser::init(4); create_it(); } DXUser::finish();