Browse Source

Fix typos in v-update-user-quota

Kristan Kenney 6 years ago
parent
commit
f511e48ac3
1 changed files with 3 additions and 3 deletions
  1. 3 3
      bin/v-update-user-quota

+ 3 - 3
bin/v-update-user-quota

@@ -30,8 +30,8 @@ is_object_valid 'user' 'USER' "$user"
 #                       Action                             #
 #                       Action                             #
 #----------------------------------------------------------#
 #----------------------------------------------------------#
 
 
-# Updating disk quota
-# Had quota equals package value. Soft quota equals 90% of package value for warnings.
+# Update disk quota
+# Hard quota quals package value. Soft quota equals 90% of package value.
 quota=$(get_user_value '$DISK_QUOTA')
 quota=$(get_user_value '$DISK_QUOTA')
 soft=$(echo "$quota * 1024"|bc |cut -f 1 -d .)
 soft=$(echo "$quota * 1024"|bc |cut -f 1 -d .)
 hard=$(echo "$quota * 1024"|bc |cut -f 1 -d .)
 hard=$(echo "$quota * 1024"|bc |cut -f 1 -d .)
@@ -39,7 +39,7 @@ hard=$(echo "$quota * 1024"|bc |cut -f 1 -d .)
 # Searching home mount point
 # Searching home mount point
 mnt=$(df -P /home |awk '{print $6}' |tail -n1)
 mnt=$(df -P /home |awk '{print $6}' |tail -n1)
 
 
-# Checking unlinmited quota
+# Checking unlimited quota
 if [ "$quota" = 'unlimited' ]; then
 if [ "$quota" = 'unlimited' ]; then
     setquota $user 0 0 0 0 $mnt 2>/dev/null
     setquota $user 0 0 0 0 $mnt 2>/dev/null
 else
 else