Browse Source
* improvements to steamclient.so fix * added fix to install inconsistent location across distros * added dev/null for master server * XDG_DATA_HOME * prevent check_last_update from restarting server if stoppedpull/2836/head
committed by
GitHub
27 changed files with 164 additions and 90 deletions
@ -0,0 +1,33 @@ |
|||
#!/bin/bash |
|||
# LinuxGSM fix_hw.sh function |
|||
# Author: Daniel Gibbs |
|||
# Website: https://linuxgsm.com |
|||
# Description: Resolves various issues with Hurtworld. |
|||
|
|||
if [ "${shortname}" == "hw" ]; then |
|||
# Fixes: [S_API FAIL] SteamAPI_Init() failed; unable to locate a running instance of Steam, or a local steamclient.so. |
|||
if [ ! -f "${serverfiles}/Hurtworld_Data/Plugins/x86/steamclient.so" ]; then |
|||
fixname="steamclient.so x86" |
|||
fn_fix_msg_start |
|||
if [ -f "${HOME}/.steam/steamcmd/linux32/steamclient.so" ]; then |
|||
cp -v "${HOME}/.steam/steamcmd/linux32/steamclient.so" "${serverfiles}/Hurtworld_Data/Plugins/x86/steamclient.so" >> "${lgsmlog}" |
|||
elif [ -f "${steamcmddir}/linux32/steamclient.so" ]; then |
|||
cp -v "${steamcmddir}/linux32/steamclient.so" "${serverfiles}/Hurtworld_Data/Plugins/x86/steamclient.so" >> "${lgsmlog}" |
|||
else |
|||
: |
|||
fi |
|||
fn_fix_msg_end |
|||
fi |
|||
if [ ! -f "${serverfiles}/Hurtworld_Data/Plugins/x86_64/steamclient.so" ]; then |
|||
fixname="steamclient.so x86_64" |
|||
fn_fix_msg_start |
|||
if [ -f "${HOME}/.steam/steamcmd/linux64/steamclient.so" ]; then |
|||
cp -v "${HOME}/.steam/steamcmd/linux64/steamclient.so" "${serverfiles}/Hurtworld_Data/Plugins/x86_64/steamclient.so" >> "${lgsmlog}" |
|||
elif [ -f "${steamcmddir}/linux64/steamclient.so" ]; then |
|||
cp -v "${steamcmddir}/linux64/steamclient.so" "${serverfiles}/Hurtworld_Data/Plugins/x86_64/steamclient.so" >> "${lgsmlog}" |
|||
else |
|||
: |
|||
fi |
|||
fn_fix_msg_end |
|||
fi |
|||
fi |
@ -0,0 +1,15 @@ |
|||
#!/bin/bash |
|||
# LinuxGSM fix_tu.sh function |
|||
# Author: Daniel Gibbs |
|||
# Website: https://linuxgsm.com |
|||
# Description: Resolves various issues with Tower Unite. |
|||
|
|||
if [ "${shortname}" == "tu" ]; then |
|||
# Fixes: [S_API FAIL] SteamAPI_Init() failed; unable to locate a running instance of Steam, or a local steamclient.so. |
|||
if [ ! -f "${executabledir}/steamclient.so" ]; then |
|||
fixname="steamclient.so" |
|||
fn_fix_msg_start |
|||
cp -v "${serverfiles}/linux64/steamclient.so" "${executabledir}/steamclient.so" >> "${lgsmlog}" |
|||
fn_fix_msg_end |
|||
fi |
|||
fi |
Loading…
Reference in new issue