diff --git a/Insurgency/dependencies/libm.so.6 b/Insurgency/dependencies/libm.so.6 new file mode 100644 index 000000000..39034023b Binary files /dev/null and b/Insurgency/dependencies/libm.so.6 differ diff --git a/functions/fn_debug b/functions/fn_debug index 3d85f58f2..99fb415d6 100644 --- a/functions/fn_debug +++ b/functions/fn_debug @@ -2,7 +2,7 @@ # LGSM fn_debug function # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 210115 +# Version: 110415 # Description: Runs the server without tmux. Runs direct from the terminal. @@ -53,7 +53,10 @@ sleep 1 echo -en "\n" cd "${executabledir}" if [ "${engine}" == "source" ]||[ "${engine}" == "goldsource" ]; then - ${executable} ${parms} -debug + if [ "${gamename}" == "Insurgency" ]; then + fn_insfix + fi + ${executable} ${parms} -fn_debug else ${executable} ${parms} fi \ No newline at end of file diff --git a/functions/fn_functions b/functions/fn_functions index b0b369436..80298516f 100644 --- a/functions/fn_functions +++ b/functions/fn_functions @@ -2,7 +2,7 @@ # LGSM fn_functions function # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 190215 +# Version: 110415 # Description: Defines all functions to allow download and execution of functions using fn_runfunction. # This function is called first before any other function. Without this file other functions would not load. @@ -101,6 +101,11 @@ functionfile="${FUNCNAME}" fn_runfunction } +fn_insfix(){ +functionfile="${FUNCNAME}" +fn_runfunction +} + fn_logs(){ functionfile="${FUNCNAME}" fn_runfunction diff --git a/functions/fn_insfix b/functions/fn_insfix new file mode 100644 index 000000000..73b16a416 --- /dev/null +++ b/functions/fn_insfix @@ -0,0 +1,9 @@ +#!/bin/bash +# LGSM fn_insfix function +# Author: Daniel Gibbs +# Website: http://danielgibbs.co.uk +# Version: 110415 + +# Description: Resolves ./srcds_linux: error while loading shared libraries: libtier0.so: cannot open shared object file: No such file or directory + +export LD_LIBRARY_PATH=:${filesdir}:${filesdir}/bin:{$LD_LIBRARY_PATH} \ No newline at end of file diff --git a/functions/fn_install_glibcfix b/functions/fn_install_glibcfix index 4c1badd22..a348f029c 100644 --- a/functions/fn_install_glibcfix +++ b/functions/fn_install_glibcfix @@ -2,7 +2,7 @@ # LGSM fn_install_glibcfix function # Author: Daniel Gibbs # Website: http://gameservermanagers.com -# Version: 220315 +# Version: 110415 fn_glibcfixmsg(){ echo "" @@ -79,6 +79,7 @@ elif [ "$(ldd --version | sed -n '1 p' | tr -cd [:digit:] | tail -c 3)" -lt 215 fn_glibcfixmsg cd "${filesdir}/bin" wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgsm/raw/master/Insurgency/dependencies/libc.so.6 + wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgsm/raw/master/Insurgency/dependencies/libm.so.6 wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgsm/raw/master/Insurgency/dependencies/librt.so.1 wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgsm/raw/master/Insurgency/dependencies/libpthread.so.0 # Natural Selection 2 diff --git a/functions/fn_start b/functions/fn_start index 57fc2a799..ffc8ec85a 100644 --- a/functions/fn_start +++ b/functions/fn_start @@ -2,7 +2,7 @@ # LGSM fn_start function # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 160214 +# Version: 110415 # Description: Starts the server. @@ -74,6 +74,9 @@ if [ "${gamename}" == "Counter Strike: Global Offensive" ]; then startfix=1 fn_csgofix fi +if [ "${gamename}" == "Insurgency" ]; then + fn_insfix +fi fn_details_config fn_parms fn_logs