From 140101104ede083b92f03b4772b83307c5506ab3 Mon Sep 17 00:00:00 2001 From: Nick Soracco Date: Sun, 28 Oct 2018 18:27:46 -0700 Subject: [PATCH 1/5] 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 From b2442d34e62d5e726275616c3e12784a304ef649 Mon Sep 17 00:00:00 2001 From: Nick Soracco Date: Sun, 28 Oct 2018 18:27:46 -0700 Subject: [PATCH 2/5] 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 From 06d698ef9d6167829fe906cd61e327486da013e9 Mon Sep 17 00:00:00 2001 From: Vector Sigma Date: Sun, 28 Oct 2018 18:41:27 -0700 Subject: [PATCH 3/5] Fix code quality suggestion. --- lgsm/functions/fix_tf2.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/fix_tf2.sh b/lgsm/functions/fix_tf2.sh index f930a21b4..a0239e45a 100644 --- a/lgsm/functions/fix_tf2.sh +++ b/lgsm/functions/fix_tf2.sh @@ -10,7 +10,7 @@ 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 + cd ${serverfiles}/bin || exit if [[ -L libcurl-gnutls.so.4 ]]; then echo "Fix already applied." else From b85b934d3f5e691f33ed46efe9c50cd8a1e0e30f Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Mon, 29 Oct 2018 23:17:31 +0100 Subject: [PATCH 4/5] Fixed TS3 update --- lgsm/functions/update_ts3.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/update_ts3.sh b/lgsm/functions/update_ts3.sh index 8471e9952..44f463a61 100644 --- a/lgsm/functions/update_ts3.sh +++ b/lgsm/functions/update_ts3.sh @@ -23,8 +23,8 @@ fn_update_ts3_dl_legacy(){ } fn_update_ts3_dl(){ - latestmcreleaselink=$(${curlpath} -s 'https://www.teamspeak.com/versions/server.json' | jq -r '.linux.x86_64.mirrors."4Netplayers.de"') - fn_fetch_file "${latestmcbuildurl}" "${tmpdir}" "teamspeak3-server_linux_${ts3arch}-${ts3_version_number}.tar.bz2" + latestts3releaselink=$(${curlpath} -s 'https://www.teamspeak.com/versions/server.json' | jq -r '.linux.x86_64.mirrors."4Netplayers.de"') + fn_fetch_file "${latestts3releaselink}" "${tmpdir}" "teamspeak3-server_linux_${ts3arch}-${ts3_version_number}.tar.bz2" fn_dl_extract "${tmpdir}" "teamspeak3-server_linux_${ts3arch}-${ts3_version_number}.tar.bz2" "${tmpdir}" echo -e "copying to ${serverfiles}...\c" fn_script_log "Copying to ${serverfiles}" From ad2afdcda0281e546d6e92642e22399c1ff098c6 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 31 Oct 2018 18:00:04 +0000 Subject: [PATCH 5/5] fix_tf2.sh now matches fix_dst.sh as the same issue occurs --- lgsm/functions/fix_tf2.sh | 24 ++++++------------------ 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/lgsm/functions/fix_tf2.sh b/lgsm/functions/fix_tf2.sh index a0239e45a..766fc8bfa 100644 --- a/lgsm/functions/fix_tf2.sh +++ b/lgsm/functions/fix_tf2.sh @@ -8,22 +8,10 @@ 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 || exit - 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 +# 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