From 17f8c787c2a3840804bc76f57babe2ac588c839c Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sat, 20 Aug 2016 05:44:34 -0400 Subject: [PATCH 01/23] adding Unreal Tournament --- UnrealTournament/cfg/Engine.ini | 3 + UnrealTournament/uthubserver | 142 ++++++++++++++++++++++++ UnrealTournament/utserver | 144 +++++++++++++++++++++++++ lgsm/functions/command_install.sh | 2 +- lgsm/functions/install_config.sh | 8 ++ lgsm/functions/install_server_files.sh | 2 + 6 files changed, 300 insertions(+), 1 deletion(-) create mode 100644 UnrealTournament/cfg/Engine.ini create mode 100644 UnrealTournament/uthubserver create mode 100644 UnrealTournament/utserver diff --git a/UnrealTournament/cfg/Engine.ini b/UnrealTournament/cfg/Engine.ini new file mode 100644 index 000000000..b9db58305 --- /dev/null +++ b/UnrealTournament/cfg/Engine.ini @@ -0,0 +1,3 @@ +[/Script/UnrealTournament.UTGameEngine] +bFirstRun=False +RconPassword= diff --git a/UnrealTournament/uthubserver b/UnrealTournament/uthubserver new file mode 100644 index 000000000..b4119139c --- /dev/null +++ b/UnrealTournament/uthubserver @@ -0,0 +1,142 @@ +#!/bin/bash +# Unreal Tournament Hub +# Server Management Script +# Author: Daniel Gibbs +# Website: https://gameservermanagers.com +if [ -f ".dev-debug" ]; then + exec 5>dev-debug.log + BASH_XTRACEFD="5" + set -x +fi + +version="210516" + +#### Variables #### + +# Notification Alerts +# (on|off) + +# Email +emailalert="off" +email="email@example.com" + +# Pushbullet +# https://www.pushbullet.com/#settings +pushbulletalert="off" +pushbullettoken="accesstoken" + +# Start Variables +ip="0.0.0.0" + +fn_parms(){ +parms="UnrealTournament UT-Entry?Game=Lobby -port=${port}" +} + +#### Advanced Variables #### + +# Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="dgibbs64" +githubrepo="linuxgsm" +githubbranch="master" + +# Server Details +servicename="ut-hub-server" +gamename="Unreal Tournament" +engine="unreal4" + +# Directories +rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" +selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" +lockselfname=".${servicename}.lock" +lgsmdir="${rootdir}/lgsm" +functionsdir="${lgsmdir}/functions" +libdir="${lgsmdir}/lib" +filesdir="${rootdir}/serverfiles" +systemdir="${filesdir}" +executabledir="${systemdir}/LinuxServer/Engine/Binaries/Linux" +executable="./UE4Server-Linux-Shipping" +servercfg="Game.ini" +servercfgdir="${systemdir}/UnrealTournament/Saved/Config/LinuxServer" +servercfgfullpath="${servercfgdir}/${servercfg}" +servercfgdefault="${servercfgdir}/Game.ini" +backupdir="${rootdir}/backups" + +# Logging +logdays="7" +gamelogdir="${filesdir}/Logs" +scriptlogdir="${rootdir}/log/script" +consolelogdir="${rootdir}/log/console" +consolelogging="on" + +scriptlog="${scriptlogdir}/${servicename}-script.log" +consolelog="${consolelogdir}/${servicename}-console.log" +emaillog="${scriptlogdir}/${servicename}-email.log" + +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%d-%m-%Y-%H-%M-%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M-%S').log" + +##### Script ##### +# Do not edit + +# Fetches core_dl for file downloads +fn_fetch_core_dl(){ +github_file_url_dir="lgsm/functions" +github_file_url_name="${functionfile}" +filedir="${functionsdir}" +filename="${github_file_url_name}" +githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${github_file_url_name}" +# If the file is missing, then download +if [ ! -f "${filedir}/${filename}" ]; then + if [ ! -d "${filedir}" ]; then + mkdir -p "${filedir}" + fi + echo -e " fetching ${filename}...\c" + # Check curl exists and use available path + curlpaths="$(command -v curl 2>/dev/null) $(which curl >/dev/null 2>&1) /usr/bin/curl /bin/curl /usr/sbin/curl /sbin/curl)" + for curlcmd in ${curlpaths} + do + if [ -x "${curlcmd}" ]; then + break + fi + done + # If curl exists download file + if [ "$(basename ${curlcmd})" == "curl" ]; then + curlfetch=$(${curlcmd} -s --fail -o "${filedir}/${filename}" "${githuburl}" 2>&1) + if [ $? -ne 0 ]; then + echo -e "\e[0;31mFAIL\e[0m\n" + echo "${curlfetch}" + echo -e "${githuburl}\n" + exit 1 + else + echo -e "\e[0;32mOK\e[0m" + fi + else + echo -e "\e[0;31mFAIL\e[0m\n" + echo "Curl is not installed!" + echo -e "" + exit 1 + fi + chmod +x "${filedir}/${filename}" +fi +source "${filedir}/${filename}" +} + +core_dl.sh(){ +# Functions are defined in core_functions.sh. +functionfile="${FUNCNAME}" +fn_fetch_core_dl +} + +core_functions.sh(){ +# Functions are defined in core_functions.sh. +functionfile="${FUNCNAME}" +fn_fetch_core_dl +} + +core_dl.sh +core_functions.sh + +getopt=$1 +core_getopt.sh diff --git a/UnrealTournament/utserver b/UnrealTournament/utserver new file mode 100644 index 000000000..44a32ff75 --- /dev/null +++ b/UnrealTournament/utserver @@ -0,0 +1,144 @@ +#!/bin/bash +# Unreal Tournament +# Server Management Script +# Author: Daniel Gibbs +# Website: https://gameservermanagers.com +if [ -f ".dev-debug" ]; then + exec 5>dev-debug.log + BASH_XTRACEFD="5" + set -x +fi + +version="210516" + +#### Variables #### + +# Notification Alerts +# (on|off) + +# Email +emailalert="off" +email="email@example.com" + +# Pushbullet +# https://www.pushbullet.com/#settings +pushbulletalert="off" +pushbullettoken="accesstoken" + +# Start Variables +ip="0.0.0.0" +port="7777" + +fn_parms(){ +parms="UnrealTournament DM-DeckTest?Game=DM?TimeLimit=10 -port=${port}" +#parms="UnrealTournament CTF-FaceTest?Game=CTF?TimeLimit=15 -port=${port}" +} + +#### Advanced Variables #### + +# Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="dgibbs64" +githubrepo="linuxgsm" +githubbranch="master" + +# Server Details +servicename="ut-server" +gamename="Unreal Tournament" +engine="unreal4" + +# Directories +rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" +selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" +lockselfname=".${servicename}.lock" +lgsmdir="${rootdir}/lgsm" +functionsdir="${lgsmdir}/functions" +libdir="${lgsmdir}/lib" +filesdir="${rootdir}/serverfiles" +systemdir="${filesdir}" +executabledir="${systemdir}/LinuxServer/Engine/Binaries/Linux" +executable="./UE4Server-Linux-Shipping" +servercfg="Game.ini" +servercfgdir="${systemdir}/UnrealTournament/Saved/Config/LinuxServer" +servercfgfullpath="${servercfgdir}/${servercfg}" +servercfgdefault="${servercfgdir}/Game.ini" +backupdir="${rootdir}/backups" + +# Logging +logdays="7" +gamelogdir="${filesdir}/Logs" +scriptlogdir="${rootdir}/log/script" +consolelogdir="${rootdir}/log/console" +consolelogging="on" + +scriptlog="${scriptlogdir}/${servicename}-script.log" +consolelog="${consolelogdir}/${servicename}-console.log" +emaillog="${scriptlogdir}/${servicename}-email.log" + +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%d-%m-%Y-%H-%M-%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M-%S').log" + +##### Script ##### +# Do not edit + +# Fetches core_dl for file downloads +fn_fetch_core_dl(){ +github_file_url_dir="lgsm/functions" +github_file_url_name="${functionfile}" +filedir="${functionsdir}" +filename="${github_file_url_name}" +githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${github_file_url_name}" +# If the file is missing, then download +if [ ! -f "${filedir}/${filename}" ]; then + if [ ! -d "${filedir}" ]; then + mkdir -p "${filedir}" + fi + echo -e " fetching ${filename}...\c" + # Check curl exists and use available path + curlpaths="$(command -v curl 2>/dev/null) $(which curl >/dev/null 2>&1) /usr/bin/curl /bin/curl /usr/sbin/curl /sbin/curl)" + for curlcmd in ${curlpaths} + do + if [ -x "${curlcmd}" ]; then + break + fi + done + # If curl exists download file + if [ "$(basename ${curlcmd})" == "curl" ]; then + curlfetch=$(${curlcmd} -s --fail -o "${filedir}/${filename}" "${githuburl}" 2>&1) + if [ $? -ne 0 ]; then + echo -e "\e[0;31mFAIL\e[0m\n" + echo "${curlfetch}" + echo -e "${githuburl}\n" + exit 1 + else + echo -e "\e[0;32mOK\e[0m" + fi + else + echo -e "\e[0;31mFAIL\e[0m\n" + echo "Curl is not installed!" + echo -e "" + exit 1 + fi + chmod +x "${filedir}/${filename}" +fi +source "${filedir}/${filename}" +} + +core_dl.sh(){ +# Functions are defined in core_functions.sh. +functionfile="${FUNCNAME}" +fn_fetch_core_dl +} + +core_functions.sh(){ +# Functions are defined in core_functions.sh. +functionfile="${FUNCNAME}" +fn_fetch_core_dl +} + +core_dl.sh +core_functions.sh + +getopt=$1 +core_getopt.sh diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index ac66e96e4..8af67e12a 100644 --- a/lgsm/functions/command_install.sh +++ b/lgsm/functions/command_install.sh @@ -18,7 +18,7 @@ check_deps.sh if [ "${gamename}" == "Unreal Tournament 2004" ]; then install_server_files.sh install_ut2k4_key.sh -elif [ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Mumble" ]; then +elif [ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Mumble" ]; then installer=1 install_server_files.sh elif [ -n "${appid}" ]; then diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 90ebb2ff1..0b93a02d7 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -165,6 +165,12 @@ fn_unreal2config(){ echo "" } +fn_unreal4(){ + echo "" + echo "Configuring ${gamename} Server" + echo "=================================" +} + echo "" if [ "${gamename}" != "Hurtworld" ]; then echo "Creating Configs" @@ -382,6 +388,8 @@ elif [ "${gamename}" == "Terraria" ]; then wget -N /dev/null ${githuburl}/Terraria/cfg/lgsm-default.txt 2>&1 | grep -F HTTP | cut -c45- | uniq sleep 1 fn_defaultconfig +elif [ "${gamename}" == "Unreal Tournament" ]; then + fn_unreal4 elif [ "${gamename}" == "Unreal Tournament 2004" ]; then fn_unreal2config elif [ "${gamename}" == "Unreal Tournament 99" ]; then diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 8f05a01a8..fc6969749 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -13,6 +13,8 @@ fn_install_server_files(){ fileurl="https://gameservermanagers.com/files/UnrealTournament99/ut99-server-451-ultimate-linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="ut99-server-451-ultimate-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="49cb24d0550ff6ddeaba6007045c6edd" elif [ "${gamename}" == "Unreal Tournament 2004" ]; then fileurl="https://gameservermanagers.com/files/UnrealTournament2004/ut2004-server-3339-ultimate-linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="ut2004-server-3339-ultimate-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="67c5e2cd9c2a4b04f163962ee41eff54" + elif [ "${gamename}" == "Unreal Tournament" ]; then + fileurl="https://s3.amazonaws.com/unrealtournament/UnrealTournament-Server-XAN-3045522-Linux.zip"; filedir="${lgsmdir}/tmp"; filename="UnrealTournament-Server-XAN-3045522-Linux.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="553fed5645a9fc623e92563049bf79f6" elif [ "${gamename}" == "GoldenEye: Source" ]; then fileurl="https://gameservermanagers.com/files/GoldenEyeSource/goldenEye_source_v4.2.4_server_2015_map_pack.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="goldenEye_source_v4.2.4_server_2015_map_pack.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="3148ac38acc3642b0d6d64f51f27de15" fi From 13b18a59168a53a7dc5e6b8f4d556ee3d5abc5f2 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sat, 20 Aug 2016 06:11:37 -0400 Subject: [PATCH 02/23] adding unzip functionality --- lgsm/functions/check_deps.sh | 7 +++++++ lgsm/functions/core_dl.sh | 4 +++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 57f432ec4..165c129d6 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -188,6 +188,9 @@ if [ -n "$(command -v dpkg-query)" ]; then else array_deps_required+=( libsdl1.2debian bzip2 ) fi + # Unreal Tournament + elif [ "${gamename}" == "Unreal Tournament" ]; then + array_deps_required+=( unzip ) fi fn_deps_email fn_check_loop @@ -243,6 +246,10 @@ elif [ -n "$(command -v yum)" ]; then else array_deps_required+=( SDL.i686 bzip2 ) fi + # Unreal Tournament + elif [ "${gamename}" == "Unreal Tournament" ]; then + array_deps_required+=( unzip ) + fi fi fn_deps_email fn_check_loop diff --git a/lgsm/functions/core_dl.sh b/lgsm/functions/core_dl.sh index 52155dc49..0c1e0a76b 100644 --- a/lgsm/functions/core_dl.sh +++ b/lgsm/functions/core_dl.sh @@ -44,7 +44,7 @@ fn_dl_md5(){ fi } -# Extracts bzip2 or gzip files +# Extracts bzip2 or gzip or zip files # Extracts can be defined in code like so: # fn_dl_extract "${filedir}" "${filename}" "${extractdir}" # fn_dl_extract "/home/gameserver/lgsm/tmp" "file.tar.bz2" "/home/gamserver/serverfiles" @@ -61,6 +61,8 @@ fn_dl_extract(){ tarcmd=$(tar -zxf "${filedir}/${filename}" -C "${extractdir}") elif [ "${mime}" == "application/x-bzip2" ]; then tarcmd=$(tar -jxf "${filedir}/${filename}" -C "${extractdir}") + elif [ "${mime}" == "application/zip" ]; then + tarcmd=$(unzip -d "${extractdir}" "${filedir}/${filename}") fi local exitcode=$? if [ ${exitcode} -ne 0 ]; then From 0a2634583d52eeabb1dcb7be7d63784b6856fbcf Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sat, 20 Aug 2016 06:14:31 -0400 Subject: [PATCH 03/23] fix --- lgsm/functions/check_deps.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 165c129d6..b45f24faa 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -250,7 +250,6 @@ elif [ -n "$(command -v yum)" ]; then elif [ "${gamename}" == "Unreal Tournament" ]; then array_deps_required+=( unzip ) fi - fi fn_deps_email fn_check_loop fi From fecbba7619d8cba1fa485667997171659028c357 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sat, 20 Aug 2016 06:25:17 -0400 Subject: [PATCH 04/23] path fix --- UnrealTournament/uthubserver | 4 ++-- UnrealTournament/utserver | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/UnrealTournament/uthubserver b/UnrealTournament/uthubserver index b4119139c..908161fad 100644 --- a/UnrealTournament/uthubserver +++ b/UnrealTournament/uthubserver @@ -54,8 +54,8 @@ lgsmdir="${rootdir}/lgsm" functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" filesdir="${rootdir}/serverfiles" -systemdir="${filesdir}" -executabledir="${systemdir}/LinuxServer/Engine/Binaries/Linux" +systemdir="${filesdir}/LinuxServer" +executabledir="${systemdir}/Engine/Binaries/Linux" executable="./UE4Server-Linux-Shipping" servercfg="Game.ini" servercfgdir="${systemdir}/UnrealTournament/Saved/Config/LinuxServer" diff --git a/UnrealTournament/utserver b/UnrealTournament/utserver index 44a32ff75..a2e48d6c5 100644 --- a/UnrealTournament/utserver +++ b/UnrealTournament/utserver @@ -56,8 +56,8 @@ lgsmdir="${rootdir}/lgsm" functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" filesdir="${rootdir}/serverfiles" -systemdir="${filesdir}" -executabledir="${systemdir}/LinuxServer/Engine/Binaries/Linux" +systemdir="${filesdir}/LinuxServer" +executabledir="${systemdir}/Engine/Binaries/Linux" executable="./UE4Server-Linux-Shipping" servercfg="Game.ini" servercfgdir="${systemdir}/UnrealTournament/Saved/Config/LinuxServer" From 97f3e63c8cf1636318ce82b33ce5286fe86011f7 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sat, 20 Aug 2016 06:37:19 -0400 Subject: [PATCH 05/23] adding UT fix --- lgsm/functions/fix.sh | 8 ++++++++ lgsm/functions/fix_ut.sh | 14 ++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 lgsm/functions/fix_ut.sh diff --git a/lgsm/functions/fix.sh b/lgsm/functions/fix.sh index f31c010d7..365809b9b 100644 --- a/lgsm/functions/fix.sh +++ b/lgsm/functions/fix.sh @@ -43,6 +43,8 @@ if [ "${function_selfname}" != "command_install.sh" ]; then fix_ins.sh elif [ "${gamename}" == "ARMA 3" ]; then fix_arma3.sh + elif [ "${gamename}" == "ARMA 3" ]; then + fix_ut.sh fi fi @@ -72,5 +74,11 @@ if [ "${function_selfname}" == "command_install.sh" ]; then echo "=================================" sleep 1 fix_ut99.sh + elif [ "${gamename}" == "Unreal Tournament" ]; then + echo "" + echo "Applying ${gamename} Server Fixes" + echo "=================================" + sleep 1 + fix_ut.sh fi fi diff --git a/lgsm/functions/fix_ut.sh b/lgsm/functions/fix_ut.sh new file mode 100644 index 000000000..74233406f --- /dev/null +++ b/lgsm/functions/fix_ut.sh @@ -0,0 +1,14 @@ +#!/bin/bash +# LGSM fix_ut.sh function +# Author: Alexander Hurd +# Website: https://gameservermanagers.com +# Description: Resolves various issues with Unreal Tournament. + +local commandname="FIX" +local commandaction="Fix" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +#Set Binary Executable +echo "chmod +x ${executabledir}/${executable}" +chmod +x "${executabledir}/${executable}" +sleep 1 \ No newline at end of file From e4b7c985e1709a2fb382d0fee72e03b1ea96bc7b Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sat, 20 Aug 2016 07:03:06 -0400 Subject: [PATCH 06/23] fix --- lgsm/functions/fix.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/lgsm/functions/fix.sh b/lgsm/functions/fix.sh index 365809b9b..0178b363c 100644 --- a/lgsm/functions/fix.sh +++ b/lgsm/functions/fix.sh @@ -43,8 +43,6 @@ if [ "${function_selfname}" != "command_install.sh" ]; then fix_ins.sh elif [ "${gamename}" == "ARMA 3" ]; then fix_arma3.sh - elif [ "${gamename}" == "ARMA 3" ]; then - fix_ut.sh fi fi From fb4f8dab6cf982f242a27d124b2201d0eed16aa1 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sat, 20 Aug 2016 07:12:55 -0400 Subject: [PATCH 07/23] adding fix_ut function --- lgsm/functions/core_functions.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index e1e6cbbc7..d178f6eb3 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -322,6 +322,10 @@ functionfile="${FUNCNAME}" fn_fetch_function } +fix_ut.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} # Info From eecb4753cbd583053e929bc0871fa97fdbd8f0d3 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sat, 20 Aug 2016 07:37:53 -0400 Subject: [PATCH 08/23] adding Engine.ini --- lgsm/functions/install_config.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 0b93a02d7..585eed52c 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -169,6 +169,7 @@ fn_unreal4(){ echo "" echo "Configuring ${gamename} Server" echo "=================================" + sed -i "s/\"\"/\"${rconpass}\"/g" "${servercfgdir}/Engine.ini" } echo "" @@ -389,6 +390,9 @@ elif [ "${gamename}" == "Terraria" ]; then sleep 1 fn_defaultconfig elif [ "${gamename}" == "Unreal Tournament" ]; then + echo -e "downloading Engine.ini...\c" + wget -N /dev/null ${githuburl}/UnrealTournament/cfg/Engine.ini 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 fn_unreal4 elif [ "${gamename}" == "Unreal Tournament 2004" ]; then fn_unreal2config From 5440269e6714186b8d5fadea513eb8c06bc9ac66 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sat, 20 Aug 2016 08:23:58 -0400 Subject: [PATCH 09/23] adding UT configs --- UnrealTournament/cfg/Engine.ini | 2 +- UnrealTournament/cfg/Game.ini | 4 ++++ UnrealTournament/utserver | 8 ++++++-- lgsm/functions/install_config.sh | 31 +++++++++++++++++++++++++------ 4 files changed, 36 insertions(+), 9 deletions(-) create mode 100644 UnrealTournament/cfg/Game.ini diff --git a/UnrealTournament/cfg/Engine.ini b/UnrealTournament/cfg/Engine.ini index b9db58305..177eaafdb 100644 --- a/UnrealTournament/cfg/Engine.ini +++ b/UnrealTournament/cfg/Engine.ini @@ -1,3 +1,3 @@ [/Script/UnrealTournament.UTGameEngine] bFirstRun=False -RconPassword= +RconPassword="" diff --git a/UnrealTournament/cfg/Game.ini b/UnrealTournament/cfg/Game.ini new file mode 100644 index 000000000..15a1c9159 --- /dev/null +++ b/UnrealTournament/cfg/Game.ini @@ -0,0 +1,4 @@ +[/Script/UnrealTournament.UTGameState] +ServerName="" +ServerMOTD=WELCOME\n\nHeadshots for everyone. +ServerDescription=This is my server, have fun diff --git a/UnrealTournament/utserver b/UnrealTournament/utserver index a2e48d6c5..57abe8dda 100644 --- a/UnrealTournament/utserver +++ b/UnrealTournament/utserver @@ -26,12 +26,16 @@ pushbulletalert="off" pushbullettoken="accesstoken" # Start Variables +defaultmap="DM-Underland" +gametype="DM" +#defaultmap="CTF-FaceTest" +#gametype="CTF" +timelimit="10" ip="0.0.0.0" port="7777" fn_parms(){ -parms="UnrealTournament DM-DeckTest?Game=DM?TimeLimit=10 -port=${port}" -#parms="UnrealTournament CTF-FaceTest?Game=CTF?TimeLimit=15 -port=${port}" +parms="UnrealTournament ${defaultmap}?Game=${gametype}?TimeLimit=${timelimit} -port=${port}" } #### Advanced Variables #### diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 585eed52c..2b0828b9e 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -36,7 +36,7 @@ fn_userinputconfig(){ fn_script_log_info "changing rconpassword." sed -i "s/\"\"/\"${rconpass}\"/g" "${servercfgfullpath}" sleep 1 - } +} fn_arma3config(){ fn_defaultconfig @@ -165,11 +165,28 @@ fn_unreal2config(){ echo "" } -fn_unreal4(){ - echo "" - echo "Configuring ${gamename} Server" - echo "=================================" +fn_unrealtournament(){ + # allow user to input server name and password + if [ -z "${autoinstall}" ]; then + echo "" + echo "Configuring ${gamename} Server" + echo "=================================" + sleep 1 + read -p "Enter server name: " servername + read -p "Enter rcon password: " rconpass + else + servername="${servicename}" + rconpass="rconpassword" + fi + echo "changing hostname." + fn_script_log_info "changing hostname." + sed -i "s/\"\"/\"${servername}\"/g" "${servercfgdir}/Game.ini" + sleep 1 + echo "changing rconpassword." + fn_script_log_info "changing rconpassword." sed -i "s/\"\"/\"${rconpass}\"/g" "${servercfgdir}/Engine.ini" + sleep 1 + } echo "" @@ -392,8 +409,10 @@ elif [ "${gamename}" == "Terraria" ]; then elif [ "${gamename}" == "Unreal Tournament" ]; then echo -e "downloading Engine.ini...\c" wget -N /dev/null ${githuburl}/UnrealTournament/cfg/Engine.ini 2>&1 | grep -F HTTP | cut -c45- | uniq + echo -e "downloading dm.cfg...\c" + wget -N /dev/null ${githuburl}/UnrealTournament/cfg/Game.ini 2>&1 | grep -F HTTP | cut -c45- | uniq sleep 1 - fn_unreal4 + fn_unrealtournament elif [ "${gamename}" == "Unreal Tournament 2004" ]; then fn_unreal2config elif [ "${gamename}" == "Unreal Tournament 99" ]; then From ce9c70a7077db426bf9b355a7d3a2a980f7da8be Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sat, 20 Aug 2016 08:29:53 -0400 Subject: [PATCH 10/23] typo --- lgsm/functions/install_config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 2b0828b9e..ecc264ea2 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -409,7 +409,7 @@ elif [ "${gamename}" == "Terraria" ]; then elif [ "${gamename}" == "Unreal Tournament" ]; then echo -e "downloading Engine.ini...\c" wget -N /dev/null ${githuburl}/UnrealTournament/cfg/Engine.ini 2>&1 | grep -F HTTP | cut -c45- | uniq - echo -e "downloading dm.cfg...\c" + echo -e "downloading Game.ini...\c" wget -N /dev/null ${githuburl}/UnrealTournament/cfg/Game.ini 2>&1 | grep -F HTTP | cut -c45- | uniq sleep 1 fn_unrealtournament From b631c87b09de9f2186855ce4a884de90f9023310 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sat, 20 Aug 2016 08:41:40 -0400 Subject: [PATCH 11/23] fix map name --- UnrealTournament/utserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UnrealTournament/utserver b/UnrealTournament/utserver index 57abe8dda..8f1bb6498 100644 --- a/UnrealTournament/utserver +++ b/UnrealTournament/utserver @@ -28,7 +28,7 @@ pushbullettoken="accesstoken" # Start Variables defaultmap="DM-Underland" gametype="DM" -#defaultmap="CTF-FaceTest" +#defaultmap="CTF-Face" #gametype="CTF" timelimit="10" ip="0.0.0.0" From 5d81635e834ce74fb657e7930ac4e84c10823421 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sat, 20 Aug 2016 08:42:46 -0400 Subject: [PATCH 12/23] removing file --- UnrealTournament/uthubserver | 142 ----------------------------------- 1 file changed, 142 deletions(-) delete mode 100644 UnrealTournament/uthubserver diff --git a/UnrealTournament/uthubserver b/UnrealTournament/uthubserver deleted file mode 100644 index 908161fad..000000000 --- a/UnrealTournament/uthubserver +++ /dev/null @@ -1,142 +0,0 @@ -#!/bin/bash -# Unreal Tournament Hub -# Server Management Script -# Author: Daniel Gibbs -# Website: https://gameservermanagers.com -if [ -f ".dev-debug" ]; then - exec 5>dev-debug.log - BASH_XTRACEFD="5" - set -x -fi - -version="210516" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Start Variables -ip="0.0.0.0" - -fn_parms(){ -parms="UnrealTournament UT-Entry?Game=Lobby -port=${port}" -} - -#### Advanced Variables #### - -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" -githubbranch="master" - -# Server Details -servicename="ut-hub-server" -gamename="Unreal Tournament" -engine="unreal4" - -# Directories -rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" -selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -lockselfname=".${servicename}.lock" -lgsmdir="${rootdir}/lgsm" -functionsdir="${lgsmdir}/functions" -libdir="${lgsmdir}/lib" -filesdir="${rootdir}/serverfiles" -systemdir="${filesdir}/LinuxServer" -executabledir="${systemdir}/Engine/Binaries/Linux" -executable="./UE4Server-Linux-Shipping" -servercfg="Game.ini" -servercfgdir="${systemdir}/UnrealTournament/Saved/Config/LinuxServer" -servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/Game.ini" -backupdir="${rootdir}/backups" - -# Logging -logdays="7" -gamelogdir="${filesdir}/Logs" -scriptlogdir="${rootdir}/log/script" -consolelogdir="${rootdir}/log/console" -consolelogging="on" - -scriptlog="${scriptlogdir}/${servicename}-script.log" -consolelog="${consolelogdir}/${servicename}-console.log" -emaillog="${scriptlogdir}/${servicename}-email.log" - -scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%d-%m-%Y-%H-%M-%S').log" -consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M-%S').log" - -##### Script ##### -# Do not edit - -# Fetches core_dl for file downloads -fn_fetch_core_dl(){ -github_file_url_dir="lgsm/functions" -github_file_url_name="${functionfile}" -filedir="${functionsdir}" -filename="${github_file_url_name}" -githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${github_file_url_name}" -# If the file is missing, then download -if [ ! -f "${filedir}/${filename}" ]; then - if [ ! -d "${filedir}" ]; then - mkdir -p "${filedir}" - fi - echo -e " fetching ${filename}...\c" - # Check curl exists and use available path - curlpaths="$(command -v curl 2>/dev/null) $(which curl >/dev/null 2>&1) /usr/bin/curl /bin/curl /usr/sbin/curl /sbin/curl)" - for curlcmd in ${curlpaths} - do - if [ -x "${curlcmd}" ]; then - break - fi - done - # If curl exists download file - if [ "$(basename ${curlcmd})" == "curl" ]; then - curlfetch=$(${curlcmd} -s --fail -o "${filedir}/${filename}" "${githuburl}" 2>&1) - if [ $? -ne 0 ]; then - echo -e "\e[0;31mFAIL\e[0m\n" - echo "${curlfetch}" - echo -e "${githuburl}\n" - exit 1 - else - echo -e "\e[0;32mOK\e[0m" - fi - else - echo -e "\e[0;31mFAIL\e[0m\n" - echo "Curl is not installed!" - echo -e "" - exit 1 - fi - chmod +x "${filedir}/${filename}" -fi -source "${filedir}/${filename}" -} - -core_dl.sh(){ -# Functions are defined in core_functions.sh. -functionfile="${FUNCNAME}" -fn_fetch_core_dl -} - -core_functions.sh(){ -# Functions are defined in core_functions.sh. -functionfile="${FUNCNAME}" -fn_fetch_core_dl -} - -core_dl.sh -core_functions.sh - -getopt=$1 -core_getopt.sh From 02e2eadbab27f86ffefd5e4c91a0a65da0faf7b1 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sat, 20 Aug 2016 08:44:59 -0400 Subject: [PATCH 13/23] removing unused variable --- UnrealTournament/utserver | 1 - 1 file changed, 1 deletion(-) diff --git a/UnrealTournament/utserver b/UnrealTournament/utserver index 8f1bb6498..ac27d2474 100644 --- a/UnrealTournament/utserver +++ b/UnrealTournament/utserver @@ -66,7 +66,6 @@ executable="./UE4Server-Linux-Shipping" servercfg="Game.ini" servercfgdir="${systemdir}/UnrealTournament/Saved/Config/LinuxServer" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/Game.ini" backupdir="${rootdir}/backups" # Logging From 906032b5ea4b281ac8c48b3a6e0d9f6509ee5f6c Mon Sep 17 00:00:00 2001 From: jach11 Date: Sun, 21 Aug 2016 05:28:28 -0400 Subject: [PATCH 14/23] Fix incorrect spelling Correct the incorrect spelling of dependencies --- lgsm/functions/check_deps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 57f432ec4..6ccde762c 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -120,7 +120,7 @@ fn_check_loop(){ fn_deps_detector done - # user to be informaed of any missing dependecies + # user to be informaed of any missing dependencies fn_found_missing_deps } @@ -128,7 +128,7 @@ info_distro.sh if [ "${function_selfname}" == "command_install.sh" ]; then echo "" - echo "Checking Dependecies" + echo "Checking Dependencies" echo "=================================" fi From 57cfce6b65d59094ba61e66c7775192c7c827aa9 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sun, 21 Aug 2016 23:35:58 -0400 Subject: [PATCH 15/23] adding Enemy Territory --- EnemyTerritory/cfg/lgsm-default.cfg | 125 +++++++++++++++++++++ EnemyTerritory/etserver | 143 +++++++++++++++++++++++++ lgsm/functions/install_config.sh | 5 + lgsm/functions/install_server_files.sh | 2 + 4 files changed, 275 insertions(+) create mode 100644 EnemyTerritory/cfg/lgsm-default.cfg create mode 100644 EnemyTerritory/etserver diff --git a/EnemyTerritory/cfg/lgsm-default.cfg b/EnemyTerritory/cfg/lgsm-default.cfg new file mode 100644 index 000000000..326e27fc9 --- /dev/null +++ b/EnemyTerritory/cfg/lgsm-default.cfg @@ -0,0 +1,125 @@ +set dedicated "2" // 1: dedicated server for lan 2: dedicated server for internet +// set net_ip "" // set to override the default IP ET uses +// set net_port "27960" // set to override the default port ET uses + +// PASSWORDS & CLIENTS + +set sv_maxclients "20" // number of players including private slots +set g_password "" // set to password protect the server +set sv_privateclients "4" // if set > 0, then this number of client slots will be reserved for connections +set sv_privatepassword "" // that have "password" set to the value of "sv_privatePassword" +set rconpassword "" // remote console access password +set refereePassword "" // referee status password + +// DL, RATE + +set sv_maxRate "13000" // 10000 standard but poor for ET +set sv_dl_maxRate "42000" // increase/decerease if you have plenty/little spare bandwidth +set sv_allowDownload "0" // global toggle for both legacy download and web download +set sv_wwwDownload "0" // toggle to enable web download +set sv_wwwBaseURL "" // base URL for redirection +set sv_wwwDlDisconnected "0" // tell clients to perform their downloads while disconnected from the server +set sv_wwwFallbackURL "" // URL to send to if an http/ftp fails or is refused client side + +// MOTD ETC + +set sv_hostname "" // name of server here +set server_motd0 " ^NEnemy Territory ^7MOTD " // message in right corner of join screen here +set server_motd1 "" +set server_motd2 "" +set server_motd3 "" +set server_motd4 "" +set server_motd5 "" + +// MISC SETTINGS + +set g_heavyWeaponRestriction "100" +set g_antilag "1" +set g_altStopwatchMode "0" +set g_autofireteams "1" +set g_complaintlimit "6" +set g_ipcomplaintlimit "3" +set g_fastres "0" +set g_friendlyFire "1" +//set g_gametype "4" // Game type should be set from map rotation script +set g_minGameClients "8" +set g_maxlives "0" +set g_alliedmaxlives "0" +set g_axismaxlives "0" +set g_teamforcebalance "1" +set g_noTeamSwitching "0" +set g_voiceChatsAllowed "4" +set g_doWarmup "0" +set g_warmup "30" +set g_spectatorInactivity "0" +set sv_floodProtect "1" +set sv_allowDownload "1" +set sv_pure "1" +set sv_minping "0" +set sv_maxping "0" +set match_latejoin "1" +set match_minplayers "4" +set match_mutespecs "0" +set match_readypercent "100" +set match_timeoutcount "0" +set match_warmupDamage "1" +set team_maxplayers "0" +set team_nocontrols "1" +set pmove_fixed "0" +set pmove_msec "8" + +// LMS ONLY SETTINGS + +set g_lms_teamForceBalance "1" +set g_lms_roundlimit "3" +set g_lms_matchlimit "2" +set g_lms_currentMatch "0" +set g_lms_lockTeams "0" +set g_lms_followTeamOnly "1" + +// VOTING + +set g_allowVote "1" +set vote_limit "5" +set vote_percent "50" +set vote_allow_comp "1" +set vote_allow_gametype "1" +set vote_allow_kick "1" +set vote_allow_map "1" +set vote_allow_matchreset "1" +set vote_allow_mutespecs "1" +set vote_allow_nextmap "1" +set vote_allow_pub "1" +set vote_allow_referee "0" +set vote_allow_shuffleteams "1" +set vote_allow_swapteams "1" +set vote_allow_friendlyfire "1" +set vote_allow_timelimit "0" +set vote_allow_warmupdamage "1" +set vote_allow_antilag "1" +set vote_allow_balancedteams "1" +set vote_allow_muting "1" + +// PUNKBUSTER + +// sv_punkbuster is a readonly variable. Use +set sv_punkbuster on command line or use the command pb_sv_enable in the console +//pb_sv_enable + +// LOGGING + +set g_log "etserver.log" // Game logging +set g_logsync 0 +set logfile 0 // Console logging ( 1: enable 2: enable and sync ) + +// MAP ROTATION + +exec campaigncycle.cfg // Campaign mode +//exec objectivecycle.cfg // Objective mode +//exec lmscycle.cfg // Last Man Standing mode + +// WATCHDOG + +// in case the game dies with an ERR_DROP +// or any situation leading to server running with no map +//set com_watchdog 10 // defaults 60 +set com_watchdog_cmd "exec campaigncycle.cfg" // defaults to quit diff --git a/EnemyTerritory/etserver b/EnemyTerritory/etserver new file mode 100644 index 000000000..944b1529c --- /dev/null +++ b/EnemyTerritory/etserver @@ -0,0 +1,143 @@ +#!/bin/bash +# Enemy Territory +# Server Management Script +# Author: Daniel Gibbs +# Website: https://gameservermanagers.com +if [ -f ".dev-debug" ]; then + exec 5>dev-debug.log + BASH_XTRACEFD="5" + set -x +fi + +version="210516" + +#### Variables #### + +# Notification Alerts +# (on|off) + +# Email +emailalert="off" +email="email@example.com" + +# Pushbullet +# https://www.pushbullet.com/#settings +pushbulletalert="off" +pushbullettoken="accesstoken" + +# Start Variables +ip="0.0.0.0" +port="27960" + +fn_parms(){ + parms="+set net_strict 1 +set net_ip ${ip} +set net_port ${port} +set fs_homepath ${filesdir} +exec ${servicename}.cfg" +} + +#### Advanced Variables #### + +# Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="dgibbs64" +githubrepo="linuxgsm" +githubbranch="master" + +# Server Details +servicename="et-server" +gamename="Enemy Territory" +engine="idtech3" + +# Directories +rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" +selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" +lockselfname=".${servicename}.lock" +lgsmdir="${rootdir}/lgsm" +functionsdir="${lgsmdir}/functions" +libdir="${lgsmdir}/lib" +filesdir="${rootdir}/serverfiles" +systemdir="${filesdir}" +executabledir="${systemdir}" +executable="./etded" +servercfg="${servicename}.cfg" +servercfgdir="${systemdir}/etmain" +servercfgfullpath="${servercfgdir}/${servercfg}" +servercfgdefault="${servercfgdir}/lgsm-default.cfg" +backupdir="${rootdir}/backups" + +# Logging +logdays="7" +gamelogdir="${filesdir}/Logs" +scriptlogdir="${rootdir}/log/script" +consolelogdir="${rootdir}/log/console" +consolelogging="on" + +scriptlog="${scriptlogdir}/${servicename}-script.log" +consolelog="${consolelogdir}/${servicename}-console.log" +emaillog="${scriptlogdir}/${servicename}-email.log" + +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%d-%m-%Y-%H-%M-%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M-%S').log" + +##### Script ##### +# Do not edit + +# Fetches core_dl for file downloads +fn_fetch_core_dl(){ +github_file_url_dir="lgsm/functions" +github_file_url_name="${functionfile}" +filedir="${functionsdir}" +filename="${github_file_url_name}" +githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${github_file_url_name}" +# If the file is missing, then download +if [ ! -f "${filedir}/${filename}" ]; then + if [ ! -d "${filedir}" ]; then + mkdir -p "${filedir}" + fi + echo -e " fetching ${filename}...\c" + # Check curl exists and use available path + curlpaths="$(command -v curl 2>/dev/null) $(which curl >/dev/null 2>&1) /usr/bin/curl /bin/curl /usr/sbin/curl /sbin/curl)" + for curlcmd in ${curlpaths} + do + if [ -x "${curlcmd}" ]; then + break + fi + done + # If curl exists download file + if [ "$(basename ${curlcmd})" == "curl" ]; then + curlfetch=$(${curlcmd} -s --fail -o "${filedir}/${filename}" "${githuburl}" 2>&1) + if [ $? -ne 0 ]; then + echo -e "\e[0;31mFAIL\e[0m\n" + echo "${curlfetch}" + echo -e "${githuburl}\n" + exit 1 + else + echo -e "\e[0;32mOK\e[0m" + fi + else + echo -e "\e[0;31mFAIL\e[0m\n" + echo "Curl is not installed!" + echo -e "" + exit 1 + fi + chmod +x "${filedir}/${filename}" +fi +source "${filedir}/${filename}" +} + +core_dl.sh(){ +# Functions are defined in core_functions.sh. +functionfile="${FUNCNAME}" +fn_fetch_core_dl +} + +core_functions.sh(){ +# Functions are defined in core_functions.sh. +functionfile="${FUNCNAME}" +fn_fetch_core_dl +} + +core_dl.sh +core_functions.sh + +getopt=$1 +core_getopt.sh diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index ecc264ea2..e0a67c199 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -281,6 +281,11 @@ elif [ "${gamename}" == "Double Action: Boogaloo" ]; then fn_sourceconfig elif [ "${gamename}" == "Empires Mod" ]; then fn_defaultconfig +elif [ "${gamename}" == "EnemyTerritory" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/EnemyTerritory/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_defaultconfig elif [ "${gamename}" == "Fistful of Frags" ]; then echo -e "downloading lgsm-default.cfg...\c" wget -N /dev/null ${githuburl}/FistfulOfFrags/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index fc6969749..4629ce821 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -13,6 +13,8 @@ fn_install_server_files(){ fileurl="https://gameservermanagers.com/files/UnrealTournament99/ut99-server-451-ultimate-linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="ut99-server-451-ultimate-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="49cb24d0550ff6ddeaba6007045c6edd" elif [ "${gamename}" == "Unreal Tournament 2004" ]; then fileurl="https://gameservermanagers.com/files/UnrealTournament2004/ut2004-server-3339-ultimate-linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="ut2004-server-3339-ultimate-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="67c5e2cd9c2a4b04f163962ee41eff54" + elif [ "${gamename}" == "Enemy Territory" ]; then + fileurl="https://s3.amazonaws.com/linuxgsm/enemy-territory.260b.tar.gz"; filedir="${lgsmdir}/tmp"; filename="enemy-territory.260b.tar.gz"; executecmd="noexecute" run="norun"; force="noforce"; md5="b566391fbcf5315ebe5816aa6e3ef9a8" elif [ "${gamename}" == "Unreal Tournament" ]; then fileurl="https://s3.amazonaws.com/unrealtournament/UnrealTournament-Server-XAN-3045522-Linux.zip"; filedir="${lgsmdir}/tmp"; filename="UnrealTournament-Server-XAN-3045522-Linux.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="553fed5645a9fc623e92563049bf79f6" elif [ "${gamename}" == "GoldenEye: Source" ]; then From fa66e46aaf126aacd005fc97cd601cbd720d15f1 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sun, 21 Aug 2016 23:43:16 -0400 Subject: [PATCH 16/23] update --- lgsm/functions/command_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index 8af67e12a..b597292b8 100644 --- a/lgsm/functions/command_install.sh +++ b/lgsm/functions/command_install.sh @@ -18,7 +18,7 @@ check_deps.sh if [ "${gamename}" == "Unreal Tournament 2004" ]; then install_server_files.sh install_ut2k4_key.sh -elif [ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Mumble" ]; then +elif ||[ "${gamename}" == "EnemyTerritory" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Mumble" ]; then installer=1 install_server_files.sh elif [ -n "${appid}" ]; then From d3a5e97148daeea1c64c4f595f25fb83cb854661 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sun, 21 Aug 2016 23:46:07 -0400 Subject: [PATCH 17/23] add space --- lgsm/functions/command_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index b597292b8..075c66a06 100644 --- a/lgsm/functions/command_install.sh +++ b/lgsm/functions/command_install.sh @@ -18,7 +18,7 @@ check_deps.sh if [ "${gamename}" == "Unreal Tournament 2004" ]; then install_server_files.sh install_ut2k4_key.sh -elif ||[ "${gamename}" == "EnemyTerritory" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Mumble" ]; then +elif ||[ "${gamename}" == "Enemy Territory" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Mumble" ]; then installer=1 install_server_files.sh elif [ -n "${appid}" ]; then From 101d01998a32fbc2bf6e3c8b5e7a544f1ee3e84b Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sun, 21 Aug 2016 23:48:10 -0400 Subject: [PATCH 18/23] syntax fix --- lgsm/functions/command_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index 075c66a06..5184d2871 100644 --- a/lgsm/functions/command_install.sh +++ b/lgsm/functions/command_install.sh @@ -18,7 +18,7 @@ check_deps.sh if [ "${gamename}" == "Unreal Tournament 2004" ]; then install_server_files.sh install_ut2k4_key.sh -elif ||[ "${gamename}" == "Enemy Territory" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Mumble" ]; then +elif [ "${gamename}" == "Enemy Territory" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Mumble" ]; then installer=1 install_server_files.sh elif [ -n "${appid}" ]; then From 62a2a8d026ee8f889aed918fd4e866a211055575 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Mon, 22 Aug 2016 00:03:07 -0400 Subject: [PATCH 19/23] archive fix --- lgsm/functions/install_server_files.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 4629ce821..dc9713586 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -14,7 +14,7 @@ fn_install_server_files(){ elif [ "${gamename}" == "Unreal Tournament 2004" ]; then fileurl="https://gameservermanagers.com/files/UnrealTournament2004/ut2004-server-3339-ultimate-linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="ut2004-server-3339-ultimate-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="67c5e2cd9c2a4b04f163962ee41eff54" elif [ "${gamename}" == "Enemy Territory" ]; then - fileurl="https://s3.amazonaws.com/linuxgsm/enemy-territory.260b.tar.gz"; filedir="${lgsmdir}/tmp"; filename="enemy-territory.260b.tar.gz"; executecmd="noexecute" run="norun"; force="noforce"; md5="b566391fbcf5315ebe5816aa6e3ef9a8" + fileurl="https://s3.amazonaws.com/linuxgsm/enemy-territory.260b.tar.gz"; filedir="${lgsmdir}/tmp"; filename="enemy-territory.260b.tar.gz"; executecmd="noexecute" run="norun"; force="noforce"; md5="ded32053e470fe15d9403ec4a0ab7e89" elif [ "${gamename}" == "Unreal Tournament" ]; then fileurl="https://s3.amazonaws.com/unrealtournament/UnrealTournament-Server-XAN-3045522-Linux.zip"; filedir="${lgsmdir}/tmp"; filename="UnrealTournament-Server-XAN-3045522-Linux.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="553fed5645a9fc623e92563049bf79f6" elif [ "${gamename}" == "GoldenEye: Source" ]; then From 57eaf5a020cfa47034ccf09ba71328c3d633bcee Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Mon, 22 Aug 2016 00:14:00 -0400 Subject: [PATCH 20/23] config fix --- lgsm/functions/install_config.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index e0a67c199..beed0a513 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -281,11 +281,13 @@ elif [ "${gamename}" == "Double Action: Boogaloo" ]; then fn_sourceconfig elif [ "${gamename}" == "Empires Mod" ]; then fn_defaultconfig -elif [ "${gamename}" == "EnemyTerritory" ]; then +elif [ "${gamename}" == "Enemy Territory" ]; then echo -e "downloading lgsm-default.cfg...\c" wget -N /dev/null ${githuburl}/EnemyTerritory/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq sleep 1 fn_defaultconfig + fn_userinputconfig + echo "" elif [ "${gamename}" == "Fistful of Frags" ]; then echo -e "downloading lgsm-default.cfg...\c" wget -N /dev/null ${githuburl}/FistfulOfFrags/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq From ac7b32a933dbc1ab90c165611fe8aa4c9f58ff6b Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Mon, 22 Aug 2016 00:19:35 -0400 Subject: [PATCH 21/23] config filename --- lgsm/functions/install_config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index beed0a513..e23cac0a9 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -283,7 +283,7 @@ elif [ "${gamename}" == "Empires Mod" ]; then fn_defaultconfig elif [ "${gamename}" == "Enemy Territory" ]; then echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/EnemyTerritory/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq + wget -N /dev/null ${githuburl}/EnemyTerritory/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq sleep 1 fn_defaultconfig fn_userinputconfig From 37a38bc7f215fe5fbc1a671025adb2a1ac880b9f Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Mon, 22 Aug 2016 00:51:47 -0400 Subject: [PATCH 22/23] adding glib req --- lgsm/functions/info_glibc.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index 2a2f289bc..6ec3a6a96 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -80,6 +80,9 @@ elif [ "${gamename}" == "TeamSpeak 3" ]; then elif [ "${gamename}" == "Mumble" ]; then glibcrequired="NOT REQUIRED" glibcfix="no" +elif [ "${engine}" == "idtech3" ]; then + glibcrequired="2.0" + glibcfix="no" else glibcrequired="UNKNOWN" glibcfix="no" From 75e4f1dc132e3a633bec62b33270036b212476e7 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 22 Aug 2016 14:16:34 +0100 Subject: [PATCH 23/23] Updated URL's to new location LGSM has been moved to an organisation. There is a new URL https://github.com/GameServerManagers/LinuxGSM/ The old url will still work. So there is no issue with old installs. --- 7DaysToDie/sdtdserver | 4 ++-- ARKSurvivalEvolved/arkserver | 10 +++++----- Arma3/arma3server | 4 ++-- BlackMesa/bmdmserver | 4 ++-- BladeSymphony/bsserver | 4 ++-- BrainBread2/bb2server | 4 ++-- CodenameCURE/ccserver | 4 ++-- CounterStrike/csserver | 4 ++-- CounterStrikeConditionZero/csczserver | 4 ++-- CounterStrikeGlobalOffensive/csgoserver | 4 ++-- CounterStrikeSource/cssserver | 4 ++-- DayOfDefeat/dodserver | 4 ++-- DayOfDefeatSource/dodsserver | 4 ++-- DayOfInfamy/doiserver | 4 ++-- DeathmatchClassic/dmcserver | 4 ++-- DontStarveTogether/dstserver | 4 ++-- DoubleActionBoogaloo/dabserver | 4 ++-- EmpiresMod/emserver | 4 ++-- EnemyTerritory/etserver | 4 ++-- FistfulOfFrags/fofserver | 4 ++-- GarrysMod/gmodserver | 4 ++-- GoldenEyeSource/gesserver | 4 ++-- HalfLife2Deathmatch/hl2dmserver | 4 ++-- HalfLifeDeathmatch/hldmserver | 4 ++-- HalfLifeDeathmatchSource/hldmsserver | 4 ++-- Hurtworld/hwserver | 4 ++-- Insurgency/insserver | 4 ++-- JustCause2/jc2server | 4 ++-- KillingFloor/kfserver | 4 ++-- Left4Dead/l4dserver | 4 ++-- Left4Dead2/l4d2server | 4 ++-- Mumble/mumbleserver | 4 ++-- NS2Combat/ns2cserver | 4 ++-- NaturalSelection2/ns2server | 4 ++-- NoMoreRoomInHell/nmrihserver | 4 ++-- OpposingForce/opforserver | 4 ++-- PiratesVikingandKnightsII/pvkiiserver | 4 ++-- ProjectZomboid/pzserver | 4 ++-- QuakeLive/qlserver | 4 ++-- README.md | 20 ++++++++++---------- RedOrchestra/roserver | 4 ++-- Ricochet/ricochetserver | 4 ++-- Rust/cfg/lgsm-default.cfg | 2 +- Rust/rustserver | 4 ++-- SeriousSam3BFE/ss3sserver | 6 +++--- Starbound/sbserver | 4 ++-- SvenCoop/svencoopserver | 4 ++-- TeamFortress2/tf2server | 4 ++-- TeamFortressClassic/tfcserver | 4 ++-- TeamSpeak3/ts3server | 4 ++-- Teeworlds/twserver | 4 ++-- Terraria/terrariaserver | 4 ++-- UnrealTournament/utserver | 4 ++-- UnrealTournament2004/ut2k4server | 4 ++-- UnrealTournament99/ut99server | 4 ++-- functions/core_functions.sh | 4 ++-- lgsm/functions/command_fastdl.sh | 4 ++-- tests/tests_jc2server.sh | 4 ++-- tests/tests_ts3server.sh | 4 ++-- 59 files changed, 129 insertions(+), 129 deletions(-) diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index f162505c0..72a7bcaf8 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -43,8 +43,8 @@ parms="-logfile ${gamelogdir}/output_log__`date +%Y-%m-%d__%H-%M-%S`.txt -quit - # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index e21ac212e..58840fd0f 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -37,10 +37,10 @@ rconport="32330" rconpassword="" # Set to enable rcon maxplayers="50" ip="0.0.0.0" -updateonstart="off" - +updateonstart="off" + fn_parms(){ -parms="\"TheIsland?listen?MultiHome=${ip}?SessionName=${servername}?MaxPlayers=${maxplayers}?QueryPort=${queryport}?RCONPort=${rconport}?Port=${port}?ServerAdminPassword=${rconpassword}\"" +parms="\"TheIsland?listen?MultiHome=${ip}?SessionName=${servername}?MaxPlayers=${maxplayers}?QueryPort=${queryport}?RCONPort=${rconport}?Port=${port}?ServerAdminPassword=${rconpassword}\"" } #### Advanced Variables #### @@ -48,8 +48,8 @@ parms="\"TheIsland?listen?MultiHome=${ip}?SessionName=${servername}?MaxPlayers=$ # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/Arma3/arma3server b/Arma3/arma3server index 9f4c64e03..70039ba37 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -59,8 +59,8 @@ bepath="" # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/BlackMesa/bmdmserver b/BlackMesa/bmdmserver index 7aceb5515..9250d2a5b 100644 --- a/BlackMesa/bmdmserver +++ b/BlackMesa/bmdmserver @@ -53,8 +53,8 @@ parms="-game bms -strictportbind -ip ${ip} -port ${port} +clientport ${clientpor # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/BladeSymphony/bsserver b/BladeSymphony/bsserver index 8289b0544..4d9960123 100644 --- a/BladeSymphony/bsserver +++ b/BladeSymphony/bsserver @@ -48,8 +48,8 @@ parms="-autoupdate -strictportbind -ip ${ip} -port ${port} +clientport ${clientp # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/BrainBread2/bb2server b/BrainBread2/bb2server index 09c835790..669be4e11 100644 --- a/BrainBread2/bb2server +++ b/BrainBread2/bb2server @@ -53,8 +53,8 @@ parms="-game brainbread2 -insecure -strictportbind -ip ${ip} -port ${port} +clie # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/CodenameCURE/ccserver b/CodenameCURE/ccserver index 63f6d5030..7abd395cf 100644 --- a/CodenameCURE/ccserver +++ b/CodenameCURE/ccserver @@ -48,8 +48,8 @@ parms="-game cure -insecure -strictportbind -ip ${ip} -port ${port} +clientport # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/CounterStrike/csserver b/CounterStrike/csserver index 6e684eba0..9871f6ac2 100644 --- a/CounterStrike/csserver +++ b/CounterStrike/csserver @@ -47,8 +47,8 @@ parms="-game cstrike -strictportbind +ip ${ip} -port ${port} +clientport ${clien # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/CounterStrikeConditionZero/csczserver b/CounterStrikeConditionZero/csczserver index 53fb4d9ac..13fe3da1e 100644 --- a/CounterStrikeConditionZero/csczserver +++ b/CounterStrikeConditionZero/csczserver @@ -47,8 +47,8 @@ parms="-game czero -strictportbind +ip ${ip} -port ${port} +clientport ${clientp # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index b1b3ceedc..1f8c42864 100755 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -71,8 +71,8 @@ parms="-game csgo -usercon -strictportbind -ip ${ip} -port ${port} +clientport $ # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/CounterStrikeSource/cssserver b/CounterStrikeSource/cssserver index 210c05f57..27d58cc60 100644 --- a/CounterStrikeSource/cssserver +++ b/CounterStrikeSource/cssserver @@ -53,8 +53,8 @@ parms="-game cstrike -strictportbind -ip ${ip} -port ${port} +clientport ${clien # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/DayOfDefeat/dodserver b/DayOfDefeat/dodserver index 43f8fa110..12168ee28 100644 --- a/DayOfDefeat/dodserver +++ b/DayOfDefeat/dodserver @@ -47,8 +47,8 @@ parms="-game dod -strictportbind +ip ${ip} -port ${port} +clientport ${clientpor # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/DayOfDefeatSource/dodsserver b/DayOfDefeatSource/dodsserver index 8c90f3893..545b0a50d 100644 --- a/DayOfDefeatSource/dodsserver +++ b/DayOfDefeatSource/dodsserver @@ -48,8 +48,8 @@ parms="-game dod -strictportbind -ip ${ip} -port ${port} +clientport ${clientpor # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/DayOfInfamy/doiserver b/DayOfInfamy/doiserver index 3dde94acf..b8641bc87 100644 --- a/DayOfInfamy/doiserver +++ b/DayOfInfamy/doiserver @@ -50,8 +50,8 @@ parms="-game doi -strictportbind -ip ${ip} -port ${port} +clientport ${clientpor # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/DeathmatchClassic/dmcserver b/DeathmatchClassic/dmcserver index e41515dbb..654072aa5 100644 --- a/DeathmatchClassic/dmcserver +++ b/DeathmatchClassic/dmcserver @@ -47,8 +47,8 @@ parms="-game dmc -strictportbind +ip ${ip} -port ${port} +clientport ${clientpor # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index 9bca51889..e9ecfbd05 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -46,8 +46,8 @@ parms="-console -cluster MyDediServer -shard Master" # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/DoubleActionBoogaloo/dabserver b/DoubleActionBoogaloo/dabserver index 2ff486791..41e3d4cd8 100644 --- a/DoubleActionBoogaloo/dabserver +++ b/DoubleActionBoogaloo/dabserver @@ -48,8 +48,8 @@ parms="-strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_por # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/EmpiresMod/emserver b/EmpiresMod/emserver index 40ec7116c..3d51fbff7 100644 --- a/EmpiresMod/emserver +++ b/EmpiresMod/emserver @@ -53,8 +53,8 @@ parms="-game empires -strictportbind -ip ${ip} -port ${port} +clientport ${clien # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/EnemyTerritory/etserver b/EnemyTerritory/etserver index 944b1529c..c49619f74 100644 --- a/EnemyTerritory/etserver +++ b/EnemyTerritory/etserver @@ -38,8 +38,8 @@ fn_parms(){ # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Server Details diff --git a/FistfulOfFrags/fofserver b/FistfulOfFrags/fofserver index 4a5e9d75f..1f263eee2 100644 --- a/FistfulOfFrags/fofserver +++ b/FistfulOfFrags/fofserver @@ -48,8 +48,8 @@ parms="-game fof -strictportbind -ip ${ip} -port ${port} +clientport ${clientpor # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index bc21fda29..7c9179c4b 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -69,8 +69,8 @@ parms="-game garrysmod -strictportbind -ip ${ip} -port ${port} -tickrate ${tickr # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/GoldenEyeSource/gesserver b/GoldenEyeSource/gesserver index 1d7293cde..deefdbb9c 100644 --- a/GoldenEyeSource/gesserver +++ b/GoldenEyeSource/gesserver @@ -49,8 +49,8 @@ parms="-game gesource -strictportbind -ip ${ip} -port ${port} +clientport ${clie # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam - 2007 SDK diff --git a/HalfLife2Deathmatch/hl2dmserver b/HalfLife2Deathmatch/hl2dmserver index 3d7bf06fa..df2a3060b 100644 --- a/HalfLife2Deathmatch/hl2dmserver +++ b/HalfLife2Deathmatch/hl2dmserver @@ -48,8 +48,8 @@ parms="-game hl2mp -strictportbind -ip ${ip} -port ${port} +clientport ${clientp # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/HalfLifeDeathmatch/hldmserver b/HalfLifeDeathmatch/hldmserver index 477eaba63..57a414f1f 100644 --- a/HalfLifeDeathmatch/hldmserver +++ b/HalfLifeDeathmatch/hldmserver @@ -47,8 +47,8 @@ parms="-game valve -strictportbind +ip ${ip} -port ${port} +clientport ${clientp # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/HalfLifeDeathmatchSource/hldmsserver b/HalfLifeDeathmatchSource/hldmsserver index ee8060dea..7e847fa12 100644 --- a/HalfLifeDeathmatchSource/hldmsserver +++ b/HalfLifeDeathmatchSource/hldmsserver @@ -48,8 +48,8 @@ parms="-game hl1mp -strictportbind -ip ${ip} -port ${port} +clientport ${clientp # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/Hurtworld/hwserver b/Hurtworld/hwserver index 6929b5324..34728b3c8 100644 --- a/Hurtworld/hwserver +++ b/Hurtworld/hwserver @@ -62,8 +62,8 @@ parms="-batchmode -nographics -exec \"host ${port} ${map} ${loadsave};queryport # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/Insurgency/insserver b/Insurgency/insserver index 1acace084..ae7937733 100644 --- a/Insurgency/insserver +++ b/Insurgency/insserver @@ -50,8 +50,8 @@ parms="-game insurgency -strictportbind -ip ${ip} -port ${port} +clientport ${cl # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/JustCause2/jc2server b/JustCause2/jc2server index 76ab6dfe8..1c97e6a4d 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -42,8 +42,8 @@ parms="" # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/KillingFloor/kfserver b/KillingFloor/kfserver index 15a5ff522..40f35d77c 100644 --- a/KillingFloor/kfserver +++ b/KillingFloor/kfserver @@ -47,8 +47,8 @@ parms="server ${defaultmap}?game=KFmod.KFGameType?VACSecured=true -nohomedir ini # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/Left4Dead/l4dserver b/Left4Dead/l4dserver index d7507a042..ac7fdc425 100644 --- a/Left4Dead/l4dserver +++ b/Left4Dead/l4dserver @@ -48,8 +48,8 @@ parms="-game left4dead -strictportbind -ip ${ip} -port ${port} +clientport ${cli # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/Left4Dead2/l4d2server b/Left4Dead2/l4d2server index f92f589e9..7d38cd071 100644 --- a/Left4Dead2/l4d2server +++ b/Left4Dead2/l4d2server @@ -47,8 +47,8 @@ parms="-game left4dead2 -strictportbind -ip ${ip} -port ${port} +clientport ${cl # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index 54d0b4e71..ba7db3da3 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -38,8 +38,8 @@ parms="-fg -ini ${servercfgfullpath}" # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" diff --git a/NS2Combat/ns2cserver b/NS2Combat/ns2cserver index 034848163..559511eec 100644 --- a/NS2Combat/ns2cserver +++ b/NS2Combat/ns2cserver @@ -55,8 +55,8 @@ parms="-name \"${servername}\" -port ${port} -webadmin -webdomain ${ip} -webuser # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index 1190f4a12..94320f0da 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -55,8 +55,8 @@ parms="-name \"${servername}\" -port ${port} -webadmin -webdomain ${ip} -webuser # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/NoMoreRoomInHell/nmrihserver b/NoMoreRoomInHell/nmrihserver index baca45cd3..0a68e2812 100644 --- a/NoMoreRoomInHell/nmrihserver +++ b/NoMoreRoomInHell/nmrihserver @@ -53,8 +53,8 @@ parms="-game nmrih -insecure -strictportbind -ip ${ip} -port ${port} +clientport # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/OpposingForce/opforserver b/OpposingForce/opforserver index 394c1a6a7..58f72e481 100644 --- a/OpposingForce/opforserver +++ b/OpposingForce/opforserver @@ -47,8 +47,8 @@ parms="-game gearbox -strictportbind +ip ${ip} -port ${port} +clientport ${clien # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/PiratesVikingandKnightsII/pvkiiserver b/PiratesVikingandKnightsII/pvkiiserver index 4091735b3..5abecfa19 100644 --- a/PiratesVikingandKnightsII/pvkiiserver +++ b/PiratesVikingandKnightsII/pvkiiserver @@ -48,8 +48,8 @@ parms="-game pvkii -strictportbind -ip ${ip} -port ${port} +clientport ${clientp # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/ProjectZomboid/pzserver b/ProjectZomboid/pzserver index dafab0d38..c07be1e49 100644 --- a/ProjectZomboid/pzserver +++ b/ProjectZomboid/pzserver @@ -44,8 +44,8 @@ parms="-ip ${ip} -adminpassword \"${adminpassword}\"" # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/QuakeLive/qlserver b/QuakeLive/qlserver index 1e2ece42c..19b27b27e 100755 --- a/QuakeLive/qlserver +++ b/QuakeLive/qlserver @@ -51,8 +51,8 @@ fn_parms(){ # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/README.md b/README.md index 79748cc87..844d13257 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@

