From 6ef88e4fb7288f68685af2bca7d3e976aee3f242 Mon Sep 17 00:00:00 2001 From: Scarsz Date: Sat, 23 Aug 2014 09:48:20 -0700 Subject: [PATCH] Didn't notice missing symbol somehow --- GarrysMod/gmodserver | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index 9943b0d50..6b2d49158 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -31,7 +31,7 @@ ip="0.0.0.0" # https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ -parms="-game garrysmod -strictportbind -ip ${ip} -port ${port} +host_workshop_collection ${workshopcollectionid} -authkey {workshopauth} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" +parms="-game garrysmod -strictportbind -ip ${ip} -port ${port} +host_workshop_collection ${workshopcollectionid} -authkey ${workshopauth} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } #### Advanced Variables #### @@ -727,6 +727,23 @@ sleep 1 echo "" } +fn_glibcfix(){ +echo "Applying GLIBC_2.15 fix" +echo "=================================" +sleep 1 +mkdir -pv "${rootdir}/tmp" +echo "Downloading GLIBC_2.15" +wget -q http://security.ubuntu.com/ubuntu/pool/main/e/eglibc/libc6_2.15-0ubuntu10.6_i386.deb -O ${rootdir}/tmp/libc6_2.15-0ubuntu10.6_i386.deb +echo "Extracting files" +dpkg -x ${rootdir}/tmp/libc6_2.15-0ubuntu10.6_i386.deb ${rootdir}/tmp/ +echo "Copying GLIBC_2.15 files into bin" +cp ${rootdir}/tmp/lib/i386-linux-gnu/* ${rootdir}/serverfiles/bin/ +echo "Removing temporary folder" +rm -fr ${rootdir}/tmp/ +sleep 1 +echo "" +} + fn_loginstall(){ echo "Creating log directorys" echo "=================================" @@ -787,6 +804,7 @@ fn_header fn_steamdl fn_steaminstall fn_steamfix +fn_glibcfix fn_loginstall fn_gmoddeps echo "Configuring ${gamename} Server" @@ -939,4 +957,4 @@ case "$1" in echo "Usage: $0 {start|stop|restart|update|update-restart|validate|validate-restart|monitor|email-test|details|backup|console|debug|install}" exit 1;; esac -exit \ No newline at end of file +exit