From c3c051385c6bb8e98d15632e1d4473a558369a71 Mon Sep 17 00:00:00 2001
From: Adam Warner <PromoFaux@users.noreply.github.com>
Date: Wed, 17 Feb 2016 12:42:31 +0000
Subject: [PATCH] Update basic-install.sh

Corrected mistake in previous commit
---
 automated install/basic-install.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/automated install/basic-install.sh b/automated install/basic-install.sh
index 837c3179..5850b27e 100755
--- a/automated install/basic-install.sh	
+++ b/automated install/basic-install.sh	
@@ -120,7 +120,7 @@ verifyFreeDiskSpace() {
     # 25MB is the minimum space needed (20MB install + 5MB one day of logs.)
     requiredFreeBytes=25600
 
-    existingFreeBytes=`df -lkP | awk '{print $4}' | tail -1`
+    existingFreeBytes=`df -lk | awk '{print $4}' | head -2 | tail -1`
 
     if [[ $existingFreeBytes -lt $requiredFreeBytes ]]; then
         whiptail --msgbox --backtitle "Insufficient Disk Space" --title "Insufficient Disk Space" "\nYour system appears to be low on disk space. pi-hole recomends a minimum of $requiredFreeBytes Bytes.\nYou only have $existingFreeBytes Free.\n\nIf this is a new install you may need to expand your disk.\n\nTry running:\n    'sudo raspi-config'\nChoose the 'expand file system option'\n\nAfter rebooting, run this installation again.\n\ncurl -L install.pi-hole.net | bash\n" $r $c