diff --git a/functions/check.sh b/functions/check.sh index 0c2fbe7bf..3450794b9 100644 --- a/functions/check.sh +++ b/functions/check.sh @@ -7,17 +7,8 @@ lgsm_version="170216" # Description: Overall function for managing checks. # Runs checks that will either halt on or fix an issue. -array_contains () { - local seeking=$1; shift - local in=1 - for element; do - if [ ${element} == ${seeking} ]; then - in=0 - break - fi - done - return $in -} +# Every command that requires checks just references check.sh +# check.sh selects which checks to run by using arrays check_root.sh @@ -53,9 +44,7 @@ local allowed_commands_array=( update_check.sh command_debug.sh command_start.sh for allowed_command in "${allowed_commands_array[@]}" do if [ "${allowed_command}" == "${function_selfname}" ]; then - if [ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament 2004" ]||[ "${gamename}" == "Mumble" ]||[ "${gamename}" == "Teamspeak 3" ]; then - : # These servers do not require SteamCMD. Check is skipped. - else + if [ -n "${appid}" ]; then check_steamcmd.sh fi fi diff --git a/functions/command_install.sh b/functions/command_install.sh index 77cf2d359..e14e4482e 100644 --- a/functions/command_install.sh +++ b/functions/command_install.sh @@ -4,6 +4,9 @@ # Website: http://gameservermanagers.com lgsm_version="260216" +# Description: Overall function for the installer. + + local modulename="Install" function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" diff --git a/functions/email.sh b/functions/email.sh index 66d5acba7..51b097dd9 100644 --- a/functions/email.sh +++ b/functions/email.sh @@ -55,11 +55,11 @@ fn_parms }| sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee "${scriptlogdir}/${servicename}-email.log" > /dev/null 2>&1 echo -e "\n\n Script log\n===================" >> "${emaillog}" tail -25 "${scriptlog}" >> "${emaillog}" -if [ ! -z "${consolelog}" ]; then +if [ -n "${consolelog}" ]; then echo -e "\n\n Console log\n====================" >> "${emaillog}" tail -25 "${consolelog}" | awk '{ sub("\r$", ""); print }' >> "${emaillog}" fi -if [ ! -z "${gamelogdir}" ]; then +if [ -n "${gamelogdir}" ]; then echo -e "\n\n Server log\n====================" >> "${emaillog}" tail "${gamelogdir}"/* | grep -v "==>" | sed '/^$/d' | tail -25 >> "${emaillog}" fi diff --git a/functions/fix.sh b/functions/fix.sh index 86e397ee6..e4723e649 100644 --- a/functions/fix.sh +++ b/functions/fix.sh @@ -29,7 +29,7 @@ fn_fix_msg_end(){ # Fixes that are run on start if [ "${function_selfname}" != "command_install.sh" ]; then - if [ ! -z "${appid}" ]; then + if [ -n "${appid}" ]; then fix_steamcmd.sh fi diff --git a/functions/fix_dst.sh b/functions/fix_dst.sh index feec27b14..5dadf4b78 100644 --- a/functions/fix_dst.sh +++ b/functions/fix_dst.sh @@ -4,6 +4,8 @@ # Website: http://gameservermanagers.com lgsm_version="010316" +# Description: Resolves various issues with Dont Starve together. + # Fixes: ./dontstarve_dedicated_server_nullrenderer: ./lib32/libcurl-gnutls.so.4: no version information available (required by ./dontstarve_dedicated_server_nullrenderer) # Issue only occures on CentOS as libcurl-gnutls.so.4 is called libcurl.so.4 on CentOS. if [ -f "/etc/redhat-release" ] && [ ! -f "${filesdir}/bin/lib32/libcurl-gnutls.so.4" ]; then diff --git a/functions/fix_ro.sh b/functions/fix_ro.sh index a7c703e1a..18ceeb433 100644 --- a/functions/fix_ro.sh +++ b/functions/fix_ro.sh @@ -4,6 +4,8 @@ # Website: http://gameservermanagers.com lgsm_version="010316" +# Description: Resolves various issues with red orchestra. + echo "Applying WebAdmin ROOst.css fix." echo "http://forums.tripwireinteractive.com/showpost.php?p=585435&postcount=13" sed -i 's/none}/none;/g' "${filesdir}/Web/ServerAdmin/ROOst.css" diff --git a/functions/fix_steamcmd.sh b/functions/fix_steamcmd.sh index 46f52e4c8..86feb9e2c 100644 --- a/functions/fix_steamcmd.sh +++ b/functions/fix_steamcmd.sh @@ -26,7 +26,6 @@ if [ "${gamename}" == "Serious Sam 3: BFE" ]; then fi elif [ "${gamename}" == "Hurtworld" ]; then # Fixes: [S_API FAIL] SteamAPI_Init() failed; unable to locate a running instance of Steam, or a local steamclient.so. - if [ ! -f "${filesdir}/Hurtworld_Data/Plugins/x86/steamclient.so" ]; then fixname="steamclient.so x86" fn_fix_msg_start diff --git a/functions/fix_ut2k4.sh b/functions/fix_ut2k4.sh index eff67a12c..363aa5d56 100644 --- a/functions/fix_ut2k4.sh +++ b/functions/fix_ut2k4.sh @@ -4,6 +4,8 @@ # Website: http://gameservermanagers.com lgsm_version="010316" +# Description: Resolves various issues with unreal tournament 2004. + echo "applying WebAdmin ut2003.css fix." echo "http://forums.tripwireinteractive.com/showpost.php?p=585435&postcount=13" sed -i 's/none}/none;/g' "${filesdir}/Web/ServerAdmin/ut2003.css"