From ea9af9ac4afbb50b8efef1b4d890eb3a2ce3b92c Mon Sep 17 00:00:00 2001 From: AiutoPcAmico <98831402+AiutoPcAmico@users.noreply.github.com> Date: Fri, 29 Dec 2023 11:43:09 +0100 Subject: [PATCH] Fixed typo --- setup/preflight.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/setup/preflight.sh b/setup/preflight.sh index 018d1696..9cc734cd 100644 --- a/setup/preflight.sh +++ b/setup/preflight.sh @@ -8,14 +8,14 @@ if [[ $EUID -ne 0 ]]; then fi # Check that we are running on Ubuntu 20.04 LTS (or 20.04.xx). - if [ "$( lsb_release --id --short )" != "Debian" ] || [ "$( lsb_release --release --short )" != "12" ]; then +if [ "$(lsb_release --id --short)" != "Debian" ] || [ "$(lsb_release --release --short)" != "12" ]; then echo "Debian Mail-in-a-Box only supports being installed on Debian 12, sorry. You are running:" echo lsb_release --description --short echo echo "We can't write scripts that run on every possible setup, sorry." exit 1 - fi + fi # Check that we have enough memory. @@ -28,13 +28,13 @@ fi # Skip the check if we appear to be running inside of Vagrant, because that's really just for testing. TOTAL_PHYSICAL_MEM=$(head -n 1 /proc/meminfo | awk '{print $2}') if [ $TOTAL_PHYSICAL_MEM -lt 400000 ]; then -if [ ! -d /vagrant ]; then - TOTAL_PHYSICAL_MEM=$(expr \( \( $TOTAL_PHYSICAL_MEM \* 1024 \) / 1000 \) / 1000) - echo "Your Mail-in-a-Box needs more memory (RAM) to function properly." - echo "Please provision a machine with at least 512 MB, 1 GB recommended." - echo "This machine has $TOTAL_PHYSICAL_MEM MB memory." - exit -fi + if [ ! -d /vagrant ]; then + TOTAL_PHYSICAL_MEM=$(expr \( \( $TOTAL_PHYSICAL_MEM \* 1024 \) / 1000 \) / 1000) + echo "Your Mail-in-a-Box needs more memory (RAM) to function properly." + echo "Please provision a machine with at least 512 MB, 1 GB recommended." + echo "This machine has $TOTAL_PHYSICAL_MEM MB memory." + exit + fi fi if [ $TOTAL_PHYSICAL_MEM -lt 750000 ]; then echo "WARNING: Your Mail-in-a-Box has less than 768 MB of memory."