From c1d3e564df6f69945171b46ec0a5db74e8cf2d44 Mon Sep 17 00:00:00 2001 From: Serghey Rodin Date: Fri, 6 Jun 2014 14:42:14 +0300 Subject: [PATCH] Actuall quota size was 10 times lesser. Fixes #152. --- bin/v-update-user-quota | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/v-update-user-quota b/bin/v-update-user-quota index 99b2e11d..f248662e 100755 --- a/bin/v-update-user-quota +++ b/bin/v-update-user-quota @@ -32,7 +32,7 @@ is_object_valid 'user' 'USER' "$user" # Updating disk quota soft=$(get_user_value '$DISK_QUOTA') -soft=$((soft * 100)) +soft=$((soft * 1000)) hard=$((soft + 50000)) mnt=$(df -P /home |awk '{print $6}' |tail -n1)