From d5ece9d0c4991a6026e9152556d37e6fdeedd23e Mon Sep 17 00:00:00 2001 From: Thomas Hawes Date: Wed, 22 Nov 2017 01:44:52 -0500 Subject: [PATCH] Added support for Amazon Linux in check_deps.sh by explicitly setting a version of python and libstdc++.i686 if the distroname is Amazon. In regards to issue #1368 --- lgsm/functions/check_deps.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 4ea2295bc..0804f485d 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -235,6 +235,8 @@ elif [ -n "$(command -v yum 2>/dev/null)" ]; then # LinuxGSM requirements if [ "${distroversion}" == "6" ]; then array_deps_required=( curl wget util-linux-ng python file gzip bzip2 unzip binutils bc ) + elif [[ "${distroname}" == *"Amazon Linux AMI"* ]]; then + array_deps_required=( curl wget util-linux python27 file gzip bzip2 unzip binutils bc ) else array_deps_required=( curl wget util-linux python file gzip bzip2 unzip binutils bc ) fi @@ -250,7 +252,11 @@ elif [ -n "$(command -v yum 2>/dev/null)" ]; then # All servers except ts3,mumble,multitheftauto and minecraft servers require glibc.i686 and libstdc++.i686 if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${engine}" != "lwjgl2" ]&&[ "${engine}" != "renderware" ]; then - array_deps_required+=( glibc.i686 libstdc++.i686 ) + if [[ "${distroname}" == *"Amazon Linux AMI"* ]]; then + array_deps_required+=( glibc.i686 libstdc++64.i686 ) + else + array_deps_required+=( glibc.i686 libstdc++.i686 ) + fi fi # Game Specific requirements