From 3c33d33f80789d8e34ee1b614a0657b1458c472f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 27 Jul 2015 18:24:21 +0100 Subject: [PATCH] adding i686 arch. Some servers list 32-bit as either i686 or i386. I have added i686 as it was missing --- functions/fn_install_ts3 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/fn_install_ts3 b/functions/fn_install_ts3 index 4c55bec3c..67c6d5c9d 100644 --- a/functions/fn_install_ts3 +++ b/functions/fn_install_ts3 @@ -2,13 +2,13 @@ # LGSM fn_install_ts3 function # Author: Daniel Gibbs # Website: http://gameservermanagers.com -# Version: 240515 +# Version: 270715 fn_details_distro # Gets the teamspeak server architecture if [ "${arch}" == "x86_64" ]; then ts3arch="amd64" -elif [ "${arch}" == "i386" ]; then +elif [ "${arch}" == "i386" ]||[ "${arch}" == "i686" ]; then ts3arch="x86" else fn_printfailure "${arch} is an unsupported architecture"