24 changed files with 224 additions and 180 deletions
@ -0,0 +1,42 @@ |
|||||
|
#!/bin/bash |
||||
|
# LGSM fix.sh function |
||||
|
# Author: Daniel Gibbs |
||||
|
# Website: http://gameservermanagers.com |
||||
|
lgsm_version="301215" |
||||
|
|
||||
|
# Description: Overall function for managing fixes. |
||||
|
# Runs functions that will fix an issue. |
||||
|
|
||||
|
# Fixes that are run on start |
||||
|
if [ "${function_selfname}" != "command_install.sh" ]; then |
||||
|
if [ ! -z "${appid}" ]; then |
||||
|
fix_steamcmd.sh |
||||
|
fi |
||||
|
|
||||
|
if [ "${gamename}" == "Counter Strike: Global Offensive" ]; then |
||||
|
startfix=1 |
||||
|
fix_csgo.sh |
||||
|
elif [ "${gamename}" == "Insurgency" ]; then |
||||
|
fix_ins.sh |
||||
|
elif [ "${gamename}" == "ARMA 3" ]; then |
||||
|
fix_arma3.sh |
||||
|
fi |
||||
|
fi |
||||
|
|
||||
|
# Fixes that are run on install only. |
||||
|
if [ "${function_selfname}" == "command_install.sh" ]; then |
||||
|
fix_glibc.sh |
||||
|
echo "" |
||||
|
echo "Applying ${gamename} Server Fixes" |
||||
|
echo "=================================" |
||||
|
sleep 1 |
||||
|
if [ "${gamename}" == "Killing Floor" ]; then |
||||
|
fix_kf.sh |
||||
|
elif [ "${gamename}" == "Red Orchestra: Ostfront 41-45" ]; then |
||||
|
fix_ro.sh |
||||
|
elif [ "${gamename}" == "Unreal Tournament 2004" ]; then |
||||
|
fix_ut2k4.sh |
||||
|
elif [ "${gamename}" == "Unreal Tournament 99" ]; then |
||||
|
fix_ut99.sh |
||||
|
fi |
||||
|
fi |
@ -1,11 +1,9 @@ |
|||||
#!/bin/bash |
#!/bin/bash |
||||
# LGSM install_fix_kf.sh function |
# LGSM fix_kf.sh function |
||||
# Author: Daniel Gibbs |
# Author: Daniel Gibbs |
||||
# Website: http://gameservermanagers.com |
# Website: http://gameservermanagers.com |
||||
lgsm_version="271215" |
lgsm_version="271215" |
||||
|
|
||||
echo "Applying ${gamename} Server Fixes" |
|
||||
echo "=================================" |
|
||||
echo "Applying WebAdmin ROOst.css fix." |
echo "Applying WebAdmin ROOst.css fix." |
||||
echo "http://forums.tripwireinteractive.com/showpost.php?p=585435&postcount=13" |
echo "http://forums.tripwireinteractive.com/showpost.php?p=585435&postcount=13" |
||||
sed -i 's/none}/none;/g' "${filesdir}/Web/ServerAdmin/ROOst.css" |
sed -i 's/none}/none;/g' "${filesdir}/Web/ServerAdmin/ROOst.css" |
@ -1,17 +1,15 @@ |
|||||
#!/bin/bash |
#!/bin/bash |
||||
# LGSM install_fix_ro.sh function |
# LGSM fix_ro.sh function |
||||
# Author: Daniel Gibbs |
# Author: Daniel Gibbs |
||||
# Website: http://gameservermanagers.com |
# Website: http://gameservermanagers.com |
||||
lgsm_version="271215" |
lgsm_version="271215" |
||||
|
|
||||
echo "Applying ${gamename} Server Fixes" |
echo "Applying WebAdmin ROOst.css fix." |
||||
echo "=================================" |
|
||||
echo "Applying WebAdmin ROOst.css fix!" |
|
||||
echo "http://forums.tripwireinteractive.com/showpost.php?p=585435&postcount=13" |
echo "http://forums.tripwireinteractive.com/showpost.php?p=585435&postcount=13" |
||||
sed -i 's/none}/none;/g' "${filesdir}/Web/ServerAdmin/ROOst.css" |
sed -i 's/none}/none;/g' "${filesdir}/Web/ServerAdmin/ROOst.css" |
||||
sed -i 's/underline}/underline;/g' "${filesdir}/Web/ServerAdmin/ROOst.css" |
sed -i 's/underline}/underline;/g' "${filesdir}/Web/ServerAdmin/ROOst.css" |
||||
sleep 1 |
sleep 1 |
||||
echo "Applying WebAdmin CharSet fix!" |
echo "Applying WebAdmin CharSet fix." |
||||
echo "http://forums.tripwireinteractive.com/showpost.php?p=442340&postcount=1" |
echo "http://forums.tripwireinteractive.com/showpost.php?p=442340&postcount=1" |
||||
sed -i 's/CharSet="iso-8859-1"/CharSet="utf-8"/g' "${systemdir}/uweb.int" |
sed -i 's/CharSet="iso-8859-1"/CharSet="utf-8"/g' "${systemdir}/uweb.int" |
||||
sleep 1 |
sleep 1 |
@ -0,0 +1,70 @@ |
|||||
|
#!/bin/bash |
||||
|
# LGSM fix_steamcmd.sh function |
||||
|
# Author: Daniel Gibbs |
||||
|
# Website: http://gameservermanagers.com |
||||
|
lgsm_version="301215" |
||||
|
|
||||
|
# Description: fixes various issues related to steamCMD. |
||||
|
|
||||
|
fn_msg_start(){ |
||||
|
fn_printdots "Applying ${fixname} fix: ${gamename}" |
||||
|
sleep 1 |
||||
|
fn_printinfo "Applying ${fixname} fix: ${gamename}" |
||||
|
fn_scriptlog "Applying ${fixname} fix: ${gamename}" |
||||
|
sleep 1 |
||||
|
} |
||||
|
|
||||
|
fn_msg_end(){ |
||||
|
if [ $? -ne 0 ]; then |
||||
|
fn_printfailnl "Applying ${fixname} fix: ${gamename}" |
||||
|
fn_scriptlog "Failure! Applying ${fixname} fix: ${gamename}" |
||||
|
else |
||||
|
fn_printoknl "Applying ${fixname} fix: ${gamename}" |
||||
|
fn_scriptlog "Complete! Applying ${fixname} fix: ${gamename}" |
||||
|
fi |
||||
|
} |
||||
|
|
||||
|
|
||||
|
# Fixes: [S_API FAIL] SteamAPI_Init() failed; unable to locate a running instance of Steam,or a local steamclient.so. |
||||
|
if [ ! -f "${HOME}/.steam/sdk32/steamclient.so" ]; then |
||||
|
local fixname="steamclient.so general" |
||||
|
fn_msg_start |
||||
|
mkdir -pv "${HOME}/.steam/sdk32" >> "${scriptlog}" |
||||
|
cp -v "${rootdir}/steamcmd/linux32/steamclient.so" "${HOME}/.steam/sdk32/steamclient.so" >> "${scriptlog}" |
||||
|
fn_msg_end |
||||
|
fi |
||||
|
|
||||
|
if [ "${gamename}" == "Garry's Mod" ]; then |
||||
|
# Fixes: .steam/sdk32/libsteam.so: cannot open shared object file: No such file or directory |
||||
|
if [ ! -f "${HOME}/.steam/sdk32/libsteam.so" ]; then |
||||
|
local fixname="libsteam.so" |
||||
|
fn_msg_start |
||||
|
mkdir -pv "${HOME}/.steam/sdk32" >> "${scriptlog}" |
||||
|
cp -v "${filesdir}/bin/libsteam.so" "${HOME}/.steam/sdk32/libsteam.so" >> "${scriptlog}" |
||||
|
fn_msg_end |
||||
|
fi |
||||
|
elif [ "${gamename}" == "Serious Sam 3: BFE" ]; then |
||||
|
# Fixes: .steam/bin32/libsteam.so: cannot open shared object file: No such file or directory |
||||
|
if [ ! -f "${HOME}/.steam/bin32/libsteam.so" ]; then |
||||
|
local fixname="libsteam.so" |
||||
|
fn_msg_start |
||||
|
mkdir -pv "${HOME}/.steam/bin32" >> "${scriptlog}" |
||||
|
cp -v "${filesdir}/Bin/libsteam.so" "${HOME}/.steam/bin32/libsteam.so" >> "${scriptlog}" |
||||
|
fn_msg_end |
||||
|
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 |
||||
|
local fixname="steamclient.so x86" |
||||
|
fn_msg_start |
||||
|
cp -v "${rootdir}/steamcmd/linux32/steamclient.so" "${filesdir}/Hurtworld_Data/Plugins/x86/steamclient.so" >> "${scriptlog}" |
||||
|
fn_msg_end |
||||
|
fi |
||||
|
if [ ! -f "${filesdir}/Hurtworld_Data/Plugins/x86_64/steamclient.so" ]; then |
||||
|
local fixname="steamclient.so x86_64" |
||||
|
fn_msg_start |
||||
|
cp -v "${rootdir}/steamcmd/linux32/steamclient.so" "${filesdir}/Hurtworld_Data/Plugins/x86_64/steamclient.so" >> "${scriptlog}" |
||||
|
fn_msg_end |
||||
|
fi |
||||
|
fi |
@ -1,11 +1,9 @@ |
|||||
#!/bin/bash |
#!/bin/bash |
||||
# LGSM install_fix_ut2k4.sh function |
# LGSM fix_ut2k4.sh function |
||||
# Author: Daniel Gibbs |
# Author: Daniel Gibbs |
||||
# Website: http://gameservermanagers.com |
# Website: http://gameservermanagers.com |
||||
lgsm_version="271215" |
lgsm_version="271215" |
||||
|
|
||||
echo "Applying ${gamename} Server Fixes" |
|
||||
echo "=================================" |
|
||||
echo "applying WebAdmin ut2003.css fix." |
echo "applying WebAdmin ut2003.css fix." |
||||
echo "http://forums.tripwireinteractive.com/showpost.php?p=585435&postcount=13" |
echo "http://forums.tripwireinteractive.com/showpost.php?p=585435&postcount=13" |
||||
sed -i 's/none}/none;/g' "${filesdir}/Web/ServerAdmin/ut2003.css" |
sed -i 's/none}/none;/g' "${filesdir}/Web/ServerAdmin/ut2003.css" |
@ -1,11 +1,9 @@ |
|||||
#!/bin/bash |
#!/bin/bash |
||||
# LGSM install_fix_ut99.sh function |
# LGSM fix_ut99.sh function |
||||
# Author: Daniel Gibbs |
# Author: Daniel Gibbs |
||||
# Website: http://gameservermanagers.com |
# Website: http://gameservermanagers.com |
||||
lgsm_version="271215" |
lgsm_version="271215" |
||||
|
|
||||
echo "Applying ${gamename} Server Fixes" |
|
||||
echo "=================================" |
|
||||
echo "enabling UdpServerUplink." |
echo "enabling UdpServerUplink." |
||||
{ |
{ |
||||
echo "[IpServer.UdpServerUplink]" |
echo "[IpServer.UdpServerUplink]" |
@ -1,39 +0,0 @@ |
|||||
#!/bin/bash |
|
||||
# LGSM install_fix_steam.sh function |
|
||||
# Author: Daniel Gibbs |
|
||||
# Website: http://gameservermanagers.com |
|
||||
lgsm_version="271215" |
|
||||
|
|
||||
fn_steamclientfix(){ |
|
||||
echo "" |
|
||||
echo "Applying steamclient.so fix" |
|
||||
echo "=================================" |
|
||||
sleep 1 |
|
||||
mkdir -pv "${HOME}/.steam/sdk32" |
|
||||
cp -v "${rootdir}/steamcmd/linux32/steamclient.so" "${HOME}/.steam/sdk32/steamclient.so" |
|
||||
sleep 1 |
|
||||
} |
|
||||
|
|
||||
# Server specific |
|
||||
fn_libsteamfix(){ |
|
||||
echo "" |
|
||||
echo "Applying libsteam.so and steamclient.so fixes" |
|
||||
echo "=================================" |
|
||||
sleep 1 |
|
||||
if [ "${gamename}" == "Garry's Mod" ]; then |
|
||||
mkdir -pv "${HOME}/.steam/sdk32" |
|
||||
cp -v "${filesdir}/bin/libsteam.so" "${HOME}/.steam/sdk32/libsteam.so" |
|
||||
elif [ "${gamename}" == "Serious Sam 3: BFE" ]; then |
|
||||
mkdir -pv "${HOME}/.steam/bin32" |
|
||||
cp -v "${filesdir}/Bin/libsteam.so" "${HOME}/.steam/bin32/libsteam.so" |
|
||||
elif [ "${gamename}" == "Hurtworld" ]; then |
|
||||
cp -v "${rootdir}/steamcmd/linux32/steamclient.so" "${filesdir}/Hurtworld_Data/Plugins/x86/steamclient.so" |
|
||||
cp -v "${rootdir}/steamcmd/linux32/steamclient.so" "${filesdir}/Hurtworld_Data/Plugins/x86_64/steamclient.so" |
|
||||
fi |
|
||||
sleep 1 |
|
||||
} |
|
||||
|
|
||||
fn_steamclientfix |
|
||||
if [ "${gamename}" == "Garry's Mod" ]||[ "${gamename}" == "Serious Sam 3: BFE" ]||[ "${gamename}" == "Hurtworld" ]; then |
|
||||
fn_libsteamfix |
|
||||
fi |
|
Loading…
Reference in new issue