From 2d2e67645219820d3a034dd9b07a44ba02260ae6 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 19 Nov 2014 16:52:33 +0000 Subject: [PATCH] added no-check-certificate to wget --- functions/fn_glibcfix | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/functions/fn_glibcfix b/functions/fn_glibcfix index 92aa4eeb7..aabfb79c7 100644 --- a/functions/fn_glibcfix +++ b/functions/fn_glibcfix @@ -2,7 +2,7 @@ # LGSM fn_glibcfix function # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 121114 +# Version: 191114 fn_glibcfixmsg(){ echo "Detected ${gamename}" @@ -47,30 +47,30 @@ if [ "${gamename}" == "Insurgency" ]||[ "${gamename}" == "Garrys's Mod" ]||[ "${ if [ "${gamename}" == "Insurgency" ]; then fn_glibcfixmsg cd "${filesdir}/bin" - wget -nv -N https://github.com/dgibbs64/linuxgameservers/raw/master/Insurgency/dependencies/libc.so.6 - wget -nv -N https://github.com/dgibbs64/linuxgameservers/raw/master/Insurgency/dependencies/librt.so.1 - wget -nv -N https://github.com/dgibbs64/linuxgameservers/raw/master/Insurgency/dependencies/libpthread.so.0 + wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/Insurgency/dependencies/libc.so.6 + wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/Insurgency/dependencies/librt.so.1 + wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/Insurgency/dependencies/libpthread.so.0 sleep 1 elif [ "${gamename}" == "Garrys's Mod" ]; then fn_glibcfixmsg cd "${filesdir}/bin" - wget -nv -N https://github.com/dgibbs64/linuxgameservers/raw/master/GarrysMod/dependencies/libc.so.6 - wget -nv -N https://github.com/dgibbs64/linuxgameservers/raw/master/GarrysMod/dependencies/libm.so.6 - wget -nv -N https://github.com/dgibbs64/linuxgameservers/raw/master/GarrysMod/dependencies/libpthread.so.0 + wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/GarrysMod/dependencies/libc.so.6 + wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/GarrysMod/dependencies/libm.so.6 + wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/GarrysMod/dependencies/libpthread.so.0 cp -v "${rootdir}/steamcmd/linux32/libstdc++.so.6" "${filesdir}/libstdc++.so.6" sleep 1 echo "" elif [ "${gamename}" == "Natural Selection 2" ]; then fn_glibcfixmsg cd "${filesdir}" - wget -nv -N https://github.com/dgibbs64/linuxgameservers/raw/master/NaturalSelection2/dependencies/libm.so.6 + wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/NaturalSelection2/dependencies/libm.so.6 cp -v "${rootdir}/steamcmd/linux32/libstdc++.so.6" "${filesdir}/libstdc++.so.6" sleep 1 echo "" elif [ "${gamename}" == "No More Room in Hell" ]; then fn_glibcfixmsg cd "${filesdir}" - wget -nv -N https://github.com/dgibbs64/linuxgameservers/raw/master/NoMoreRoomInHell/dependencies/libm.so.6 + wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/NoMoreRoomInHell/dependencies/libm.so.6 cp -v "${rootdir}/steamcmd/linux32/libstdc++.so.6" "${filesdir}/libstdc++.so.6" sleep 1 echo "" @@ -85,7 +85,7 @@ if [ "${gamename}" == "Insurgency" ]||[ "${gamename}" == "Garrys's Mod" ]||[ "${ echo "Downloading files for ${gamename} GLIBC Fix" sleep 1 cd "${filesdir}" - wget -nv -N https://github.com/dgibbs64/linuxgameservers/raw/master/FistfulOfFrags/dependencies/libm.so.6 + wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/FistfulOfFrags/dependencies/libm.so.6 sleep 1 echo "" elif [ "${gamename}" == "ARMA 3" ]; then