Skip to content

Commit c1d3e56

Browse files
committed
Actuall quota size was 10 times lesser. Fixes hestiacp#152.
1 parent 9b5ed17 commit c1d3e56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/v-update-user-quota

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ is_object_valid 'user' 'USER' "$user"
3232

3333
# Updating disk quota
3434
soft=$(get_user_value '$DISK_QUOTA')
35-
soft=$((soft * 100))
35+
soft=$((soft * 1000))
3636
hard=$((soft + 50000))
3737

3838
mnt=$(df -P /home |awk '{print $6}' |tail -n1)

0 commit comments

Comments
 (0)