From ee1d73d1aefd2e1a2ccda4e95a5747ecb520eb30 Mon Sep 17 00:00:00 2001 From: Kroese Date: Fri, 14 Mar 2025 18:30:33 +0100 Subject: [PATCH] Update config.sh --- src/config.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config.sh b/src/config.sh index 2653675..b1877bd 100644 --- a/src/config.sh +++ b/src/config.sh @@ -17,15 +17,15 @@ ARGS=$(echo "$ARGS" | sed 's/\t/ /g' | tr -s ' ') if [[ "$RAM_CHECK" != [Nn]* ]]; then RAM_AVAIL=$(free -b | grep -m 1 Mem: | awk '{print $7}') - AVAIL_GB=$(( RAM_AVAIL/1073741824 )) + AVAIL_MEM=$(formatBytes "$RAM_AVAIL") if (( (RAM_WANTED + RAM_SPARE) > RAM_AVAIL )); then - msg="Your configured RAM_SIZE of $WANTED_GB GB is too high for the $AVAIL_GB GB of memory available, please set a lower value." + msg="Your configured RAM_SIZE of ${RAM_SIZE/G/ GB} is too high for the $AVAIL_MEM of memory available, please set a lower value." [[ "${FS,,}" != "zfs" ]] && error "$msg" && exit 17 info "$msg" else if (( (RAM_WANTED + (RAM_SPARE * 3)) > RAM_AVAIL )); then - msg="your configured RAM_SIZE of $WANTED_GB GB is very close to the $AVAIL_GB GB of memory available, please consider a lower value." + msg="your configured RAM_SIZE of ${RAM_SIZE/G/ GB} is very close to the $AVAIL_MEM of memory available, please consider a lower value." if [[ "${FS,,}" != "zfs" ]]; then warn "$msg" else