From 140101104ede083b92f03b4772b83307c5506ab3 Mon Sep 17 00:00:00 2001 From: Nick Soracco Date: Sun, 28 Oct 2018 18:27:46 -0700 Subject: [PATCH] Fix the missing library segfault issue. --- lgsm/functions/fix.sh | 2 ++ lgsm/functions/fix_tf2.sh | 29 +++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 lgsm/functions/fix_tf2.sh diff --git a/lgsm/functions/fix.sh b/lgsm/functions/fix.sh index 232459e0a..0653dcaad 100644 --- a/lgsm/functions/fix.sh +++ b/lgsm/functions/fix.sh @@ -85,6 +85,8 @@ if [ "${function_selfname}" == "command_install.sh" ]; then fix_ut.sh elif [ "${gamename}" == "Unreal Tournament 3" ]; then fix_ut3.sh + elif [ "${gamename}" == "Team Fortress 2" ]; then + fix_tf2.sh else fn_print_information_nl "No fixes required." fi diff --git a/lgsm/functions/fix_tf2.sh b/lgsm/functions/fix_tf2.sh new file mode 100644 index 000000000..f930a21b4 --- /dev/null +++ b/lgsm/functions/fix_tf2.sh @@ -0,0 +1,29 @@ +#!/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]}")")" + +if [[ -f /etc/redhat-release ]]; then + echo "Applying missing libcurl-gnutls.so.4 fix for Redhat-based systems." + cd ${serverfiles}/bin + if [[ -L libcurl-gnutls.so.4 ]]; then + echo "Fix already applied." + else + curl_lib="/usr/lib/libcurl.so.4" + if [[ -L $curl_lib ]]; then + ln -nfs $curl_lib libcurl-gnutls.so.4 + if [[ "$?" != "0" ]]; then + echo "Fix failed, ln exitied non-zero." + else + echo "Fix applied successfully." + fi + else + echo "Missing library: $curl_lib, dnf -y install libcurl.i686" + fi + fi +fi