Decrease usable space in log partition to 90% (#1648)
95 is too close to the edge because by default 5% is already reserved for super-user Signed-off-by: Andriy Moroz <c_andriym@mellanox.com>
This commit is contained in:
parent
3ed4513d65
commit
f3426e32dc
@ -57,8 +57,8 @@
|
||||
|
||||
VAR_LOG_SIZE_KB=$(df -k /var/log | sed -n 2p | awk '{ print $2 }')
|
||||
|
||||
# Limit usable space to 95% of the partition minus the reserved space for other logs
|
||||
USABLE_SPACE_KB=$(( (VAR_LOG_SIZE_KB * 95 / 100) - RESERVED_SPACE_KB))
|
||||
# Limit usable space to 90% of the partition minus the reserved space for other logs
|
||||
USABLE_SPACE_KB=$(( (VAR_LOG_SIZE_KB * 90 / 100) - RESERVED_SPACE_KB))
|
||||
|
||||
# Set our threshold so as to maintain enough space to write all logs from empty to full
|
||||
# Most likely, some logs will have non-zero size when this is called, so this errs on the side
|
||||
|
Reference in New Issue
Block a user