Update basic-install.sh

Increase required free bytes.
This commit is contained in:
Adam Warner 2016-02-21 20:38:05 +00:00
parent 592af80659
commit a0673c7028

View file

@ -118,7 +118,7 @@ welcomeDialogs() {
verifyFreeDiskSpace() {
# 25MB is the minimum space needed (20MB install + 5MB one day of logs.)
requiredFreeBytes=25600
requiredFreeBytes=51200
existingFreeBytes=`df -lk / 2>&1 | awk '{print $4}' | head -2 | tail -1`
if ! [[ "$existingFreeBytes" =~ ^([0-9])+$ ]]; then