From 7e70bc308bd4e334fb6f1a1015408d73f7ef1189 Mon Sep 17 00:00:00 2001 From: brschroeder Date: Tue, 4 Dec 2018 09:22:06 -0800 Subject: [PATCH] remove 32-bit as supported architecture, Ubuntu 18.04 only available in 64 bit --- setup/preflight.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup/preflight.sh b/setup/preflight.sh index d087efe2..baa4bdae 100644 --- a/setup/preflight.sh +++ b/setup/preflight.sh @@ -53,13 +53,13 @@ if [ -e ~/.wgetrc ]; then exit fi -# Check that we are running on x86_64 or i686 architecture, which are the only -# ones we support / test. +# Check that we are running on x86_64 architecture, it is the only one +# we support / test. As of Ubuntu 18.04, a 32-bit version is no longer available. ARCHITECTURE=$(uname -m) -if [ "$ARCHITECTURE" != "x86_64" ] && [ "$ARCHITECTURE" != "i686" ]; then +if [ "$ARCHITECTURE" != "x86_64" ]; then echo echo "WARNING:" - echo "Mail-in-a-Box has only been tested on x86_64 and i686 platform" + echo "Mail-in-a-Box has only been tested on x86_64 platform" echo "architectures. Your architecture, $ARCHITECTURE, may not work." echo "You are on your own." echo