Browse Source

adding i686 arch.

Some servers list 32-bit as either i686 or i386. I have added i686 as it
was missing
Daniel Gibbs 11 years ago
parent
commit
3c33d33f80
1 changed files with 2 additions and 2 deletions
  1. 2 2
      functions/fn_install_ts3

+ 2 - 2
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"