X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2Fcreate_sysop.pl;h=22b64d71ee6f277c94a76d8da77f9137941789ee;hb=6bcb0688c4d31920dcfd84b7dd5d2a8b4e2c856a;hp=40fc6f05314392a1a38c794fcb269d801f76a3b5;hpb=fd0a34c34ad4112ee21e0730f7307498ff437e18;p=spider.git diff --git a/perl/create_sysop.pl b/perl/create_sysop.pl index 40fc6f05..22b64d71 100755 --- a/perl/create_sysop.pl +++ b/perl/create_sysop.pl @@ -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,12 +70,15 @@ sub create_it $self->{dxok} = 1; $self->{annok} = 1; $self->{lang} = 'en'; + $self->{group} = [qw(local #9000)]; # write it away $self->close(); } +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) $!";