mirror of
https://github.com/myvesta/vesta
synced 2025-08-14 02:28:05 -07:00
Actuall quota size was 10 times lesser. Fixes #152.
This commit is contained in:
parent
9b5ed17d3c
commit
c1d3e564df
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue