]> andersk Git - moira.git/commitdiff
Fixed setquota and a syntax error
authorqjb <qjb>
Mon, 22 Aug 1988 14:46:14 +0000 (14:46 +0000)
committerqjb <qjb>
Mon, 22 Aug 1988 14:46:14 +0000 (14:46 +0000)
gen/install_quotas

index c91953f470a58840c5fd0e334e210ae9c3db5d52..1825315bc64e9ff9999f1c8a7d7281d8cdadaa23 100644 (file)
@@ -14,11 +14,10 @@ if ( -f /etc/enforce_quota ) then
  
       if (${#args} != 2) break
 
-      set uid = args[1]
-      set quota = args[2]
+      set uid = $args[1]
+      set quota = $args[2]
 
-      setquota -u $dev $uid $quota
-      if ($status) ### Soft failure
+      setquota $dev $uid $quota
    end
 endif
 
This page took 0.039997 seconds and 5 git commands to generate.