Linux Game Server Managers_

-linux Game Server Managers +linux Game Server Managers -[![Build Status](https://travis-ci.org/dgibbs64/linuxgsm.svg?branch=master)](https://travis-ci.org/dgibbs64/linuxgsm) -[![Under Development](https://badge.waffle.io/dgibbs64/linuxgsm.svg?label=Under%20Development&title=Under%20Development)](http://waffle.io/dgibbs64/linuxgsm) +[![Build Status](https://travis-ci.org/GameServerManagers/LinuxGSM.svg?branch=master)](https://travis-ci.org/GameServerManagers/LinuxGSM) +[![Under Development](https://badge.waffle.io/GameServerManagers/LinuxGSM.svg?label=Under%20Development&title=Under%20Development)](http://waffle.io/GameServerManagers/LinuxGSM) The Linux Game Server Managers are command line tools for quick, simple deployment and management of various dedicated game servers and voice alert servers. @@ -29,13 +29,13 @@ The Linux Game Server Managers are tested to work on the following Linux distros Other distros are likely to work but are not fully tested.

Specific Requirements

FAQ

All FAQ can be found here. -https://github.com/dgibbs64/linuxgsm/wiki/FAQ +https://github.com/GameServerManagers/LinuxGSM/wiki/FAQ

Donate

If you want to donate to the project you can via PayPal, Flattr or Gratipay. I have had a may kind people show their support by sending me a donation. Any donations you send help cover my server costs and buy me a drink. Cheers!
    @@ -44,10 +44,10 @@ If you want to donate to the project you can via PayPal, Flattr or Gratipay. I h

    Useful Links

    Social

    diff --git a/RedOrchestra/roserver b/RedOrchestra/roserver index 8f3f0445f..1d0a39341 100644 --- a/RedOrchestra/roserver +++ b/RedOrchestra/roserver @@ -43,8 +43,8 @@ parms="server ${defaultmap}?game=ROGame.ROTeamGame?VACSecured=true -nohomedir in # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Server Details diff --git a/Ricochet/ricochetserver b/Ricochet/ricochetserver index ce9179a6a..68664448f 100644 --- a/Ricochet/ricochetserver +++ b/Ricochet/ricochetserver @@ -47,8 +47,8 @@ parms="-game ricochet -strictportbind +ip ${ip} -port ${port} +clientport ${clie # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/Rust/cfg/lgsm-default.cfg b/Rust/cfg/lgsm-default.cfg index 6d5ed99f8..225215e01 100644 --- a/Rust/cfg/lgsm-default.cfg +++ b/Rust/cfg/lgsm-default.cfg @@ -11,7 +11,7 @@ server.description "LGSM Server\nRust support : UltimateByte" # A URL to the image which shows up on the server details screen (dimensions are 512x256). -server.headerimage "https://github.com/dgibbs64/linuxgsm/raw/master/images/logo/lgsm-full-light.png" +server.headerimage "https://github.com/GameServerManagers/LinuxGSM/raw/master/images/logo/lgsm-full-light.png" # The URL to your servers website. server.url "https://gameservermanagers.com/" diff --git a/Rust/rustserver b/Rust/rustserver index a3eb75c43..afe0c662a 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -65,8 +65,8 @@ fi # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/SeriousSam3BFE/ss3sserver b/SeriousSam3BFE/ss3sserver index 29318d565..7302c282b 100644 --- a/SeriousSam3BFE/ss3sserver +++ b/SeriousSam3BFE/ss3sserver @@ -33,7 +33,7 @@ steampass="" ip="0.0.0.0" updateonstart="off" -# https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/SeriousSam3BFE/help/DedicatedServer_Readme.txt +# https://raw.githubusercontent.com/GameServerManagers/LinuxGSM/master/SeriousSam3BFE/help/DedicatedServer_Readme.txt fn_parms(){ parms="+ip ${ip} +logfile ${gamelog} +exec ${servercfgfullpath}" } @@ -43,8 +43,8 @@ parms="+ip ${ip} +logfile ${gamelog} +exec ${servercfgfullpath}" # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/Starbound/sbserver b/Starbound/sbserver index 762915c3d..3ad6afdf9 100644 --- a/Starbound/sbserver +++ b/Starbound/sbserver @@ -42,8 +42,8 @@ parms="" # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/SvenCoop/svencoopserver b/SvenCoop/svencoopserver index 9687c1452..1043cdfd3 100644 --- a/SvenCoop/svencoopserver +++ b/SvenCoop/svencoopserver @@ -47,8 +47,8 @@ parms="-game svencoop -strictportbind +ip ${ip} -port ${port} +clientport ${clie # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/TeamFortress2/tf2server b/TeamFortress2/tf2server index ca8c2e150..335af8b4a 100644 --- a/TeamFortress2/tf2server +++ b/TeamFortress2/tf2server @@ -53,8 +53,8 @@ parms="-game tf -strictportbind -ip ${ip} -port ${port} +clientport ${clientport # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/TeamFortressClassic/tfcserver b/TeamFortressClassic/tfcserver index 476e6c68a..53455703e 100644 --- a/TeamFortressClassic/tfcserver +++ b/TeamFortressClassic/tfcserver @@ -47,8 +47,8 @@ parms="-game tfc -strictportbind _ip ${ip} -port ${port} +clientport ${clientpor # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/TeamSpeak3/ts3server b/TeamSpeak3/ts3server index c297e8876..1e7ad5952 100644 --- a/TeamSpeak3/ts3server +++ b/TeamSpeak3/ts3server @@ -63,8 +63,8 @@ scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%d-%m-%Y-%H-%M-%S' # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" ##### Script ##### diff --git a/Teeworlds/twserver b/Teeworlds/twserver index 6b29f0e81..cd81024c0 100644 --- a/Teeworlds/twserver +++ b/Teeworlds/twserver @@ -43,8 +43,8 @@ parms="-f ${servercfgfullpath}" # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/Terraria/terrariaserver b/Terraria/terrariaserver index f51fb642a..9dd94a0f5 100644 --- a/Terraria/terrariaserver +++ b/Terraria/terrariaserver @@ -43,8 +43,8 @@ parms="-config ${servercfgfullpath}" # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Steam diff --git a/UnrealTournament/utserver b/UnrealTournament/utserver index ac27d2474..f7e5e2981 100644 --- a/UnrealTournament/utserver +++ b/UnrealTournament/utserver @@ -43,8 +43,8 @@ parms="UnrealTournament ${defaultmap}?Game=${gametype}?TimeLimit=${timelimit} -p # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Server Details diff --git a/UnrealTournament2004/ut2k4server b/UnrealTournament2004/ut2k4server index 9515059d3..4eec3e473 100644 --- a/UnrealTournament2004/ut2k4server +++ b/UnrealTournament2004/ut2k4server @@ -75,8 +75,8 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M- # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" ##### Script ##### diff --git a/UnrealTournament99/ut99server b/UnrealTournament99/ut99server index b8208117d..aa4dc9339 100644 --- a/UnrealTournament99/ut99server +++ b/UnrealTournament99/ut99server @@ -38,8 +38,8 @@ parms="server ${defaultmap}.unr ini=${servercfgfullpath}" # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="master" # Server Details diff --git a/functions/core_functions.sh b/functions/core_functions.sh index 3e6d2fb1c..287a50897 100644 --- a/functions/core_functions.sh +++ b/functions/core_functions.sh @@ -15,10 +15,10 @@ fi fn_fetch_core_dl(){ if [ -z "${githubuser}" ]; then - githubuser="dgibbs64" + githubuser="GameServerManagers" fi if [ -z "${githubrepo}" ]; then - githubrepo="linuxgsm" + githubrepo="LinuxGSM" fi if [ -z "${githubbranch}" ]; then githubbranch="master" diff --git a/lgsm/functions/command_fastdl.sh b/lgsm/functions/command_fastdl.sh index 71a2ecff5..32fe47172 100644 --- a/lgsm/functions/command_fastdl.sh +++ b/lgsm/functions/command_fastdl.sh @@ -29,7 +29,7 @@ fn_check_bzip2(){ echo -en "\n" sleep 1 echo "We advise using it" - echo "For more information, see https://github.com/dgibbs64/linuxgsm/wiki/FastDL#bzip2-compression" + echo "For more information, see https://github.com/GameServerManagers/LinuxGSM/wiki/FastDL#bzip2-compression" sleep 2 else bzip2installed="1" @@ -310,7 +310,7 @@ fn_fastdl_completed(){ sleep 2 echo -en "\n" echo "" - fn_print_info "Need more documentation? See https://github.com/dgibbs64/linuxgsm/wiki/FastDL" + fn_print_info "Need more documentation? See https://github.com/GameServerManagers/LinuxGSM/wiki/FastDL" echo -en "\n" if [ "$bzip2installed" == "0" ]; then echo "By the way, you'd better install bzip2 and re-run this command!" diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 7522cd0fe..c5f69f734 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -41,8 +41,8 @@ parms="" # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="$TRAVIS_BRANCH" # Steam diff --git a/tests/tests_ts3server.sh b/tests/tests_ts3server.sh index d3406022b..fb416d633 100644 --- a/tests/tests_ts3server.sh +++ b/tests/tests_ts3server.sh @@ -37,8 +37,8 @@ parms="" # Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. -githubuser="dgibbs64" -githubrepo="linuxgsm" +githubuser="GameServerManagers" +githubrepo="LinuxGSM" githubbranch="$TRAVIS_BRANCH" # Server Details