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
606 B
17 lines
606 B
#!/bin/bash
|
|
# LinuxGSM fix_tf2.sh function
|
|
# Author: Vector Sigma
|
|
# Website: https://github.com/vectorsigma
|
|
# Description: Resolves various issues with Team Fortress 2.
|
|
|
|
local commandname="FIX"
|
|
local commandaction="Fix"
|
|
local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
|
|
|
|
# Fixes: Team Fortress 2 Segmentation fault for Red-Hat Distros #2062.
|
|
if [ -f "/etc/redhat-release" ] && [ ! -f "${serverfiles}/bin/libcurl-gnutls.so.4" ]; then
|
|
fixname="libcurl-gnutls.so.4 missing"
|
|
fn_fix_msg_start
|
|
ln -s "/usr/lib/libcurl.so.4" "${serverfiles}/bin/libcurl-gnutls.so.4"
|
|
fn_fix_msg_end
|
|
fi
|
|
|