Browse Source

Merge pull request #1043 from GameServerManagers/gesserver

gesserver
pull/1051/head
Daniel Gibbs 9 years ago
committed by GitHub
parent
commit
cec87477b0
  1. 1
      GoldenEyeSource/gesserver
  2. 2
      lgsm/functions/check_deps.sh
  3. 2
      lgsm/functions/check_glibc.sh
  4. 5
      lgsm/functions/core_functions.sh
  5. 8
      lgsm/functions/fix.sh
  6. 11
      lgsm/functions/fix_ges.sh
  7. 6
      lgsm/functions/fix_glibc.sh
  8. 3
      lgsm/functions/info_glibc.sh
  9. 8
      lgsm/functions/install_server_files.sh

1
GoldenEyeSource/gesserver

@ -12,7 +12,6 @@ fi
version="210516" version="210516"
#### Variables #### #### Variables ####
export MALLOC_CHECK_=0
# Notification Alerts # Notification Alerts
# (on|off) # (on|off)

2
lgsm/functions/check_deps.sh

@ -245,7 +245,7 @@ elif [ -n "$(command -v yum)" ]; then
array_deps_required+=( java-1.8.0-openjdk ) array_deps_required+=( java-1.8.0-openjdk )
# GoldenEye: Source # GoldenEye: Source
elif [ "${gamename}" == "GoldenEye: Source" ]; then elif [ "${gamename}" == "GoldenEye: Source" ]; then
array_deps_required+=( zlib ) array_deps_required+=( zlib.i686 )
# Unreal Engine # Unreal Engine
elif [ "${executable}" == "./ucc-bin" ]; then elif [ "${executable}" == "./ucc-bin" ]; then
#UT2K4 #UT2K4

2
lgsm/functions/check_glibc.sh

