From 56286fd617697ebfa2c504087ae5fc201afe3d8c Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 19 Nov 2016 22:37:43 +0100 Subject: [PATCH 1/5] Rust fix --- lgsm/functions/fix.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/fix.sh b/lgsm/functions/fix.sh index 5671ed627..85a65a814 100644 --- a/lgsm/functions/fix.sh +++ b/lgsm/functions/fix.sh @@ -45,6 +45,8 @@ if [ "${function_selfname}" != "command_install.sh" ]; then fix_ges.sh elif [ "${gamename}" == "Insurgency" ]; then fix_ins.sh + elif [ "${gamename}" == "Rust" ]; then + fix_rust.sh fi fi From bffd43bae2ec295fd11017316e113ad400fa1234 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 19 Nov 2016 22:37:51 +0100 Subject: [PATCH 2/5] Create fix_rust.sh --- lgsm/functions/fix_rust.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lgsm/functions/fix_rust.sh diff --git a/lgsm/functions/fix_rust.sh b/lgsm/functions/fix_rust.sh new file mode 100644 index 000000000..fce1640bb --- /dev/null +++ b/lgsm/functions/fix_rust.sh @@ -0,0 +1,11 @@ +#!/bin/bash +# LGSM fix_rust.sh function +# Author: Daniel Gibbs +# Website: https://gameservermanagers.com +# Description: Resolves startup issue with Rust + +local commandname="FIX" +local commandaction="Fix" + +# Fixes: ./srcds_linux: error while loading shared libraries: libtier0.so: cannot open shared object file: No such file or directory. +export LD_LIBRARY_PATH="${systemdir}/RustDedicated_Data/Plugins/x86_64" From 092f741ee2ef9e97f189ba8aca1afe5f1e80714b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 19 Nov 2016 22:38:25 +0100 Subject: [PATCH 3/5] Rust fix moves out --- Rust/rustserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rust/rustserver b/Rust/rustserver index 3a19bb140..6e153a9a9 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -118,7 +118,7 @@ filesdir="${rootdir}/serverfiles" ## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" -executable="LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`dirname $0`/RustDedicated_Data/Plugins/x86_64 ./RustDedicated" +executable="./RustDedicated" serveridentitydir="${systemdir}/server/${servicename}" servercfg="server.cfg" servercfgdefault="server.cfg" From 54162196af1feb9a7ba2da2261ed4cecaabd9a99 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 19 Nov 2016 22:44:12 +0100 Subject: [PATCH 4/5] added fix_rust.sh --- lgsm/functions/core_functions.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index f5ba4ce9e..b70cdeaee 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -362,6 +362,11 @@ functionfile="${FUNCNAME}" fn_fetch_function } +fix_rust.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + # Info info_config.sh(){ From 73a3132a937beed1aad34fc213db1138a0b36968 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 19 Nov 2016 22:50:27 +0100 Subject: [PATCH 5/5] better comments --- lgsm/functions/fix_rust.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/fix_rust.sh b/lgsm/functions/fix_rust.sh index fce1640bb..ec0b125d4 100644 --- a/lgsm/functions/fix_rust.sh +++ b/lgsm/functions/fix_rust.sh @@ -7,5 +7,5 @@ local commandname="FIX" local commandaction="Fix" -# Fixes: ./srcds_linux: error while loading shared libraries: libtier0.so: cannot open shared object file: No such file or directory. +# Fixes: [Raknet] Server Shutting Down (Shutting Down) export LD_LIBRARY_PATH="${systemdir}/RustDedicated_Data/Plugins/x86_64"