]> andersk Git - moira.git/commitdiff
change owners of lists and list descriptions at request of grouper team
authorzacheiss <zacheiss>
Mon, 5 Jun 2000 01:48:20 +0000 (01:48 +0000)
committerzacheiss <zacheiss>
Mon, 5 Jun 2000 01:48:20 +0000 (01:48 +0000)
regtape/grouper.pl

index 57d89f2fa1f980914ec260620796a74cce5df823..acf0610485f2c6deef80f75c35950c01213d34f3 100755 (executable)
@@ -58,16 +58,20 @@ foreach $class (@$classes) {
      $base = "\L$term-$class";
      $staff = "$base-staff";
 
-     # check_list(name, owner, export, parent, desc)
-
-     &check_list($base, "registrar", 1, "",
-               "Automatically-created class participants list for $class");
-     &check_list("$base-reg", "registrar", 0, $base,
-               "Automatically-generated registered students list for $class");
-     &check_list($staff, $staff, 0, $base,
-               "Automatically-created teaching staff list for $class");
-     &check_list("$base-others", $staff, 0, $base,
-               "Automatically-created non-registered students and miscellaneous people list for $class");
+     # check_list(name, owner, export, desc)
+     &check_list($staff, $staff, 0, 
+                "Teaching staff list for $class");
+     &check_list("$base-reg", $staff, 0,
+                "*** DO NOT MODIFY *** Automatically-created registered students list for $class");
+     &check_list("$base-others", $staff, 0,
+                "Non-registered students and miscellaneous people list for $class");
+     &check_list($base, $staff, 1,
+                "*** DO NOT MODIFY *** Automatically-created participants list for $class");
+     if (!$lists{$base}) {
+        &add_member($staff, LIST, $base);
+        &add_member("$base-reg", LIST, $base);
+        &add_member("$base-others", LIST, $base);
+     }
 }
 
 # Now fill in -reg lists
@@ -128,13 +132,10 @@ $warehouse->disconnect;
 exit 0;
 
 sub check_list {
-    my ( $name, $owner, $export, $parent, $desc ) = @_;
+    my ( $name, $owner, $export, $desc ) = @_;
     if (!$lists{$name}) {
        print LOG "Creating $name\n";
        print MRTEST "qy alis $name 1 0 1 $export $export \"create unique GID\" 0 LIST $owner \"$desc\"\n";
-        if ($parent) {
-           &add_member($name, LIST, $parent);
-       }
     }
 }
 
This page took 0.215451 seconds and 5 git commands to generate.