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.
17 lines
526 B
17 lines
526 B
#!/bin/bash
|
|
# LinuxGSM fix_lo.sh function
|
|
# Author: Daniel Gibbs
|
|
# Website: https://linuxgsm.com
|
|
# Description: Resolves installation issue with Last Oasis
|
|
|
|
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
|
|
|
|
local APPID_FILE=${executabledir}/steam_appid.txt
|
|
if [ ! -f "${APPID_FILE}" ]; then
|
|
fn_print_information "adding ${APPID_FILE} to ${gamename} server."
|
|
fn_sleep_time
|
|
echo "903950" > "${APPID_FILE}"
|
|
else
|
|
fn_print_information "${APPID_FILE} already exists. No action to be taken."
|
|
fn_sleep_time
|
|
fi
|
|
|