From 3abb4d45491b654a2d6a47511a6e2e4c68397de5 Mon Sep 17 00:00:00 2001 From: Sebastian Schuck Date: Sat, 16 Dec 2017 15:27:58 +0100 Subject: [PATCH 1/2] Updated the Natural Selection 2 default config to support the new 64bit server binaries. 32bit support has been dropped. Also updated the dependency and glibc checks to support the 64bit version of spark properly. Note that ns2:combat continues to use a old 32bit fork of spark. --- .../config-lgsm/ns2server/_default.cfg | 4 ++-- lgsm/functions/check_deps.sh | 18 ++++++++++++------ lgsm/functions/info_glibc.sh | 5 ++++- 3 files changed, 18 insertions(+), 9 deletions(-) diff --git a/lgsm/config-default/config-lgsm/ns2server/_default.cfg b/lgsm/config-default/config-lgsm/ns2server/_default.cfg index b0def88d5..ab235c78b 100644 --- a/lgsm/config-default/config-lgsm/ns2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ns2server/_default.cfg @@ -109,8 +109,8 @@ engine="spark" ## Server Specific Directories systemdir="${serverfiles}" -executabledir="${serverfiles}" -executable="./server_linux32" +executabledir="${serverfiles}/x64" +executable="./server_linux" servercfgdir="${rootdir}/server1" servercfgfullpath="${servercfgdir}" modstoragedir="${servercfgdir}/Workshop" diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 4ea2295bc..80720c5fc 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -167,11 +167,14 @@ if [ -n "$(command -v dpkg-query 2>/dev/null)" ]; then # Game Specific requirements - # Spark - if [ "${engine}" == "spark" ]; then + # Natural Selection 2 + if [ "${gamename}" == "Natural Selection 2" ]; then + array_deps_required+=( speex libtbb2 ) + # NS2: Combat + elif [ "${gamename}" == "NS2: Combat" ]; then array_deps_required+=( speex:i386 libtbb2 ) # 7 Days to Die - elif [ "${gamename}" == "7 Days To Die" ]; then + elif [ "${gamename}" == "7 Days To Die" ]; then array_deps_required+=( telnet expect ) # No More Room in Hell, Counter-Strike: Source and Garry's Mod elif [ "${gamename}" == "No More Room in Hell" ]||[ "${gamename}" == "Counter-Strike: Source" ]||[ "${gamename}" == "Garry's Mod" ]; then @@ -255,11 +258,14 @@ elif [ -n "$(command -v yum 2>/dev/null)" ]; then # Game Specific requirements - # Spark - if [ "${engine}" == "spark" ]; then + # Natural Selection 2 + if [ "${gamename}" == "Natural Selection 2" ]; then + array_deps_required+=( speex libtbb2 ) + # NS2: Combat + elif [ "${gamename}" == "NS2: Combat" ]; then array_deps_required+=( speex.i686 tbb.i686 ) # 7 Days to Die - elif [ "${gamename}" == "7 Days To Die" ]; then + elif [ "${gamename}" == "7 Days To Die" ]; then array_deps_required+=( telnet expect ) # No More Room in Hell, Counter-Strike: Source and Garry's Mod elif [ "${gamename}" == "No More Room in Hell" ]||[ "${gamename}" == "Counter-Strike: Source" ]||[ "${gamename}" == "Garry's Mod" ]; then diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index a6f005c42..d043088be 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -131,7 +131,10 @@ elif [ "${engine}" == "source" ]; then elif [ "${engine}" == "goldsource" ]; then glibcrequired="2.3.4" glibcfix="no" -elif [ "${engine}" == "spark" ]; then +elif [ "${gamename}" == "Natural Selection 2" ]; then + glibcrequired="2.17" + glibcfix="yes" +elif [ "${gamename}" == "NS2: Combat" ]; then glibcrequired="2.15" glibcfix="yes" elif [ "${engine}" == "starbound" ]; then From 2c84d5766cde024162418048dca8149bee8b1572 Mon Sep 17 00:00:00 2001 From: Sebastian Schuck Date: Sat, 16 Dec 2017 16:03:39 +0100 Subject: [PATCH 2/2] Fixed that tbb lib name was wrong for centOS. --- lgsm/functions/check_deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 80720c5fc..3281eaab9 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -260,7 +260,7 @@ elif [ -n "$(command -v yum 2>/dev/null)" ]; then # Natural Selection 2 if [ "${gamename}" == "Natural Selection 2" ]; then - array_deps_required+=( speex libtbb2 ) + array_deps_required+=( speex tbb ) # NS2: Combat elif [ "${gamename}" == "NS2: Combat" ]; then array_deps_required+=( speex.i686 tbb.i686 )