Update basic-install.sh

Fixes #603
This commit is contained in:
CDeeRON 2016-07-30 20:16:15 -04:00 committed by GitHub
parent ba6881d685
commit 509afe1e1f

View file

@ -158,7 +158,7 @@ verifyFreeDiskSpace() {
# 50MB is the minimum space needed (45MB install (includes web admin bootstrap/jquery libraries etc) + 5MB one day of logs.)
requiredFreeBytes=51200
existingFreeBytes=$(df -lk / 2>&1 | awk '{print $4}' | head -2 | tail -1)
existingFreeBytes=$(df -k / 2>&1 | awk '{print $4}' | head -2 | tail -1)
if ! [[ "$existingFreeBytes" =~ ^([0-9])+$ ]]; then
existingFreeBytes=$(df -lk /dev 2>&1 | awk '{print $4}' | head -2 | tail -1)
fi