gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
850 B
22 lines
850 B
#!/bin/bash
|
|
# LinuxGSM fix_rust.sh function
|
|
# Author: Daniel Gibbs
|
|
# Website: https://linuxgsm.com
|
|
# Description: Resolves startup issue with Unturned.
|
|
|
|
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
|
|
|
|
# copy steamclient to server dir to fix the below
|
|
if [ ! -f "${serverfiles}/steamclient.so" ]; then
|
|
fixname="steamclient.so x86_64"
|
|
fn_fix_msg_start
|
|
if [ -f "${HOME}/.steam/steamcmd/linux64/steamclient.so" ]; then
|
|
cp "${HOME}/.steam/steamcmd/linux64/steamclient.so" "${serverfiles}/steamclient.so" >> "${lgsmlog}"
|
|
elif [ -f "${steamcmddir}/linux64/steamclient.so" ]; then
|
|
cp "${steamcmddir}/linux64/steamclient.so" "${serverfiles}/steamclient.so" >> "${lgsmlog}"
|
|
fi
|
|
fn_fix_msg_end
|
|
fi
|
|
|
|
# steamclient.so: cannot open shared object file: No such file or directory
|
|
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${serverfiles}"
|
|
|