diff --git a/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg b/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg index 117de44c4..6878001df 100644 --- a/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg @@ -101,9 +101,15 @@ engine="unity3d" ## Server Specific Directories systemdir="${serverfiles}" executabledir="${serverfiles}" -executable="./7DaysToDieServer.x86" -servercfg="${servicename}.xml" +if [ "$(uname -m)" == "x86_64" ]; then + executable="./7DaysToDieServer.x86_64" +else + executable="./7DaysToDieServer.x86" +fi servercfgdefault="serverconfig.xml" +servercfgdirdefault="${serverfiles}" +servercfgfullpathdefault="${servercfgdirdefault}/${servercfgdefault}" +servercfg="${servicename}.xml" servercfgdir="${serverfiles}" servercfgfullpath="${servercfgdir}/${servercfg}" diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index 614b70817..bde5e1f31 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -367,6 +367,11 @@ functionfile="${FUNCNAME}" fn_fetch_function } +fix_sdtd.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + fix_ss3.sh(){ functionfile="${FUNCNAME}" fn_fetch_function diff --git a/lgsm/functions/fix.sh b/lgsm/functions/fix.sh index 739a27a7c..c58e1e2d0 100644 --- a/lgsm/functions/fix.sh +++ b/lgsm/functions/fix.sh @@ -58,6 +58,8 @@ if [ "${function_selfname}" != "command_install.sh" ]&&[ -z "${fixbypass}" ]; th fix_rust.sh elif [ "${shortname}" == "rw" ]; then fix_rw.sh + elif [ "${shortname}" == "sdtd" ]; then + fix_sdtd.sh elif [ "${shortname}" == "ss3" ]; then fix_ss3.sh elif [ "${shortname}" == "ts3" ]; then diff --git a/lgsm/functions/fix_sdtd.sh b/lgsm/functions/fix_sdtd.sh new file mode 100644 index 000000000..04ac7936d --- /dev/null +++ b/lgsm/functions/fix_sdtd.sh @@ -0,0 +1,10 @@ +#!/bin/bash +# LinuxGSM fix_sdtd.sh function +# Author: Daniel Gibbs +# Website: https://linuxgsm.com +# Description: Resolves startup issue with 7 Days to Die + +local commandname="FIX" +local commandaction="Fix" + +export LD_LIBRARY_PATH="${serverfiles}" \ No newline at end of file diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index b09eff8b3..37bf42ba3 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -53,6 +53,13 @@ fn_default_config_remote(){ sleep 0.5 } +# Copys local default config to server config location +fn_default_config_local(){ + echo "copying ${servercfgdefault} config file." + cp -nv "${servercfgfullpathdefault}" "${servercfgfullpath}" + sleep 0.5 +} + # Changes some variables within the default configs # SERVERNAME to LinuxGSM # PASSWORD to random password @@ -139,10 +146,7 @@ fn_set_dst_config_vars(){ if [ "${gamename}" == "7 Days To Die" ]; then gamedirname="7DaysToDie" - array_configs+=( serverconfig.xml ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + fn_default_config_local elif [ "${gamename}" == "ARK: Survival Evolved" ]; then gamedirname="ARKSurvivalEvolved" fn_check_cfgdir