@ -36,6 +36,6 @@ elif [ "$(printf '%s\n'${glibcrequired}'\n' ${glibcversion} | sort -V | head -n
echo -e " * glibc installed: ${red}${glibcversion}${default}" echo -e " * glibc installed: ${red}${glibcversion}${default}"
echo -en "\n" echo -en "\n"
fn_print_information "The game server will probably not work. A distro upgrade is required!" fn_print_information "The game server will probably not work. A distro upgrade is required!"
sleep 5 sleep 2
fi fi
fi fi

5
lgsm/functions/core_functions.sh

@ -292,6 +292,11 @@ functionfile="${FUNCNAME}"
fn_fetch_function fn_fetch_function
} }
fix_ges.sh(){
functionfile="${FUNCNAME}"
fn_fetch_function
}
fix_ins.sh(){ fix_ins.sh(){
functionfile="${FUNCNAME}" functionfile="${FUNCNAME}"
fn_fetch_function fn_fetch_function

8
lgsm/functions/fix.sh

@ -35,14 +35,16 @@ if [ "${function_selfname}" != "command_install.sh" ]; then
fix_steamcmd.sh fix_steamcmd.sh
fi fi
if [ "${gamename}" == "Counter Strike: Global Offensive" ]; then if [ "${gamename}" == "ARMA 3" ]; then
fix_arma3.sh
elif [ "${gamename}" == "Counter Strike: Global Offensive" ]; then
fix_csgo.sh fix_csgo.sh
elif [ "${gamename}" == "Don't Starve Together" ]; then elif [ "${gamename}" == "Don't Starve Together" ]; then
fix_dst.sh fix_dst.sh
elif [ "${gamename}" == "GoldenEye: Source" ]; then
fix_ges.sh
elif [ "${gamename}" == "Insurgency" ]; then elif [ "${gamename}" == "Insurgency" ]; then
fix_ins.sh fix_ins.sh
elif [ "${gamename}" == "ARMA 3" ]; then
fix_arma3.sh
fi fi
fi fi

11
lgsm/functions/fix_ges.sh

@ -0,0 +1,11 @@
#!/bin/bash
# LGSM fix_ges.sh function
# Author: Daniel Gibbs
# Website: https://gameservermanagers.com
# Description: Resolves various issues with GoldenEye: Source.
local commandname="FIX"
local commandaction="Fix"
# Fixes: MALLOC_CHECK_ needing to be set to 0.
export MALLOC_CHECK_=0

6
lgsm/functions/fix_glibc.sh

@ -8,7 +8,7 @@ local commandname="FIX"
local commandaction="Fix" local commandaction="Fix"
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
local libstdc_servers_array=( "ARMA 3" "Blade Symphony" "Garry's Mod" "Just Cause 2" ) local libstdc_servers_array=( "ARMA 3" "Blade Symphony" "Garry's Mod" "GoldenEye: Source" "Just Cause 2" )
for libstdc_server in "${libstdc_servers_array[@]}" for libstdc_server in "${libstdc_servers_array[@]}"
do do
if [ "${gamename}" == "${libstdc_server}" ]; then if [ "${gamename}" == "${libstdc_server}" ]; then
@ -16,7 +16,7 @@ do
fi fi
done done
local libm_servers_array=( "Codename CURE" "Day of Infamy" "Double Action: Boogaloo" "Empires Mod" "Fistful of Frags" "Garry's Mod" "Insurgency" "Natural Selection 2" "NS2: Combat" "No More Room in Hell" ) local libm_servers_array=( "Codename CURE" "Day of Infamy" "Double Action: Boogaloo" "Empires Mod" "Fistful of Frags" "Garry's Mod" "GoldenEye: Source" "Insurgency" "Natural Selection 2" "NS2: Combat" "No More Room in Hell" )
for libm_server in "${libm_servers_array[@]}" for libm_server in "${libm_servers_array[@]}"
do do
if [ "${gamename}" == "${libm_server}" ]; then if [ "${gamename}" == "${libm_server}" ]; then
@ -24,7 +24,7 @@ do
fi fi
done done
local libc_servers_array=( "Garry's Mod" ) local libc_servers_array=( "Garry's Mod" "GoldenEye: Source" )
for libc_server in "${libc_servers_array[@]}" for libc_server in "${libc_servers_array[@]}"
do do
if [ "${gamename}" == "${libc_server}" ]; then if [ "${gamename}" == "${libc_server}" ]; then

3
lgsm/functions/info_glibc.sh

@ -26,6 +26,9 @@ elif [ "${gamename}" == "Fistful of Frags" ]; then
elif [ "${gamename}" == "Garry's Mod" ]; then elif [ "${gamename}" == "Garry's Mod" ]; then
glibcrequired="2.15" glibcrequired="2.15"
glibcfix="yes" glibcfix="yes"
elif [ "${gamename}" == "GoldenEye: Source" ]; then
glibcrequired="2.15"
glibcfix="yes"
elif [ "${gamename}" == "Insurgency" ]; then elif [ "${gamename}" == "Insurgency" ]; then
glibcrequired="2.15" glibcrequired="2.15"
glibcfix="yes" glibcfix="yes"

8
lgsm/functions/install_server_files.sh

@ -101,6 +101,10 @@ echo "Installing ${gamename} Server"
echo "=================================" echo "================================="
sleep 1 sleep 1
if [ -n "${appid}" ]; then
fn_install_server_files_steamcmd
fi
if [ "${gamename}" == "TeamSpeak 3" ]; then if [ "${gamename}" == "TeamSpeak 3" ]; then
update_ts3.sh update_ts3.sh
elif [ "${gamename}" == "Minecraft" ]; then elif [ "${gamename}" == "Minecraft" ]; then
@ -112,10 +116,6 @@ elif [ -z "${appid}" ]||[ "${gamename}" == "GoldenEye: Source" ]; then
fn_install_server_files fn_install_server_files
fi fi
if [ -n "${appid}" ]; then
fn_install_server_files_steamcmd
fi
if [ -z "${autoinstall}" ]; then if [ -z "${autoinstall}" ]; then
echo "" echo ""
echo "=================================" echo "================================="

Loading…
Cancel
Save