X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2Fcreate_sysop.pl;h=99f3e0600d7b045177fb1d934df281c9f6881fb7;hb=8d4360134b5a83741dbd77ef99a56c2f1c40db05;hp=22b64d71ee6f277c94a76d8da77f9137941789ee;hpb=535b2f643655bde03c2de4077f12557dfd2e9243;p=spider.git diff --git a/perl/create_sysop.pl b/perl/create_sysop.pl index 22b64d71..99f3e060 100755 --- a/perl/create_sysop.pl +++ b/perl/create_sysop.pl @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/usr/bin/env perl # # create a NEW user database and the sysop record # @@ -20,11 +20,13 @@ BEGIN { } use DXVars; +use SysVar; use DXUser; +use DXUtil; sub delete_it { - DXUser->del_file($userfn); + DXUser::del_file(); } sub create_it @@ -79,7 +81,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 data) if (-e $lockfn) { open(CLLOCK, "$lockfn") or die "Can't open Lockfile ($lockfn) $!"; my $pid = ; @@ -95,21 +97,21 @@ if (-e "$userfn.v2" || -e "$userfn.v3") { $ans = ; if ($ans =~ /^[Yy]/) { delete_it(); - DXUser->init($userfn, 1); + DXUser::init(1); create_it(); } else { print "Do you wish to reset your cluster and sysop information? [y/N]: "; $ans = ; if ($ans =~ /^[Yy]/) { - DXUser->init($userfn, 1); + DXUser::init(1); create_it(); } } } else { - DXUser->init($userfn, 1); + DXUser::init(1); create_it(); } -DXUser->finish(); +DXUser::finish(); exit(0);