]> andersk Git - moira.git/commitdiff
don't release user.? parent volumes
authormar <mar>
Fri, 27 Aug 1993 15:31:55 +0000 (15:31 +0000)
committermar <mar>
Fri, 27 Aug 1993 15:31:55 +0000 (15:31 +0000)
incremental/afs_create.pl

index f5921515ffd1449cd88786f076337b8b08c85c72..16ae92da1b7c1d263df106624887df8265523fa1 100644 (file)
@@ -66,8 +66,10 @@ chop($_ = <FS>);
 close(FS);
 &fatal("Can't get information about $p") if ($?);
 @tmp = (split(/ /,$_));
-system("$vos release $tmp[$#tmp] -cell $cell >/dev/null") &&
-    &fatal("Can't release $tmp[$#tmp] in cell $cell");
+if ($tmp[$#tmp] !~ /user\../) {
+    system("$vos release $tmp[$#tmp] -cell $cell >/dev/null") &&
+       &fatal("Can't release $tmp[$#tmp] in cell $cell");
+}
 
 &afs_quota_adj($cell,$asrv,$apart,$quota);
 exit(0);
This page took 0.062603 seconds and 5 git commands to generate.