add an RBN line to progress
[spider.git] / perl / update_sysop.pl
index 168ee16a9a9e9ce1c45cffe3f242b7a3952b1599..c77d012c0607f23fb93a006091c0de49ec4ef372 100755 (executable)
@@ -19,6 +19,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";
 }
 
@@ -53,7 +54,7 @@ sub create_it
        $self->{annok} = 1;
 
        # write it away
-       $self->close();
+       $self->put();
        print "new call $mycall added\n";
 
        # now do one for the alias
@@ -80,7 +81,7 @@ sub create_it
        $self->{group} = [qw(local #9000)];
   
        # write it away
-       $self->close();
+       $self->put();
        print "new call $myalias added\n";
 
 }
@@ -96,9 +97,9 @@ if (-e $lockfn) {
        close CLLOCK;
 }
 
-DXUser::init(1);
+DXUser::init(4);
 create_it();
-DXUser:finish();
+DXUser::finish();
 print "Update of $myalias on cluster $mycall successful\n";
 exit(0);