From b018c879889591bf284169234c7a148726770f63 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 16 Jun 2018 19:10:37 +0100 Subject: [PATCH] Added Eco and SteamCMD Glibc requirements --- lgsm/functions/info_glibc.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index 308138a25..95da8ab5e 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -54,6 +54,9 @@ elif [ "${gamename}" == "Day of Infamy" ]; then elif [ "${gamename}" == "Double Action: Boogaloo" ]; then glibcrequired="2.15" glibcfix="yes" +elif [ "${gamename}" == "Eco" ]; then + glibcrequired="NOT REQUIRED" + glibcfix="no" elif [ "${gamename}" == "Empires Mod" ]; then glibcrequired="2.15" glibcfix="yes" @@ -199,3 +202,11 @@ else glibcrequired="UNKNOWN" glibcfix="no" fi + +# Sets the SteamCMD GLIBC requirement if server requirement is less. +if [ -n "${appid}" ]; then + if [ "${glibcrequired}" = "NOT REQUIRED" ]||[ "${glibcrequired}" < "2.14" ]||[ -z "${glibcrequired}" ] ; then + glibcrequired="2.14" + glibcfix="no" + fi +fi