From bce3cc7ea0761b7edf47ed63874e50764afeccb7 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Tue, 30 Aug 2016 02:43:06 -0400 Subject: [PATCH 001/246] adding Quake 2 --- Quake2/q2server | 142 +++++++++++++++++++++++++ lgsm/functions/command_install.sh | 2 +- lgsm/functions/install_server_files.sh | 2 + 3 files changed, 145 insertions(+), 1 deletion(-) create mode 100644 Quake2/q2server diff --git a/Quake2/q2server b/Quake2/q2server new file mode 100644 index 000000000..8f84aa6c3 --- /dev/null +++ b/Quake2/q2server @@ -0,0 +1,142 @@ +#!/bin/bash +# Quake 2 +# 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 +defaultmap="q2dm1" +ip="0.0.0.0" +port="27910" + +fn_parms(){ +parms="+set dedicated 1 +set ip ${ip} +set port ${port} +exec ${servercfg} +set deathmatch 1 +map ${defaultmap}" +} + +#### Advanced Variables #### + +# Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +# Server Details +servicename="quake2-server" +gamename="Quake2" +engine="idtech2" + +# 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}/baseq2" +executabledir="${systemdir}" +executable="./quake2" +servercfg="${servicename}.cfg" +servercfgfullpath="${servercfgdir}/${servercfg}" +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 b4beceed4..6db74e805 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 3" ]||[ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Enemy Territory" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Minecraft" ]||[ "${gamename}" == "Mumble" ]; then +elif [ "${gamename}" == "Quake 2" ]||[ "${gamename}" == "Unreal Tournament 3" ]||[ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Enemy Territory" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Minecraft" ]||[ "${gamename}" == "Mumble" ]; then installer=1 install_server_files.sh elif [ -n "${appid}" ]; then diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 4c5f33f0d..74d0793e6 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -23,6 +23,8 @@ fn_install_server_files(){ fileurl="http://files.gameservermanagers.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="http://files.gameservermanagers.com/GoldenEyeSource/GoldenEye_Source_v5.0.1_server_full_Linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="GoldenEye_Source_v5.0.1_server_full_Linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="976cebc812cd8af01c272e97835e77ce" + elif [ "${gamename}" == "Quake 2" ]; then + fileurl="https://s3.amazonaws.com/linuxgsm/quake2-3.20-glibc-i386-full-linux2.0.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="quake2-3.20-glibc-i386-full-linux2.0.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="0b8c7e2d51f40b56b328c69e986e7c5f" fi fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" fn_dl_extract "${filedir}" "${filename}" "${filesdir}" From 652721c37fc516855233c89e7ab9c5a48efa7d25 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Tue, 30 Aug 2016 02:45:34 -0400 Subject: [PATCH 002/246] fix --- Quake2/q2server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Quake2/q2server b/Quake2/q2server index 8f84aa6c3..0d0d6a823 100644 --- a/Quake2/q2server +++ b/Quake2/q2server @@ -45,7 +45,7 @@ githubbranch="master" # Server Details servicename="quake2-server" -gamename="Quake2" +gamename="Quake 2" engine="idtech2" # Directories From aedf5a9881f6fb6074cb77b0317e7d6ee424df3a Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Tue, 30 Aug 2016 02:50:11 -0400 Subject: [PATCH 003/246] folder fix --- Quake2/q2server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Quake2/q2server b/Quake2/q2server index 0d0d6a823..da38e6780 100644 --- a/Quake2/q2server +++ b/Quake2/q2server @@ -57,7 +57,7 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" filesdir="${rootdir}/serverfiles" systemdir="${filesdir}/baseq2" -executabledir="${systemdir}" +executabledir="${filesdir}" executable="./quake2" servercfg="${servicename}.cfg" servercfgfullpath="${servercfgdir}/${servercfg}" From c1bb94b8097d5c6768c843120543f086e1dcaf55 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Tue, 30 Aug 2016 03:03:04 -0400 Subject: [PATCH 004/246] fix --- Quake2/q2server | 1 + lgsm/functions/info_glibc.sh | 3 +++ 2 files changed, 4 insertions(+) diff --git a/Quake2/q2server b/Quake2/q2server index da38e6780..c548d6ecb 100644 --- a/Quake2/q2server +++ b/Quake2/q2server @@ -60,6 +60,7 @@ systemdir="${filesdir}/baseq2" executabledir="${filesdir}" executable="./quake2" servercfg="${servicename}.cfg" +servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" backupdir="${rootdir}/backups" diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index 40ed32cde..fa461b621 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -98,6 +98,9 @@ elif [ "${gamename}" == "TeamSpeak 3" ]; then elif [ "${gamename}" == "Mumble" ]; then glibcrequired="NOT REQUIRED" glibcfix="no" +elif [ "${engine}" == "idtech2" ]; then + glibcrequired="2.0" + glibcfix="no" elif [ "${engine}" == "idtech3" ]; then glibcrequired="2.0" glibcfix="no" From a97f7e96ed47286059218b0fbc966a80b33d44a3 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Tue, 30 Aug 2016 03:10:13 -0400 Subject: [PATCH 005/246] adding Quake2 default config --- Quake2/cfg/lgsm-default.cfg | 15 +++++++++++++++ Quake2/q2server | 1 + lgsm/functions/install_config.sh | 6 ++++++ 3 files changed, 22 insertions(+) create mode 100644 Quake2/cfg/lgsm-default.cfg diff --git a/Quake2/cfg/lgsm-default.cfg b/Quake2/cfg/lgsm-default.cfg new file mode 100644 index 000000000..d59e3505f --- /dev/null +++ b/Quake2/cfg/lgsm-default.cfg @@ -0,0 +1,15 @@ +set hostname "" +set rcon_password "" +set location "The Internet" +set website "https://gameservermanagers.com/" +set deathmatch 1 +set maxclients 8 +set timelimit 30 +set fraglimit 30 + +map q2dm1 + +// to advertise your server to a public "master server" add something +// like this: +//set public 1 +//setmaster master.q2servers.com diff --git a/Quake2/q2server b/Quake2/q2server index c548d6ecb..c4ed1f481 100644 --- a/Quake2/q2server +++ b/Quake2/q2server @@ -62,6 +62,7 @@ executable="./quake2" servercfg="${servicename}.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" +servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 1aafd1602..1a1d76b00 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -383,6 +383,12 @@ elif [ "${gamename}" == "Project Zomboid" ]; then wget -N /dev/null ${githuburl}/ProjectZomboid/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq sleep 1 fn_defaultconfig +elif [ "${gamename}" == "Quake 2" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/Quake2/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_defaultconfig + fn_userinputconfig elif [ "${gamename}" == "Quake Live" ]; then echo -e "downloading lgsm-default.cfg...\c" wget -N /dev/null ${githuburl}/QuakeLive/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq From 2a413f411a30f2f0ae382e4f57d3a5cdc35f1d64 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Wed, 31 Aug 2016 00:50:05 -0400 Subject: [PATCH 006/246] adding QuakeWorld (nQuake) --- QuakeWorld/cfg/lgsm-default.cfg | 26 +++++ QuakeWorld/qwserver.sh | 143 +++++++++++++++++++++++++ lgsm/functions/command_install.sh | 2 +- lgsm/functions/install_server_files.sh | 2 + 4 files changed, 172 insertions(+), 1 deletion(-) create mode 100644 QuakeWorld/cfg/lgsm-default.cfg create mode 100644 QuakeWorld/qwserver.sh diff --git a/QuakeWorld/cfg/lgsm-default.cfg b/QuakeWorld/cfg/lgsm-default.cfg new file mode 100644 index 000000000..e3da2497b --- /dev/null +++ b/QuakeWorld/cfg/lgsm-default.cfg @@ -0,0 +1,26 @@ +// server info +hostname "" // server name shown in server browsers +rcon_password "" +sv_admininfo "lgsm " // admin name shown in server browsers + +// motd (max 15 rows) - this is the welcome message displayed when you connect to a server +set k_motd1 "" +set k_motd2 " " +set k_motd3 "Available game modes:" +set k_motd4 "1on1, 2on2, 4on4, 10on10, ffa, ctf" +//set k_motd5 "line 5" // etc.. + +set k_motd_time "5" // time motd is displayed in seconds + + +// edit the lines below if you want different gamemodes on this port +// matchless mode +set k_matchless 0 // run ktx as a regular match server or as a matchless (ffa) server (0 = regular, 1 = matchless) +set k_use_matchless_dir 1 // use configs/usermodes/matchless instead of [...]/ffa (0 = no, 1 = yes) + +// free modes +set k_defmode 2on2 // default mode on server +set k_allowed_free_modes 255 // allowed free modes (bit mask): + // 1=1on1, 2=2on2, 4=3on3, 8=4on4, 16=10on10, 32=ffa 64=ctf 128=hoonymode +set k_defmap dm4 // server homemap. server will change to this when last player leaves the server +set k_mode 2 // server mode (1 = duel, 2 = team, 3 = ffa, 4 = ctf) diff --git a/QuakeWorld/qwserver.sh b/QuakeWorld/qwserver.sh new file mode 100644 index 000000000..2ccf69536 --- /dev/null +++ b/QuakeWorld/qwserver.sh @@ -0,0 +1,143 @@ +#!/bin/bash +# Quake World (nQuake) +# 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="27500" + +fn_parms(){ +parms="-port ${port} -game ktx +exec ${servercfg}" +} + +#### Advanced Variables #### + +# Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +# Server Details +servicename="quakeworld-server" +gamename="QuakeWorld" +engine="quake" + +# 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}/ktx" +executabledir="${filesdir}" +executable="./mvdsv" +servercfg="${servicename}.cfg" +servercfgdir="${systemdir}" +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 \ No newline at end of file diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index bcfe36fd2..bdd9038f7 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 3" ]||[ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Enemy Territory" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Minecraft" ]||[ "${gamename}" == "Mumble" ]; then +elif [ "${gamename}" == "QuakeWorld" ]||[ "${gamename}" == "Unreal Tournament 3" ]||[ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Enemy Territory" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Minecraft" ]||[ "${gamename}" == "Mumble" ]; then installer=1 install_server_files.sh elif [ -n "${appid}" ]; then diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 78057b680..7b46b4d15 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -23,6 +23,8 @@ fn_install_server_files(){ fileurl="http://files.gameservermanagers.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="http://files.gameservermanagers.com/GoldenEyeSource/GoldenEye_Source_v5.0.1_full_server_linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="GoldenEye_Source_v5.0.1_server_full_Linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="254533d4643ad2fe6f1f3ecc4f6b5e5f" + elif [ "${gamename}" == "QuakeWorld" ]; then + fileurl="https://s3.amazonaws.com/linuxgsm/nquake.server.linux.083116.full.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="nquake.server.linux.083116.full.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="75a409cf08d808f075e4dacdc7b21b78" fi fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" fn_dl_extract "${filedir}" "${filename}" "${filesdir}" From b207aeb74c72a5f01b26ac7e7a7033223d0be4ea Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Wed, 31 Aug 2016 00:57:55 -0400 Subject: [PATCH 007/246] add config --- lgsm/functions/install_config.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 5a856f8e6..a5b30da18 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -389,6 +389,12 @@ elif [ "${gamename}" == "Quake Live" ]; then sleep 1 fn_defaultconfig fn_userinputconfig +elif [ "${gamename}" == "QuakeWorld" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/QuakeWOrld/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_defaultconfig + fn_userinputconfig elif [ "${gamename}" == "Red Orchestra: Ostfront 41-45" ]; then fn_unreal2config elif [ "${gamename}" == "Serious Sam 3: BFE" ]; then From 1cd76f5ec6904b091c509aefa09b258ab0ed338d Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Wed, 31 Aug 2016 00:58:10 -0400 Subject: [PATCH 008/246] remove script extension --- QuakeWorld/{qwserver.sh => qwserver} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename QuakeWorld/{qwserver.sh => qwserver} (100%) diff --git a/QuakeWorld/qwserver.sh b/QuakeWorld/qwserver similarity index 100% rename from QuakeWorld/qwserver.sh rename to QuakeWorld/qwserver From 7b2d298d7a05bde48117131e9802952d1c4175ae Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Wed, 31 Aug 2016 00:59:14 -0400 Subject: [PATCH 009/246] add glib check --- 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 9bc71172d..f83d44f97 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -74,6 +74,9 @@ elif [ "${engine}" == "spark" ]; then elif [ "${engine}" == "starbound" ]; then glibcrequired="2.12" glibcfix="no" +elif [ "${engine}" == "quake" ]; then + glibcrequired="2.0" + glibcfix="no" elif [ "${engine}" == "terraria" ]; then glibcrequired="2.7" glibcfix="no" From ef4768823c87883b04fe6ac0a4cbfdac34723b6f Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Wed, 31 Aug 2016 01:02:32 -0400 Subject: [PATCH 010/246] url fix --- 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 a5b30da18..d9ed2c308 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -391,7 +391,7 @@ elif [ "${gamename}" == "Quake Live" ]; then fn_userinputconfig elif [ "${gamename}" == "QuakeWorld" ]; then echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/QuakeWOrld/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + wget -N /dev/null ${githuburl}/QuakeWorld/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq sleep 1 fn_defaultconfig fn_userinputconfig From 4c963d69ce7a7f3c9062f6125a6060c805af912a Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Wed, 31 Aug 2016 01:11:50 -0400 Subject: [PATCH 011/246] filename fix --- QuakeWorld/qwserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QuakeWorld/qwserver b/QuakeWorld/qwserver index 2ccf69536..7a43b4b56 100644 --- a/QuakeWorld/qwserver +++ b/QuakeWorld/qwserver @@ -43,7 +43,7 @@ githubrepo="LinuxGSM" githubbranch="master" # Server Details -servicename="quakeworld-server" +servicename="quakeworld_server" gamename="QuakeWorld" engine="quake" From e037977b7cc8a44094b2b8fa9f542586cd0a35dd Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Wed, 31 Aug 2016 02:17:59 -0400 Subject: [PATCH 012/246] adding Quake 3: Team Arena --- Quake3/cfg/lgsm-default.cfg | 36 +++++++ Quake3/q3server | 143 +++++++++++++++++++++++++ lgsm/functions/command_install.sh | 2 +- lgsm/functions/install_config.sh | 6 ++ lgsm/functions/install_server_files.sh | 2 + 5 files changed, 188 insertions(+), 1 deletion(-) create mode 100644 Quake3/cfg/lgsm-default.cfg create mode 100644 Quake3/q3server diff --git a/Quake3/cfg/lgsm-default.cfg b/Quake3/cfg/lgsm-default.cfg new file mode 100644 index 000000000..fddb8347e --- /dev/null +++ b/Quake3/cfg/lgsm-default.cfg @@ -0,0 +1,36 @@ +set sv_hostname "" +set sv_maxclients 10 +set g_motd "LGSM Quake3 Server" +set g_forcerespawn 15 +set rconpassword "" +set g_gametype 1 +set fraglimit 50 +set timelimit 20 + +//Here's the map-cycle. When fraglimit or timelimit is reached, the map is automatically changed. +//Otherwise it would just play the same map again. +set m1 "map q3dm1; set nextmap vstr m2" +set m2 "map q3dm2; set nextmap vstr m3" +set m3 "map q3dm3; set nextmap vstr m4" +set m4 "map q3tourney1; set nextmap vstr m5" +set m5 "map q3dm4; set nextmap vstr m6" +set m6 "map q3dm5; set nextmap vstr m7" +set m7 "map q3dm6; set nextmap vstr m8" +set m8 "map q3tourney2; set nextmap vstr m9" +set m9 "map q3dm7; set nextmap vstr m10" +set m10 "map q3dm8; set nextmap vstr m11" +set m11 "map q3dm9; set nextmap vstr m12" +set m12 "map q3tourney3; set nextmap vstr m13" +set m13 "map q3dm10; set nextmap vstr m14" +set m14 "map q3dm11; set nextmap vstr m15" +set m15 "map q3dm12; set nextmap vstr m16" +set m16 "map q3tourney4; set nextmap vstr m17" +set m17 "map q3dm13; set nextmap vstr m18" +set m18 "map q3dm14; set nextmap vstr m19" +set m19 "map q3dm15; set nextmap vstr m20" +set m20 "map q3tourney5; set nextmap vstr m21" +set m21 "map q3dm16; set nextmap vstr m22" +set m22 "map q3dm17; set nextmap vstr m23" +set m23 "map q3dm18; set nextmap vstr m24" +set m24 "map q3dm19; set nextmap vstr m25" +set m25 "map q3tourney6; set nextmap vstr m1" \ No newline at end of file diff --git a/Quake3/q3server b/Quake3/q3server new file mode 100644 index 000000000..d247fa69b --- /dev/null +++ b/Quake3/q3server @@ -0,0 +1,143 @@ +#!/bin/bash +# Quake 3: Team Arena +# 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 sv_punkbuster 1 +set fs_basepath ${filesdir} +set dedicated 1 +set com_hunkMegs 32 +set net_ip ${ip} +set net_port ${port} +exec ${servercfg}" +} + +#### Advanced Variables #### + +# Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +# Server Details +servicename="quake3-server" +gamename="Quake 3: Team Arena" +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}/baseq3" +executabledir="${filesdir}" +executable="./q3ded" +servercfg="${servicename}.cfg" +servercfgdir="${systemdir}" +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 \ No newline at end of file diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index bcfe36fd2..32ef1a4e6 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 3" ]||[ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Enemy Territory" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Minecraft" ]||[ "${gamename}" == "Mumble" ]; then +elif [ "${gamename}" == "Quake 3: Team Arena" ]||[ "${gamename}" == "Unreal Tournament 3" ]||[ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Enemy Territory" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Minecraft" ]||[ "${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 5a856f8e6..3e712e30a 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -383,6 +383,12 @@ elif [ "${gamename}" == "Project Zomboid" ]; then wget -N /dev/null ${githuburl}/ProjectZomboid/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq sleep 1 fn_defaultconfig +elif [ "${gamename}" == "Quake 3: Team Arena" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/Quake3/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_defaultconfig + fn_userinputconfig elif [ "${gamename}" == "Quake Live" ]; then echo -e "downloading lgsm-default.cfg...\c" wget -N /dev/null ${githuburl}/QuakeLive/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 78057b680..38dc70b5a 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -23,6 +23,8 @@ fn_install_server_files(){ fileurl="http://files.gameservermanagers.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="http://files.gameservermanagers.com/GoldenEyeSource/GoldenEye_Source_v5.0.1_full_server_linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="GoldenEye_Source_v5.0.1_server_full_Linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="254533d4643ad2fe6f1f3ecc4f6b5e5f" + elif [ "${gamename}" == "Quake 3: Team Arena" ]; then + fileurl="https://s3.amazonaws.com/linuxgsm/quake3-1.32b-x86-full-linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="quake3-1.32b-x86-full-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="8fe61809ade4f9cce24e520043afe91b" fi fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" fn_dl_extract "${filedir}" "${filename}" "${filesdir}" From 3781817d46236cf1e422e31201ff524a3ca2a89b Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Wed, 31 Aug 2016 02:50:42 -0400 Subject: [PATCH 013/246] update --- Quake3/cfg/lgsm-default.cfg | 4 ++-- Quake3/q3server | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Quake3/cfg/lgsm-default.cfg b/Quake3/cfg/lgsm-default.cfg index fddb8347e..b392ecad2 100644 --- a/Quake3/cfg/lgsm-default.cfg +++ b/Quake3/cfg/lgsm-default.cfg @@ -1,9 +1,9 @@ set sv_hostname "" -set sv_maxclients 10 +set sv_maxclients 16 set g_motd "LGSM Quake3 Server" set g_forcerespawn 15 set rconpassword "" -set g_gametype 1 +set g_gametype 0 - Sets the type of game. 0 - Free for all, 1 - Tournament, 2 - Free for all(again), 3 - Team Deathmatch, 4 - Capture the Flag set fraglimit 50 set timelimit 20 diff --git a/Quake3/q3server b/Quake3/q3server index d247fa69b..4e722b08e 100644 --- a/Quake3/q3server +++ b/Quake3/q3server @@ -26,11 +26,12 @@ pushbulletalert="off" pushbullettoken="accesstoken" # Start Variables +defaultmap="q3dm17" ip="0.0.0.0" port="27960" fn_parms(){ -parms="+set sv_punkbuster 1 +set fs_basepath ${filesdir} +set dedicated 1 +set com_hunkMegs 32 +set net_ip ${ip} +set net_port ${port} +exec ${servercfg}" +parms="+set sv_punkbuster 0 +set fs_basepath ${filesdir} +set dedicated 1 +set com_hunkMegs 32 +set net_ip ${ip} +set net_port ${port} +exec ${servercfg} +map ${defaultmap}" } #### Advanced Variables #### From f4ca76dfe086b4240aefd66bc49f60afc5d1e4eb Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Wed, 31 Aug 2016 03:07:56 -0400 Subject: [PATCH 014/246] config fix --- Quake3/cfg/lgsm-default.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Quake3/cfg/lgsm-default.cfg b/Quake3/cfg/lgsm-default.cfg index b392ecad2..caccea760 100644 --- a/Quake3/cfg/lgsm-default.cfg +++ b/Quake3/cfg/lgsm-default.cfg @@ -3,7 +3,7 @@ set sv_maxclients 16 set g_motd "LGSM Quake3 Server" set g_forcerespawn 15 set rconpassword "" -set g_gametype 0 - Sets the type of game. 0 - Free for all, 1 - Tournament, 2 - Free for all(again), 3 - Team Deathmatch, 4 - Capture the Flag +set g_gametype 0 //- Sets the type of game. 0 - Free for all, 1 - Tournament, 2 - Free for all(again), 3 - Team Deathmatch, 4 - Capture the Flag set fraglimit 50 set timelimit 20 From cd67c97a18277ff904146ae02595be5901ee3944 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 8 Oct 2016 21:56:39 +0100 Subject: [PATCH 015/246] Updating install config --- lgsm/functions/install_config.sh | 652 +++++++++++++------------------ 1 file changed, 271 insertions(+), 381 deletions(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 5a856f8e6..bcb0e8c68 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -8,15 +8,19 @@ local commandname="INSTALL" local commandaction="Install" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -fn_defaultconfig(){ - echo "creating ${servercfg} config file." - fn_script_log_info "creating ${servercfg} config file." - cp -v "${servercfgdefault}" "${servercfgfullpath}" - sleep 1 +fn_fetch_default_config(){ + mkdir -pv "${lgsmdir}/default-configs" + githuburl="https://github.com/GameServerManagers/Game-Server-Configs/master" + + for config in "${array_configs[@]}" + do + fileurl="https://raw.githubusercontent.com/GameServerManagers/Game-Server-Configs/master/${gamedirname}/${config}"; filedir="${lgsmdir}/default-configs"; filename="${config}"; executecmd="noexecute" run="norun"; force="noforce" + fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" + done } -fn_userinputconfig(){ - # allow user to input server name and password +# allow user to input server name and password +fn_user_input_config(){ if [ -z "${autoinstall}" ]; then echo "" echo "Configuring ${gamename} Server" @@ -25,437 +29,323 @@ fn_userinputconfig(){ read -p "Enter server name: " servername read -p "Enter rcon password: " rconpass else - servername="${servicename}" - rconpass="rconpassword" + servername="LinuxGSM" + rconpass="rcon$RANDOM" fi echo "changing hostname." fn_script_log_info "changing hostname." sed -i "s/\"\"/\"${servername}\"/g" "${servercfgfullpath}" sleep 1 echo "changing rconpassword." - fn_script_log_info "changing rconpassword." + fn_script_log_info "changing RCON password." sed -i "s/\"\"/\"${rconpass}\"/g" "${servercfgfullpath}" sleep 1 } -fn_arma3config(){ - fn_defaultconfig - echo "creating ${networkcfg} config file." - fn_script_log_info "creating ${networkcfg} config file." - cp -v "${networkcfgdefault}" "${networkcfgfullpath}" - sleep 1 - echo "" -} - -fn_goldsourceconfig(){ - fn_defaultconfig - - # server.cfg redirects to ${servercfg} for added security - echo "creating server.cfg." - fn_script_log_info "creating server.cfg." - touch "server.cfg" - sleep 1 - echo "creating redirect." - fn_script_log_info "creating redirect." - echo "server.cfg > ${servercfg}." - echo "exec ${servercfg}" > "server.cfg" - sleep 1 - - # creating other files required - echo "creating listip.cfg." - fn_script_log_info "creating listip.cfg." - touch "${systemdir}/listip.cfg" - sleep 1 - echo "creating banned.cfg." - fn_script_log_info "creating banned.cfg." - touch "${systemdir}/banned.cfg" - sleep 1 - - fn_userinputconfig - echo "" -} - -fn_serious3config(){ - fn_defaultconfig - echo "" - echo "To edit ${gamename} server config use SS3 Server GUI 3 tool" - echo "http://mrag.nl/sgui3/" - fn_script_log_info "To edit ${gamename} server config use SS3 Server GUI 3 tool" - fn_script_log_info "http://mrag.nl/sgui3/" - sleep 1 - echo "" -} - -fn_sourceconfig(){ - fn_defaultconfig - - # server.cfg redirects to ${servercfg} for added security - echo "creating server.cfg." - fn_script_log_info "creating server.cfg." - touch "server.cfg" - sleep 1 - echo "creating redirect." - fn_script_log_info "creating redirect." - echo "server.cfg > ${servercfg}." - echo "exec ${servercfg}" > "server.cfg" - sleep 1 - - fn_userinputconfig - echo "" -} - -fn_teeworldsconfig(){ - fn_defaultconfig - - echo "adding logfile location to config." - fn_script_log_info "adding logfile location to config." - sed -i "s@\"\"@\"${gamelog}\"@g" "${servercfgfullpath}" - sleep 1 - echo "removing password holder." - fn_script_log_info "removing password holder." - sed -i "s///" "${servercfgfullpath}" - sleep 1 - - fn_userinputconfig - echo "" -} - -fn_ut99config(){ - echo "creating ${servercfg} config file." - fn_script_log_info "creating ${servercfg} config file." - echo "${servercfgdefault} > ${servercfgfullpath}" - tr -d '\r' < "${servercfgdefault}" > "${servercfgfullpath}" - sleep 1 - echo "" - echo "Configuring ${gamename} Server" - echo "=================================" - sleep 1 - echo "enabling WebAdmin." - fn_script_log_info "enabling WebAdmin." - sed -i 's/bEnabled=False/bEnabled=True/g' "${servercfgfullpath}" - sleep 1 - echo "setting WebAdmin port to 8076." - fn_script_log_info "setting WebAdmin port to 8076." - sed -i '467i\ListenPort=8076' "${servercfgfullpath}" - sleep 1 - echo "" -} - -fn_unreal2config(){ - fn_defaultconfig - echo "" - echo "Configuring ${gamename} Server" - echo "=================================" - sleep 1 - echo "setting WebAdmin username and password." - fn_script_log_info "setting WebAdmin username and password." - sed -i 's/AdminName=/AdminName=admin/g' "${servercfgfullpath}" - sed -i 's/AdminPassword=/AdminPassword=admin/g' "${servercfgfullpath}" +# Copys the default config from remote repo +fn_default_config_remote(){ + for config in "${array_configs[@]}" + do + echo "copying ${servercfg} config file." + fn_script_log_info "copying ${servercfg} config file." + cp -v "${lgsmdir}/default-configs/${config}" "${servercfgfullpath}" + done sleep 1 - echo "enabling WebAdmin." - fn_script_log_info "enabling WebAdmin." - sed -i 's/bEnabled=False/bEnabled=True/g' "${servercfgfullpath}" - if [ "${gamename}" == "Unreal Tournament 2004" ]; then - sleep 1 - echo "setting WebAdmin port to 8075." - fn_script_log_info "setting WebAdmin port to 8075." - sed -i 's/ListenPort=80/ListenPort=8075/g' "${servercfgfullpath}" - fi - sleep 1 - echo "" } -fn_ut3config(){ - echo "" - echo "Configuring ${gamename} Server" - echo "=================================" - sleep 1 - echo "setting ServerName to 'LinuxGSM UT3 Server'." - fn_script_log_info "setting ServerName to 'LinuxGSM UT3 Server'." +# Copys the default config already available +fn_default_config_local(){ + for config in "${array_configs[@]}" + do + echo "copying ${servercfg} config file." + fn_script_log_info "copying ${servercfg} config file." + cp -v "${servercfgdefault}" "${servercfgfullpath}" + done sleep 1 - sed -i 's/ServerName=/ServerName=LinuxGSM UT3 Server/g' "${servercfgdir}/DefaultGame.ini" - echo "setting WebAdmin password to admin." - fn_script_log_info "setting WebAdmin password to admin." - echo '[Engine.AccessControl]' >> "${servercfgdir}/DefaultGame.ini" - echo 'AdminPassword=admin' >> "${servercfgdir}/DefaultGame.ini" - sleep 1 - echo "enabling WebAdmin." - fn_script_log_info "enabling WebAdmin." - sed -i 's/bEnabled=false/bEnabled=True/g' "${servercfgdir}/DefaultWeb.ini" - if [ "${gamename}" == "Unreal Tournament 3" ]; then - sleep 1 - echo "setting WebAdmin port to 8081." - fn_script_log_info "setting WebAdmin port to 8081." - sed -i 's/ListenPort=80/ListenPort=8081/g' "${servercfgdir}/DefaultWeb.ini" - fi - sleep 1 - 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 "" -if [ "${gamename}" != "Hurtworld" ]; then -echo "Creating Configs" +echo "Downloading ${gamename} Config" echo "=================================" -sleep 1 - mkdir -pv "${servercfgdir}" - cd "${servercfgdir}" - githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}" -fi - +echo "Configs from https://github.com/GameServerManagers/Game-Server-Configs" +sleep 2 if [ "${gamename}" == "7 Days To Die" ]; then - fn_defaultconfig + gamedirname="7DaysToDie" + array_configs+=( serverconfig.xml ) + fn_fetch_default_config + fn_default_config_remote elif [ "${gamename}" == "ARK: Survivial Evolved" ]; then - wget -N /dev/null ${githuburl}/ARKSurvivalEvolved/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - echo -e "downloading lgsm-default.ini...\c" - fn_defaultconfig + gamedirname="ARKSurvivalEvolved" + array_configs+=( GameUserSettings.ini ) + fn_fetch_default_config + fn_default_config_remote elif [ "${gamename}" == "ARMA 3" ]; then - echo -e "downloading lgsm-default.server.cfg...\c" - wget -N /dev/null ${githuburl}/Arma3/cfg/lgsm-default.server.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - echo -e "downloading lgsm-default.network.cfg...\c" - wget -N /dev/null ${githuburl}/Arma3/cfg/lgsm-default.network.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_arma3config + gamedirname="Arma3" + array_configs+=( server.cfg network.cfg ) + fn_fetch_default_config + fn_default_config_remote +elif [ "${gamename}" == "Blade Symphony" ]; then + gamedirname="BladeSymphony" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config elif [ "${gamename}" == "BrainBread 2" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/BrainBread2/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig + gamedirname="BrainBread2" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config elif [ "${gamename}" == "Black Mesa: Deathmatch" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/BlackMesa/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig -elif [ "${gamename}" == "Blade Symphony" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/BladeSymphony/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_goldsourceconfig + gamedirname="BlackMesa" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config elif [ "${gamename}" == "Codename CURE" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/CodenameCURE/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig + gamedirname="CodenameCURE" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config elif [ "${gamename}" == "Counter-Strike 1.6" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/CounterStrike/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_goldsourceconfig + gamedirname="CounterStrike" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config elif [ "${gamename}" == "Counter-Strike: Condition Zero" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/CounterStrikeConditionZero/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_goldsourceconfig + gamedirname="CounterStrikeConditionZero" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config elif [ "${gamename}" == "Counter-Strike: Global Offensive" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/CounterStrikeGlobalOffensive/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig + gamedirname="CounterStrikeGlobalOffensive" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config elif [ "${gamename}" == "Counter-Strike: Source" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/CounterStrikeSource/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig + gamedirname="CounterStrikeSource" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config elif [ "${gamename}" == "Day of Defeat" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/DayOfDefeat/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_goldsourceconfig + gamedirname="DayOfDefeat" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config elif [ "${gamename}" == "Day of Defeat: Source" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/DayOfDefeatSource/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig + gamedirname="DayOfDefeatSource" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config elif [ "${gamename}" == "Day of Infamy" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/DayOfInfamy/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig + gamedirname="DayOfInfamy" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config +elif [ "${gamename}" == "Deathmatch Classic" ]; then + gamedirname="DeathmatchClassic" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config elif [ "${gamename}" == "Don't Starve Together" ]; then - echo -e "downloading lgsm-default.ini...\c" - wget -N /dev/null ${githuburl}/DontStarveTogether/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_defaultconfig + gamedirname="DontStarveTogether" + array_configs+=( Settings.ini ) + fn_fetch_default_config + fn_default_config_remote elif [ "${gamename}" == "Double Action: Boogaloo" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/DoubleActionBoogaloo/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig -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.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_defaultconfig - fn_userinputconfig - echo "" + gamedirname="DoubleActionBoogaloo" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config 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 - sleep 1 - fn_sourceconfig + gamedirname="FistfulofFrags" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config elif [ "${gamename}" == "Garry's Mod" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/GarrysMod/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig + gamedirname="GarrysMod" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config elif [ "${gamename}" == "GoldenEye: Source" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/GoldenEyeSource/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig -elif [ "${gamename}" == "Half Life 2: Deathmatch" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/HalfLife2Deathmatch/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig + gamedirname="GoldenEyeSource" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config elif [ "${gamename}" == "Half Life: Deathmatch" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/HalfLifeDeathmatch/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_goldsourceconfig + gamedirname="HalfLifeDeathmatch" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config +elif [ "${gamename}" == "Half-Life Deathmatch: Source" ]; then + gamedirname="HalfLifeDeathmatchSource" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config +elif [ "${gamename}" == "Half-Life: Opposing Force" ]; then + gamedirname="OpposingForce" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config +elif [ "${gamename}" == "Half Life 2: Deathmatch" ]; then + gamedirname="HalfLife2Deathmatch" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config elif [ "${gamename}" == "Insurgency" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/Insurgency/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig + gamedirname="Insurgency" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config elif [ "${gamename}" == "Just Cause 2" ]; then - fn_defaultconfig + gamedirname="JustCause2" + array_configs+=( config.lua ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config elif [ "${gamename}" == "Killing Floor" ]; then - fn_unreal2config + gamedirname="KillingFloor" + array_configs+=( Default.ini ) + fn_fetch_default_config + fn_default_config_remote elif [ "${gamename}" == "Left 4 Dead" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/Left4Dead/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig + gamedirname="Left4Dead" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config +elif [ "${gamename}" == "Left 4 Dead" ]; then + gamedirname="Left4Dead" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config elif [ "${gamename}" == "Left 4 Dead 2" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/Left4Dead2/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig + gamedirname="Left4Dead2" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config elif [ "${gamename}" == "Minecraft" ]; then - echo -e "downloading lgsm-default.ini...\c" - wget -N /dev/null ${githuburl}/Minecraft/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_defaultconfig + gamedirname="Minecraft" + array_configs+=( server.properties ) + fn_fetch_default_config + fn_default_config_remote elif [ "${gamename}" == "No More Room in Hell" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/NoMoreRoomInHell/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig + gamedirname="NoMoreRoominHell" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config +elif [ "${gamename}" == "Mumble" ]; then + : elif [ "${gamename}" == "Natural Selection 2" ]; then - echo -e "no configs required." - sleep 1 - echo "" + : +elif [ "${gamename}" == "NS2: Combat" ]; then + : elif [ "${gamename}" == "Pirates, Vikings, and Knights II" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/PiratesVikingandKnightsII/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig + gamedirname="PiratesVikingandKnightsII" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config elif [ "${gamename}" == "Project Zomboid" ]; then - echo -e "downloading lgsm-default.ini...\c" - wget -N /dev/null ${githuburl}/ProjectZomboid/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_defaultconfig + gamedirname="ProjectZomboid" + array_configs+=( server.ini ) + fn_fetch_default_config + fn_default_config_remote elif [ "${gamename}" == "Quake Live" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/QuakeLive/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_defaultconfig - fn_userinputconfig + gamedirname="QuakeLive" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote elif [ "${gamename}" == "Red Orchestra: Ostfront 41-45" ]; then - fn_unreal2config -elif [ "${gamename}" == "Serious Sam 3: BFE" ]; then - echo -e "downloading lgsm-default.ini...\c" - wget -N /dev/null ${githuburl}/SeriousSam3BFE/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_serious3config + : +elif [ "${gamename}" == "Ricochet" ]; then + gamedirname="Ricochet" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_user_input_config elif [ "${gamename}" == "Rust" ]; then - echo -e "downloading server.cfg...\c" - wget -N /dev/null ${githuburl}/Rust/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_defaultconfig -elif [ "${gamename}" == "Sven Co-op" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/SvenCoop/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_goldsourceconfig + gamedirname="Rust" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote +elif [ "${gamename}" == "Serious Sam 3: BFE" ]; then + gamedirname="SeriousSam3BFE" + array_configs+=( server.ini ) + fn_fetch_default_config + fn_default_config_remote elif [ "${gamename}" == "Starbound" ]; then - echo -e "downloading lgsm-default.config...\c" - wget -N /dev/null ${githuburl}/Starbound/cfg/lgsm-default.config 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_defaultconfig - fn_userinputconfig -elif [ "${gamename}" == "TeamSpeak 3" ]; then - echo -e "downloading lgsm-default.ini...\c" - wget -N /dev/null ${githuburl}/TeamSpeak3/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_defaultconfig + gamedirname="Starbound" + array_configs+=( starbound.config ) + fn_fetch_default_config + fn_default_config_remote +elif [ "${gamename}" == "Sven Co-op" ]; then + gamedirname="SvenCoop" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote elif [ "${gamename}" == "Team Fortress 2" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/TeamFortress2/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig + gamedirname="TeamFortress2" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote elif [ "${gamename}" == "Team Fortress Classic" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/TeamFortressClassic/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_goldsourceconfig + gamedirname="TeamFortressClassic" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote +elif [ "${gamename}" == "TeamSpeak 3" ]; then + gamedirname="TeamSpeak3" + array_configs+=( ts3server.ini ) + fn_fetch_default_config + fn_default_config_remote elif [ "${gamename}" == "Teeworlds" ]; then - echo -e "downloading ctf.cfg...\c" - wget -N /dev/null ${githuburl}/Teeworlds/cfg/ctf.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - echo -e "downloading dm.cfg...\c" - wget -N /dev/null ${githuburl}/Teeworlds/cfg/dm.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - echo -e "downloading duel.cfg...\c" - wget -N /dev/null ${githuburl}/Teeworlds/cfg/duel.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - echo -e "downloading tdm.cfg...\c" - wget -N /dev/null ${githuburl}/Teeworlds/cfg/tdm.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/Teeworlds/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_teeworldsconfig + gamedirname="Teeworlds" + array_configs+=( server.cfg ctf.cfg dm.cfg duel.cfg tdm.cfg ) + fn_fetch_default_config + fn_default_config_remote elif [ "${gamename}" == "Terraria" ]; then - echo -e "downloading lgsm-default.txt...\c" - wget -N /dev/null ${githuburl}/Terraria/cfg/lgsm-default.txt 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_defaultconfig + gamedirname="Terraria" + array_configs+=( serverconfig.txt ) + fn_fetch_default_config + fn_default_config_remote 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 Game.ini...\c" - wget -N /dev/null ${githuburl}/UnrealTournament/cfg/Game.ini 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_unrealtournament -elif [ "${gamename}" == "Unreal Tournament 3" ]; then - fn_ut3config + : elif [ "${gamename}" == "Unreal Tournament 2004" ]; then - fn_unreal2config + : +elif [ "${gamename}" == "Unreal Tournament 3" ]; then + : elif [ "${gamename}" == "Unreal Tournament 99" ]; then - fn_ut99config + gamedirname="UnrealTournament99" + array_configs+=( Game.ini Engine.ini ) + fn_fetch_default_config + fn_default_config_remote +elif [ "${gamename}" == "Enemy Territory" ]; then + gamedirname="WolfensteinEnemyTerritory" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote fi + From d95c63028324648c9fb3a0069aedd4c25b0f5643 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 8 Oct 2016 22:11:40 +0100 Subject: [PATCH 016/246] more development --- lgsm/functions/install_config.sh | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index bcb0e8c68..5a9e26e6b 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -42,33 +42,29 @@ fn_user_input_config(){ sleep 1 } -# Copys the default config from remote repo +# Copys the default configs from Game-Server-Configs repo to the +# correct location fn_default_config_remote(){ for config in "${array_configs[@]}" do + # every config is copied echo "copying ${servercfg} config file." fn_script_log_info "copying ${servercfg} config file." - cp -v "${lgsmdir}/default-configs/${config}" "${servercfgfullpath}" + if [ "${config}" == "${servercfgdefault}" ]; then + cp -v "${lgsmdir}/default-configs/${config}" "${servercfgfullpath}" + else + cp -v "${lgsmdir}/default-configs/${config}" "${servercfgdir}/${config}" + fi done + # the main config is renamed to the script default + cp -v "${servercfgdefault}" "${servercfgfullpath}" sleep 1 } -# Copys the default config already available -fn_default_config_local(){ - for config in "${array_configs[@]}" - do - echo "copying ${servercfg} config file." - fn_script_log_info "copying ${servercfg} config file." - cp -v "${servercfgdefault}" "${servercfgfullpath}" - done - sleep 1 -} - - echo "" echo "Downloading ${gamename} Config" echo "=================================" -echo "Configs from https://github.com/GameServerManagers/Game-Server-Configs" +echo "default configs from https://github.com/GameServerManagers/Game-Server-Configs" sleep 2 if [ "${gamename}" == "7 Days To Die" ]; then gamedirname="7DaysToDie" From 2c9eabb178f561b2ef8da94294b0c9c6ca18deee Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 8 Oct 2016 22:21:58 +0100 Subject: [PATCH 017/246] dev --- lgsm/functions/install_config.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 5a9e26e6b..e91c8d969 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -56,8 +56,6 @@ fn_default_config_remote(){ cp -v "${lgsmdir}/default-configs/${config}" "${servercfgdir}/${config}" fi done - # the main config is renamed to the script default - cp -v "${servercfgdefault}" "${servercfgfullpath}" sleep 1 } From 711a61a4d8f203186c7af579d7cf5cd77f1ded63 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 8 Oct 2016 22:35:15 +0100 Subject: [PATCH 018/246] dev --- 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 e91c8d969..db28b2b87 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -316,7 +316,7 @@ elif [ "${gamename}" == "TeamSpeak 3" ]; then fn_fetch_default_config fn_default_config_remote elif [ "${gamename}" == "Teeworlds" ]; then - gamedirname="Teeworlds" + gamedirname="TeeWorlds" array_configs+=( server.cfg ctf.cfg dm.cfg duel.cfg tdm.cfg ) fn_fetch_default_config fn_default_config_remote From b54876035c6e6e8957f9fcd70e4eec1396cc0302 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 8 Oct 2016 22:41:11 +0100 Subject: [PATCH 019/246] added info_config.sh to debug --- lgsm/functions/command_debug.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/functions/command_debug.sh b/lgsm/functions/command_debug.sh index f6958a8be..98bd3082c 100644 --- a/lgsm/functions/command_debug.sh +++ b/lgsm/functions/command_debug.sh @@ -22,6 +22,7 @@ fn_lockfile_trap(){ check.sh fix.sh info_distro.sh +info_config.sh # NOTE: Check if works with server without parms. Could be intergrated in to info_parms.sh fn_parms fn_print_header From 398cda0ff84cb22460c9be97cb2c65cfa3600293 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 8 Oct 2016 23:43:39 +0100 Subject: [PATCH 020/246] update bf1942 dl location --- 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 e1b140bb8..bb13a56d0 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -16,7 +16,7 @@ fn_install_server_files(){ elif [ "${gamename}" == "Unreal Tournament 3" ]; then fileurl="http://files.gameservermanagers.com/UnrealTournament3/UT3-linux-server-2.1.tar.bz2"; filedir="${tmpdir}"; filename="UT3-linux-server-2.1.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="6c22fcef9e2e03ed154df97569af540c" elif [ "${gamename}" == "Battlefield: 1942" ]; then - fileurl="http://files.gameservermanagers.com/BattleField1942/bf1942_lnxded-1.61-hacked-to-1.612.full.tar.gz"; filedir="${tmpdir}"; filename="bf1942_lnxded-1.61-hacked-to-1.612.full.tar.gz"; executecmd="noexecute" run="norun"; force="noforce"; md5="7e9d2538a62b228f2de7176b44659aa9" + fileurl="http://files.gameservermanagers.com/BattleField1942/bf1942_lnxded-1.61-hacked-to-1.612.full.tar.bzip2"; filedir="${tmpdir}"; filename="bf1942_lnxded-1.61-hacked-to-1.612.full.tar.gz"; executecmd="noexecute" run="norun"; force="noforce"; md5="a86a5d3cd64ca59abcc9bb9f777c2e5d" elif [ "${gamename}" == "Enemy Territory" ]; then fileurl="http://files.gameservermanagers.com/WolfensteinEnemyTerritory/enemy-territory.260b.tar.bz2"; filedir="${tmpdir}"; filename="enemy-territory.260b.tar.gz"; executecmd="noexecute" run="norun"; force="noforce"; md5="ded32053e470fe15d9403ec4a0ab7e89" elif [ "${gamename}" == "Unreal Tournament" ]; then From 82fbb9ea76162db90b61e008179c8fb1974fea89 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 8 Oct 2016 23:47:47 +0100 Subject: [PATCH 021/246] corrected bg1942 name --- 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 bb13a56d0..58611b10e 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -16,7 +16,7 @@ fn_install_server_files(){ elif [ "${gamename}" == "Unreal Tournament 3" ]; then fileurl="http://files.gameservermanagers.com/UnrealTournament3/UT3-linux-server-2.1.tar.bz2"; filedir="${tmpdir}"; filename="UT3-linux-server-2.1.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="6c22fcef9e2e03ed154df97569af540c" elif [ "${gamename}" == "Battlefield: 1942" ]; then - fileurl="http://files.gameservermanagers.com/BattleField1942/bf1942_lnxded-1.61-hacked-to-1.612.full.tar.bzip2"; filedir="${tmpdir}"; filename="bf1942_lnxded-1.61-hacked-to-1.612.full.tar.gz"; executecmd="noexecute" run="norun"; force="noforce"; md5="a86a5d3cd64ca59abcc9bb9f777c2e5d" + fileurl="http://files.gameservermanagers.com/BattleField1942/bf1942_lnxded-1.61-hacked-to-1.612.full.tar.bz2"; filedir="${tmpdir}"; filename="bf1942_lnxded-1.61-hacked-to-1.612.full.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="a86a5d3cd64ca59abcc9bb9f777c2e5d" elif [ "${gamename}" == "Enemy Territory" ]; then fileurl="http://files.gameservermanagers.com/WolfensteinEnemyTerritory/enemy-territory.260b.tar.bz2"; filedir="${tmpdir}"; filename="enemy-territory.260b.tar.gz"; executecmd="noexecute" run="norun"; force="noforce"; md5="ded32053e470fe15d9403ec4a0ab7e89" elif [ "${gamename}" == "Unreal Tournament" ]; then From 79fe18d551c264df8ec71424260328aa98879c6e Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 9 Oct 2016 00:14:20 +0100 Subject: [PATCH 022/246] Added BF1942 --- Battlefield1942/bf1942server | 5 +++-- lgsm/functions/command_details.sh | 16 ++++++++++++--- lgsm/functions/info_config.sh | 33 +++++++++++++++++++++++++++++++ 3 files changed, 49 insertions(+), 5 deletions(-) diff --git a/Battlefield1942/bf1942server b/Battlefield1942/bf1942server index 97851c553..decb4c34d 100644 --- a/Battlefield1942/bf1942server +++ b/Battlefield1942/bf1942server @@ -38,8 +38,8 @@ parms=" +hostServer 1 +dedicated 1" # 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 @@ -60,6 +60,7 @@ systemdir="${filesdir}" executabledir="${systemdir}" executable="./start.sh" servercfg="serversettings.con" +servercfgdefault="serversettings.con" servercfgdir="${systemdir}/mods/bf1942/settings" servercfgfullpath="${servercfgdir}/${servercfg}" backupdir="${rootdir}/backups" diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index fe7bfa154..0cfd04b95 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -374,6 +374,16 @@ fn_details_realvirtuality(){ } | column -s $'\t' -t } +fn_details_refractor(){ + echo -e "netstat -atunp | grep bf1942_lnxd" + echo -e "" + { + echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" + echo -e "> Game\tINBOUND\t${port}\tudp" + echo -e "> Steam: Query\tINBOUND\t${queryport}\tudp" + } | column -s $'\t' -t +} + fn_details_idtech3(){ echo -e "netstat -atunp | grep qzeroded" echo -e "" @@ -599,7 +609,7 @@ fn_display_details() { fn_details_commandlineparms fi fn_details_ports - + # Display details depending on game or engine. if [ "${engine}" == "avalanche" ]; then fn_details_avalanche @@ -642,12 +652,12 @@ fn_display_details() { else fn_print_error_nl "Unable to detect server engine." fi - + fn_details_statusbottom } if [ -z "${postdetails}" ] ; -then +then fn_display_details core_exit.sh fi diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 8e339ffde..477de1556 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -41,6 +41,36 @@ fn_info_config_avalanche(){ fi } +fn_info_config_bf1942(){ + if [ ! -f "${servercfgfullpath}" ]; then + servername="${unavailable}" + serverpassword="${unavailable}" + slots="${zero}" + port="${zero}" + queryport="${zero}" + else + + servername=$(grep "game.serverName " "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/game.serverName //g' | tr -d '=\";,:' | xargs) + serverpassword=$(grep "game.serverPassword" "${servercfgfullpath}" | sed -e 's/^ *//g' -e '/^--/d' -e 's/game.serverPassword//g' | tr -d '=\";,:' | xargs) + slots=$(grep "game.serverMaxPlayers" "${servercfgfullpath}" | grep -v "\--" | tr -cd '[:digit:]') + port=$(grep "game.serverPort" "${servercfgfullpath}" | grep -v "\--" | tr -cd '[:digit:]') + queryport="22000" + + # Not Set + servername=${servername:-"NOT SET"} + serverpassword=${serverpassword:-"NOT SET"} + slots=${slots:-"0"} + port=${port:-"0"} + + # check if the ip exists in the config file. Failing this will fall back to the default. + ipconfigcheck=$(grep "game.serverIP" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/game.serverIP//g' | tr -d '=\";,:' | xargs) + if [ -n "${ipconfigcheck}" ]; then + ip="${ipconfigcheck}" + fi + fi +} + + fn_info_config_dontstarve(){ if [ ! -f "${servercfgfullpath}" ]; then servername="${unavailable}" @@ -418,6 +448,9 @@ fn_info_config_sdtd(){ # Just Cause 2 if [ "${engine}" == "avalanche" ]; then fn_info_config_avalanche +# Battlefield: 1942 +elif [ "${gamename}" == "Battlefield: 1942" ]; then + fn_info_config_bf1942 # Dont Starve Together elif [ "${engine}" == "dontstarve" ]; then fn_info_config_dontstarve From c92e84c9c0944988088d8f22fa8ec7d2efcfc3f7 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 9 Oct 2016 00:14:37 +0100 Subject: [PATCH 023/246] Updated for BF1942 --- lgsm/functions/gsquery.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/gsquery.py b/lgsm/functions/gsquery.py index 76d5478d9..fcac90438 100644 --- a/lgsm/functions/gsquery.py +++ b/lgsm/functions/gsquery.py @@ -25,6 +25,8 @@ class GameServer: self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' elif self.option.engine == 'realvirtuality': self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' + elif self.option.engine == 'refractor': + self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' elif self.option.engine == 'unity3d': self.query_prompt_string = '\xFF\xFF\xFF\xFFTSource Engine Query\0' elif self.option.engine == 'idtech3': @@ -103,7 +105,7 @@ if __name__ == '__main__': action = 'store', dest = 'engine', default = False, - help = 'Engine type: avalanche, goldsource, idtech3, realvirtuality, spark, source, unity3d, unreal, unreal2.' + help = 'Engine type: avalanche, goldsource, idtech3, realvirtuality, refractor, spark, source, unity3d, unreal, unreal2.' ) parser.add_option( '-v', '--verbose', From d9c09be1a990272bd103be0bf5e8d7d6d27eacea Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 9 Oct 2016 00:17:34 +0100 Subject: [PATCH 024/246] added BF1942 --- lgsm/functions/install_config.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index db28b2b87..95bf65124 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -52,6 +52,9 @@ fn_default_config_remote(){ fn_script_log_info "copying ${servercfg} config file." if [ "${config}" == "${servercfgdefault}" ]; then cp -v "${lgsmdir}/default-configs/${config}" "${servercfgfullpath}" + elif [ "${config}" == "${networkcfgdefault}" ]; then + # ARMA 3 + cp -v "${lgsmdir}/default-configs/${config}" "${networkcfgfullpath}" else cp -v "${lgsmdir}/default-configs/${config}" "${servercfgdir}/${config}" fi @@ -79,6 +82,11 @@ elif [ "${gamename}" == "ARMA 3" ]; then array_configs+=( server.cfg network.cfg ) fn_fetch_default_config fn_default_config_remote +elif [ "${gamename}" == "Battlefield: 1942" ]; then + gamedirname="Battlefield1942" + array_configs+=( serversettings.con ) + fn_fetch_default_config + fn_default_config_remote elif [ "${gamename}" == "Blade Symphony" ]; then gamedirname="BladeSymphony" array_configs+=( server.cfg ) From d97bc144aaa22369ef673818ba884abe1d1696c0 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 9 Oct 2016 00:27:57 +0100 Subject: [PATCH 025/246] added bf1942 --- ARKSurvivalEvolved/arkserver | 2 +- Arma3/arma3server | 4 +- BlackMesa/bmdmserver | 2 +- lgsm/functions/alert_pushbullet.sh | 2 +- lgsm/functions/command_details.sh | 2 + lgsm/functions/install_config.sh.old.sh | 465 ++++++++++++++++++++++++ 6 files changed, 472 insertions(+), 5 deletions(-) create mode 100644 lgsm/functions/install_config.sh.old.sh diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index 905a48b78..efba11b51 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -81,7 +81,7 @@ executable="./ShooterGameServer" servercfgdir="${systemdir}/Saved/Config/LinuxServer" servercfg="GameUserSettings.ini" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.ini" +servercfgdefault="${servercfgdir}/GameUserSettings.ini" backupdir="${rootdir}/backups" # Logging diff --git a/Arma3/arma3server b/Arma3/arma3server index a27a49be2..62a760104 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -91,11 +91,11 @@ executabledir="${filesdir}" executable="./arma3server" servercfg="${servicename}.server.cfg" networkcfg="${servicename}.network.cfg" +servercfgdefault="server.cfg" +networkcfgdefault="network.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" networkcfgfullpath="${servercfgdir}/${networkcfg}" -servercfgdefault="${servercfgdir}/lgsm-default.server.cfg" -networkcfgdefault="${servercfgdir}/lgsm-default.network.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/BlackMesa/bmdmserver b/BlackMesa/bmdmserver index c28e35b1d..91fe6bb56 100644 --- a/BlackMesa/bmdmserver +++ b/BlackMesa/bmdmserver @@ -84,9 +84,9 @@ systemdir="${filesdir}/bms" executabledir="${filesdir}" executable="./srcds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/lgsm/functions/alert_pushbullet.sh b/lgsm/functions/alert_pushbullet.sh index 221701a7d..aecf3d875 100644 --- a/lgsm/functions/alert_pushbullet.sh +++ b/lgsm/functions/alert_pushbullet.sh @@ -11,7 +11,7 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" fn_print_dots "Sending Pushbullet alert" sleep 1 -pushbulletsend=$(curl --silent -u """${pushbullettoken}"":" -d type="note" -d body="${alertbody}" -d title="${alertsubject}" 'https://api.pushbullet.com/v2/pushes'|grep -o invalid_access_token|uniq) +pushbulletsend=$(curl --silent -u """${pushbullettoken}"":" -d channel_tag="${channeltag}" -d type="note" -d body="${alertbody}" -d title="${alertsubject}" 'https://api.pushbullet.com/v2/pushes'|grep -o invalid_access_token|uniq) if [ "${pushbulletsend}" == "invalid_access_token" ]; then fn_print_fail_nl "Sending Pushbullet alert: invalid_access_token" diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 0cfd04b95..46273df97 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -613,6 +613,8 @@ fn_display_details() { # Display details depending on game or engine. if [ "${engine}" == "avalanche" ]; then fn_details_avalanche + elif [ "${engine}" == "refractor" ]; then + fn_details_refractor elif [ "${engine}" == "dontstarve" ]; then fn_details_dontstarve elif [ "${engine}" == "lwjgl2" ]; then diff --git a/lgsm/functions/install_config.sh.old.sh b/lgsm/functions/install_config.sh.old.sh new file mode 100644 index 000000000..7ac97a6fe --- /dev/null +++ b/lgsm/functions/install_config.sh.old.sh @@ -0,0 +1,465 @@ +#!/bin/bash +# LGSM install_config.sh function +# Author: Daniel Gibbs +# Website: https://gameservermanagers.com +# Description: Creates default server configs. + +local commandname="INSTALL" +local commandaction="Install" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +fn_defaultconfig(){ + echo "creating ${servercfg} config file." + fn_script_log_info "creating ${servercfg} config file." + cp -v "${servercfgdefault}" "${servercfgfullpath}" + sleep 1 +} + +fn_userinputconfig(){ + # 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" "${servercfgfullpath}" + sleep 1 + echo "changing rconpassword." + fn_script_log_info "changing rconpassword." + sed -i "s/\"\"/\"${rconpass}\"/g" "${servercfgfullpath}" + sleep 1 +} + +fn_arma3config(){ + fn_defaultconfig + echo "creating ${networkcfg} config file." + fn_script_log_info "creating ${networkcfg} config file." + cp -v "${networkcfgdefault}" "${networkcfgfullpath}" + sleep 1 + echo "" +} + +fn_goldsourceconfig(){ + fn_defaultconfig + + # server.cfg redirects to ${servercfg} for added security + echo "creating server.cfg." + fn_script_log_info "creating server.cfg." + touch "server.cfg" + sleep 1 + echo "creating redirect." + fn_script_log_info "creating redirect." + echo "server.cfg > ${servercfg}." + echo "exec ${servercfg}" > "server.cfg" + sleep 1 + + # creating other files required + echo "creating listip.cfg." + fn_script_log_info "creating listip.cfg." + touch "${systemdir}/listip.cfg" + sleep 1 + echo "creating banned.cfg." + fn_script_log_info "creating banned.cfg." + touch "${systemdir}/banned.cfg" + sleep 1 + + fn_userinputconfig + echo "" +} + +fn_serious3config(){ + fn_defaultconfig + echo "" + echo "To edit ${gamename} server config use SS3 Server GUI 3 tool" + echo "http://mrag.nl/sgui3/" + fn_script_log_info "To edit ${gamename} server config use SS3 Server GUI 3 tool" + fn_script_log_info "http://mrag.nl/sgui3/" + sleep 1 + echo "" +} + +fn_sourceconfig(){ + fn_defaultconfig + # server.cfg redirects to ${servercfg} for added security + echo "creating server.cfg." + fn_script_log_info "creating server.cfg." + touch "server.cfg" + sleep 1 + echo "creating redirect." + fn_script_log_info "creating redirect." + echo "server.cfg > ${servercfg}." + echo "exec ${servercfg}" > "server.cfg" + sleep 1 + fn_userinputconfig + echo "" +} + +fn_teeworldsconfig(){ + fn_defaultconfig + + echo "adding logfile location to config." + fn_script_log_info "adding logfile location to config." + sed -i "s@\"\"@\"${gamelog}\"@g" "${servercfgfullpath}" + sleep 1 + echo "removing password holder." + fn_script_log_info "removing password holder." + sed -i "s///" "${servercfgfullpath}" + sleep 1 + + fn_userinputconfig + echo "" +} + +fn_ut99config(){ + echo "creating ${servercfg} config file." + fn_script_log_info "creating ${servercfg} config file." + echo "${servercfgdefault} > ${servercfgfullpath}" + tr -d '\r' < "${servercfgdefault}" > "${servercfgfullpath}" + sleep 1 + echo "" + echo "Configuring ${gamename} Server" + echo "=================================" + sleep 1 + echo "enabling WebAdmin." + fn_script_log_info "enabling WebAdmin." + sed -i 's/bEnabled=False/bEnabled=True/g' "${servercfgfullpath}" + sleep 1 + echo "setting WebAdmin port to 8076." + fn_script_log_info "setting WebAdmin port to 8076." + sed -i '467i\ListenPort=8076' "${servercfgfullpath}" + sleep 1 + echo "" +} + +fn_unreal2config(){ + fn_defaultconfig + echo "" + echo "Configuring ${gamename} Server" + echo "=================================" + sleep 1 + echo "setting WebAdmin username and password." + fn_script_log_info "setting WebAdmin username and password." + sed -i 's/AdminName=/AdminName=admin/g' "${servercfgfullpath}" + sed -i 's/AdminPassword=/AdminPassword=admin/g' "${servercfgfullpath}" + sleep 1 + echo "enabling WebAdmin." + fn_script_log_info "enabling WebAdmin." + sed -i 's/bEnabled=False/bEnabled=True/g' "${servercfgfullpath}" + if [ "${gamename}" == "Unreal Tournament 2004" ]; then + sleep 1 + echo "setting WebAdmin port to 8075." + fn_script_log_info "setting WebAdmin port to 8075." + sed -i 's/ListenPort=80/ListenPort=8075/g' "${servercfgfullpath}" + fi + sleep 1 + echo "" +} + +fn_ut3config(){ + echo "" + echo "Configuring ${gamename} Server" + echo "=================================" + sleep 1 + echo "setting ServerName to 'LinuxGSM UT3 Server'." + fn_script_log_info "setting ServerName to 'LinuxGSM UT3 Server'." + sleep 1 + sed -i 's/ServerName=/ServerName=LinuxGSM UT3 Server/g' "${servercfgdir}/DefaultGame.ini" + echo "setting WebAdmin password to admin." + fn_script_log_info "setting WebAdmin password to admin." + echo '[Engine.AccessControl]' >> "${servercfgdir}/DefaultGame.ini" + echo 'AdminPassword=admin' >> "${servercfgdir}/DefaultGame.ini" + sleep 1 + echo "enabling WebAdmin." + fn_script_log_info "enabling WebAdmin." + sed -i 's/bEnabled=false/bEnabled=True/g' "${servercfgdir}/DefaultWeb.ini" + if [ "${gamename}" == "Unreal Tournament 3" ]; then + sleep 1 + echo "setting WebAdmin port to 8081." + fn_script_log_info "setting WebAdmin port to 8081." + sed -i 's/ListenPort=80/ListenPort=8081/g' "${servercfgdir}/DefaultWeb.ini" + fi + sleep 1 + 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 "" +if [ "${gamename}" != "Hurtworld" ]; then +echo "Creating Configs" +echo "=================================" +sleep 1 + mkdir -pv "${servercfgdir}" + cd "${servercfgdir}" + githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}" +fi + + + elif [ "${gamename}" == "GoldenEye: Source" ]; then + fileurl="http://files.gameservermanagers.com/GoldenEyeSource/GoldenEye_Source_v5.0.1_full_server_linux.tar.bz2"; filedir="${tmpdir}"; filename="GoldenEye_Source_v5.0.1_server_full_Linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="ea227a150300abe346e757380325f84c" + fi + fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" + +if [ "${gamename}" == "7 Days To Die" ]; then + fn_defaultconfig +elif [ "${gamename}" == "ARK: Survivial Evolved" ]; then + wget -N /dev/null ${githuburl}/ARKSurvivalEvolved/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + echo -e "downloading lgsm-default.ini...\c" + fn_defaultconfig +elif [ "${gamename}" == "ARMA 3" ]; then + echo -e "downloading lgsm-default.server.cfg...\c" + wget -N /dev/null ${githuburl}/Arma3/cfg/lgsm-default.server.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + echo -e "downloading lgsm-default.network.cfg...\c" + wget -N /dev/null ${githuburl}/Arma3/cfg/lgsm-default.network.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_arma3config +elif [ "${gamename}" == "BrainBread 2" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/BrainBread2/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_sourceconfig +elif [ "${gamename}" == "Black Mesa: Deathmatch" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/BlackMesa/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_sourceconfig +elif [ "${gamename}" == "Blade Symphony" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/BladeSymphony/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_goldsourceconfig +elif [ "${gamename}" == "Codename CURE" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/CodenameCURE/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_sourceconfig +elif [ "${gamename}" == "Counter-Strike 1.6" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/CounterStrike/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_goldsourceconfig +elif [ "${gamename}" == "Counter-Strike: Condition Zero" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/CounterStrikeConditionZero/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_goldsourceconfig +elif [ "${gamename}" == "Counter-Strike: Global Offensive" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/CounterStrikeGlobalOffensive/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_sourceconfig +elif [ "${gamename}" == "Counter-Strike: Source" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/CounterStrikeSource/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_sourceconfig +elif [ "${gamename}" == "Day of Defeat" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/DayOfDefeat/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_goldsourceconfig +elif [ "${gamename}" == "Day of Defeat: Source" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/DayOfDefeatSource/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_sourceconfig +elif [ "${gamename}" == "Day of Infamy" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/DayOfInfamy/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_sourceconfig +elif [ "${gamename}" == "Don't Starve Together" ]; then + echo -e "downloading lgsm-default.ini...\c" + wget -N /dev/null ${githuburl}/DontStarveTogether/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_defaultconfig +elif [ "${gamename}" == "Double Action: Boogaloo" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/DoubleActionBoogaloo/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_sourceconfig +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.cfg 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 + sleep 1 + fn_sourceconfig +elif [ "${gamename}" == "Garry's Mod" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/GarrysMod/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_sourceconfig +elif [ "${gamename}" == "GoldenEye: Source" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/GoldenEyeSource/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_sourceconfig +elif [ "${gamename}" == "Half Life 2: Deathmatch" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/HalfLife2Deathmatch/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_sourceconfig +elif [ "${gamename}" == "Half Life: Deathmatch" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/HalfLifeDeathmatch/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_goldsourceconfig +elif [ "${gamename}" == "Insurgency" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/Insurgency/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_sourceconfig +elif [ "${gamename}" == "Just Cause 2" ]; then + fn_defaultconfig +elif [ "${gamename}" == "Killing Floor" ]; then + fn_unreal2config +elif [ "${gamename}" == "Left 4 Dead" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/Left4Dead/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_sourceconfig +elif [ "${gamename}" == "Left 4 Dead 2" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/Left4Dead2/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_sourceconfig +elif [ "${gamename}" == "Minecraft" ]; then + echo -e "downloading lgsm-default.ini...\c" + wget -N /dev/null ${githuburl}/Minecraft/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_defaultconfig +elif [ "${gamename}" == "No More Room in Hell" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/NoMoreRoomInHell/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_sourceconfig +elif [ "${gamename}" == "Natural Selection 2" ]; then + echo -e "no configs required." + sleep 1 + echo "" +elif [ "${gamename}" == "Pirates, Vikings, and Knights II" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/PiratesVikingandKnightsII/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_sourceconfig +elif [ "${gamename}" == "Project Zomboid" ]; then + echo -e "downloading lgsm-default.ini...\c" + wget -N /dev/null ${githuburl}/ProjectZomboid/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_defaultconfig +elif [ "${gamename}" == "Quake Live" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/QuakeLive/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_defaultconfig + fn_userinputconfig +elif [ "${gamename}" == "Red Orchestra: Ostfront 41-45" ]; then + fn_unreal2config +elif [ "${gamename}" == "Serious Sam 3: BFE" ]; then + echo -e "downloading lgsm-default.ini...\c" + wget -N /dev/null ${githuburl}/SeriousSam3BFE/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_serious3config +elif [ "${gamename}" == "Rust" ]; then + echo -e "downloading server.cfg...\c" + wget -N /dev/null ${githuburl}/Rust/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_defaultconfig +elif [ "${gamename}" == "Sven Co-op" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/SvenCoop/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_goldsourceconfig +elif [ "${gamename}" == "Starbound" ]; then + echo -e "downloading lgsm-default.config...\c" + wget -N /dev/null ${githuburl}/Starbound/cfg/lgsm-default.config 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_defaultconfig + fn_userinputconfig +elif [ "${gamename}" == "TeamSpeak 3" ]; then + echo -e "downloading lgsm-default.ini...\c" + wget -N /dev/null ${githuburl}/TeamSpeak3/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_defaultconfig +elif [ "${gamename}" == "Team Fortress 2" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/TeamFortress2/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_sourceconfig +elif [ "${gamename}" == "Team Fortress Classic" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/TeamFortressClassic/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_goldsourceconfig +elif [ "${gamename}" == "Teeworlds" ]; then + echo -e "downloading ctf.cfg...\c" + wget -N /dev/null ${githuburl}/Teeworlds/cfg/ctf.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + echo -e "downloading dm.cfg...\c" + wget -N /dev/null ${githuburl}/Teeworlds/cfg/dm.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + echo -e "downloading duel.cfg...\c" + wget -N /dev/null ${githuburl}/Teeworlds/cfg/duel.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + echo -e "downloading tdm.cfg...\c" + wget -N /dev/null ${githuburl}/Teeworlds/cfg/tdm.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/Teeworlds/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_teeworldsconfig +elif [ "${gamename}" == "Terraria" ]; then + echo -e "downloading lgsm-default.txt...\c" + 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 + 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 Game.ini...\c" + wget -N /dev/null ${githuburl}/UnrealTournament/cfg/Game.ini 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_unrealtournament +elif [ "${gamename}" == "Unreal Tournament 3" ]; then + fn_ut3config +elif [ "${gamename}" == "Unreal Tournament 2004" ]; then + fn_unreal2config +elif [ "${gamename}" == "Unreal Tournament 99" ]; then + fn_ut99config +fi From 35e6eab78f1a4c7739fe1fb8e24054d04b2197f4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 9 Oct 2016 00:37:41 +0100 Subject: [PATCH 026/246] Added bf1942 --- lgsm/functions/command_details.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 46273df97..cd01e9adb 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -290,7 +290,7 @@ fn_details_ports(){ parmslocation="${red}UNKNOWN${default}" # engines that require editing in the config file - local ports_edit_array=( "avalanche" "dontstarve" "idtech3" "lwjgl2" "projectzomboid" "realvirtuality" "seriousengine35" "teeworlds" "terraria" "unreal" "unreal2" "TeamSpeak 3" "Mumble" "7 Days To Die" ) + local ports_edit_array=( "avalanche" "dontstarve" "idtech3" "lwjgl2" "projectzomboid" "refractor" "realvirtuality" "seriousengine35" "teeworlds" "terraria" "unreal" "unreal2" "TeamSpeak 3" "Mumble" "7 Days To Die" ) for port_edit in "${ports_edit_array[@]}" do if [ "${engine}" == "${port_edit}" ]||[ "${gamename}" == "${port_edit}" ]; then From e8953ab0418bba4c11de1cce9a283d341c465fd4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 9 Oct 2016 00:42:55 +0100 Subject: [PATCH 027/246] added bf1942 --- lgsm/functions/command_monitor.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_monitor.sh b/lgsm/functions/command_monitor.sh index 0d9a916c1..4052a17db 100644 --- a/lgsm/functions/command_monitor.sh +++ b/lgsm/functions/command_monitor.sh @@ -79,7 +79,7 @@ fn_monitor_tmux(){ fn_print_ok_eol_nl fn_script_log_pass "Checking session: OK" # runs gsquery check on game with specific engines. - local allowed_engines_array=( avalanche goldsource realvirtuality source spark unity3d unreal unreal2 ) + local allowed_engines_array=( avalanche goldsource refractor realvirtuality source spark unity3d unreal unreal2 ) for allowed_engine in "${allowed_engines_array[@]}" do if [ "${allowed_engine}" == "${engine}" ]; then From dab7264d7bf16f7b9386d1b552175ce88c43a862 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 9 Oct 2016 00:49:04 +0100 Subject: [PATCH 028/246] Added bf1942 --- lgsm/functions/core_getopt.sh | 67 +++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index aed1890b2..d56e87c88 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -80,6 +80,71 @@ case "${getopt}" in esac } +fn_getopt_bf1942(){ +case "${getopt}" in + st|start) + command_start.sh;; + sp|stop) + command_stop.sh;; + r|restart) + command_restart.sh;; + uf|update-functions) + command_update_functions.sh;; + m|monitor) + command_monitor.sh;; + ta|test-alert) + command_test_alert.sh;; + dt|details) + command_details.sh;; + pd|postdetails) + command_postdetails.sh;; + b|backup) + command_backup.sh;; + c|console) + command_console.sh;; + d|debug) + command_debug.sh;; + dev|dev-debug) + command_dev_debug.sh;; + i|install) + command_install.sh;; + ai|auto-install) + fn_autoinstall;; + dd|detect-deps) + command_dev_detect_deps.sh;; + dg|detect-glibc) + command_dev_detect_glibc.sh;; + dl|detect-ldd) + command_dev_detect_ldd.sh;; + *) + if [ -n "${getopt}" ]; then + echo -e "${red}Unknown command${default}: $0 ${getopt}" + exitcode=2 + fi + echo "Usage: $0 [option]" + echo "${gamename} - Linux Game Server Manager - Version ${version}" + echo "https://gameservermanagers.com/${selfname}" + echo -e "" + echo -e "${lightyellow}Commands${default}" + { + echo -e "${blue}start\t${default}st |Start the server." + echo -e "${blue}stop\t${default}sp |Stop the server." + echo -e "${blue}restart\t${default}r |Restart the server." + echo -e "${blue}update-functions\t${default}uf |Removes all functions so latest can be downloaded." + echo -e "${blue}monitor\t${default}m |Checks that the server is running." + echo -e "${blue}test-alert\t${default}ta |Sends test alert." + echo -e "${blue}details\t${default}dt |Displays useful infomation about the server." + echo -e "${blue}postdetails\t${default}pd |Post stripped details to pastebin (for support)" + echo -e "${blue}backup\t${default}b |Create archive of the server." + echo -e "${blue}console\t${default}c |Console allows you to access the live view of a server." + echo -e "${blue}debug\t${default}d |See the output of the server directly to your terminal." + echo -e "${blue}install\t${default}i |Install the server." + echo -e "${blue}auto-install\t${default}ai |Install the server, without prompts." + } | column -s $'\t' -t + esac +} + + fn_getopt_teamspeak3(){ case "${getopt}" in st|start) @@ -554,6 +619,8 @@ case "${getopt}" in if [ "${gamename}" == "Mumble" ]; then fn_getopt_mumble +elif [ "${gamename}" == "Battlefield: 1942" ]; then + fn_getopt_bf1942 elif [ "${engine}" == "lwjgl2" ]; then fn_getopt_minecraft elif [ "${gamename}" == "TeamSpeak 3" ]; then From aea01769cebf3067bf42c3b721d524e0bedef6ff Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 9 Oct 2016 00:56:23 +0100 Subject: [PATCH 029/246] removed IP as in config file --- Battlefield1942/bf1942server | 1 - 1 file changed, 1 deletion(-) diff --git a/Battlefield1942/bf1942server b/Battlefield1942/bf1942server index decb4c34d..72111ab81 100644 --- a/Battlefield1942/bf1942server +++ b/Battlefield1942/bf1942server @@ -27,7 +27,6 @@ pushbulletalert="off" pushbullettoken="accesstoken" # Start Variables -ip="0.0.0.0" fn_parms(){ parms=" +hostServer 1 +dedicated 1" From 85397a012402c04ae31bb43da3096163287e536c Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 9 Oct 2016 13:37:39 +0100 Subject: [PATCH 030/246] Starbound glibc requirements increased to 2.17 --- lgsm/functions/info_glibc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index 9ec7878e2..207d96ed3 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -75,7 +75,7 @@ elif [ "${engine}" == "spark" ]; then glibcrequired="2.15" glibcfix="yes" elif [ "${engine}" == "starbound" ]; then - glibcrequired="2.12" + glibcrequired="2.17" glibcfix="no" elif [ "${engine}" == "terraria" ]; then glibcrequired="2.7" From 87c50840579b02522056ba1798bf91130cb82909 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 9 Oct 2016 20:05:18 +0100 Subject: [PATCH 031/246] Updated servercfgdefault --- BladeSymphony/bsserver | 2 +- BrainBread2/bb2server | 2 +- CodenameCURE/ccserver | 2 +- CounterStrike/csserver | 2 +- CounterStrikeConditionZero/csczserver | 2 +- CounterStrikeGlobalOffensive/csgoserver | 2 +- CounterStrikeSource/cssserver | 2 +- DayOfDefeat/dodserver | 2 +- DayOfDefeatSource/dodsserver | 2 +- DayOfInfamy/doiserver | 2 +- DeathmatchClassic/dmcserver | 2 +- DontStarveTogether/dstserver | 1 + DoubleActionBoogaloo/dabserver | 2 +- EmpiresMod/emserver | 2 +- FistfulOfFrags/fofserver | 2 +- GarrysMod/gmodserver | 2 +- GoldenEyeSource/gesserver | 2 +- HalfLife2Deathmatch/hl2dmserver | 2 +- HalfLifeDeathmatch/hldmserver | 2 +- HalfLifeDeathmatchSource/hldmsserver | 2 +- Insurgency/insserver | 2 +- JustCause2/jc2server | 1 + KillingFloor/kfserver | 2 +- Left4Dead/l4dserver | 2 +- Left4Dead2/l4d2server | 2 +- Minecraft/mcserver | 1 + Mumble/mumbleserver | 1 + NoMoreRoomInHell/nmrihserver | 2 +- OpposingForce/opforserver | 2 +- PiratesVikingandKnightsII/pvkiiserver | 2 +- ProjectZomboid/pzserver | 4 ++-- QuakeLive/qlserver | 2 +- RedOrchestra/roserver | 2 +- Ricochet/ricochetserver | 2 +- Rust/rustserver | 2 +- SeriousSam3BFE/ss3sserver | 2 +- Starbound/sbserver | 2 +- SvenCoop/svencoopserver | 2 +- TeamFortress2/tf2server | 2 +- TeamFortressClassic/tfcserver | 2 +- TeamSpeak3/ts3server | 2 +- Teeworlds/twserver | 2 +- Terraria/terrariaserver | 2 +- UnrealTournament2004/ut2k4server | 2 +- UnrealTournament99/ut99server | 2 +- WolfensteinEnemyTerritory/wetserver | 2 +- 46 files changed, 47 insertions(+), 43 deletions(-) diff --git a/BladeSymphony/bsserver b/BladeSymphony/bsserver index 837ef62c8..e5e071271 100644 --- a/BladeSymphony/bsserver +++ b/BladeSymphony/bsserver @@ -79,9 +79,9 @@ systemdir="${filesdir}/berimbau" executabledir="${filesdir}" executable="./srcds_run.sh" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/BrainBread2/bb2server b/BrainBread2/bb2server index 78b57708e..8ff2d159c 100644 --- a/BrainBread2/bb2server +++ b/BrainBread2/bb2server @@ -84,9 +84,9 @@ systemdir="${filesdir}/brainbread2" executabledir="${filesdir}" executable="./srcds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/CodenameCURE/ccserver b/CodenameCURE/ccserver index 150a8d3ac..3473eed80 100644 --- a/CodenameCURE/ccserver +++ b/CodenameCURE/ccserver @@ -79,9 +79,9 @@ systemdir="${filesdir}/cure" executabledir="${filesdir}" executable="./srcds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/CounterStrike/csserver b/CounterStrike/csserver index 601a3eb93..e2cdde7fc 100644 --- a/CounterStrike/csserver +++ b/CounterStrike/csserver @@ -74,9 +74,9 @@ systemdir="${filesdir}/cstrike" executabledir="${filesdir}" executable="./hlds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/CounterStrikeConditionZero/csczserver b/CounterStrikeConditionZero/csczserver index 5d58f2314..895ec1583 100644 --- a/CounterStrikeConditionZero/csczserver +++ b/CounterStrikeConditionZero/csczserver @@ -74,9 +74,9 @@ systemdir="${filesdir}/czero" executabledir="${filesdir}" executable="./hlds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index 6fb3d9313..87425d00a 100755 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -102,9 +102,9 @@ systemdir="${filesdir}/csgo" executabledir="${filesdir}" executable="./srcds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/CounterStrikeSource/cssserver b/CounterStrikeSource/cssserver index f2a7cd590..e6994789e 100644 --- a/CounterStrikeSource/cssserver +++ b/CounterStrikeSource/cssserver @@ -84,9 +84,9 @@ systemdir="${filesdir}/cstrike" executabledir="${filesdir}" executable="./srcds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/DayOfDefeat/dodserver b/DayOfDefeat/dodserver index ceedba772..f6cd2b34e 100644 --- a/DayOfDefeat/dodserver +++ b/DayOfDefeat/dodserver @@ -74,9 +74,9 @@ systemdir="${filesdir}/dod" executabledir="${filesdir}" executable="./hlds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/DayOfDefeatSource/dodsserver b/DayOfDefeatSource/dodsserver index 9e576bcd7..342ccc97a 100644 --- a/DayOfDefeatSource/dodsserver +++ b/DayOfDefeatSource/dodsserver @@ -79,9 +79,9 @@ systemdir="${filesdir}/dod" executabledir="${filesdir}" executable="./srcds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/DayOfInfamy/doiserver b/DayOfInfamy/doiserver index 2b7fdb4ec..7440b369f 100644 --- a/DayOfInfamy/doiserver +++ b/DayOfInfamy/doiserver @@ -81,9 +81,9 @@ systemdir="${filesdir}/doi" executabledir="${filesdir}" executable="./srcds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/DeathmatchClassic/dmcserver b/DeathmatchClassic/dmcserver index 6d6425929..b987c9685 100644 --- a/DeathmatchClassic/dmcserver +++ b/DeathmatchClassic/dmcserver @@ -74,9 +74,9 @@ systemdir="${filesdir}/dmc" executabledir="${filesdir}" executable="./hlds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index 92002f8fb..e96d304b8 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -77,6 +77,7 @@ systemdir="${filesdir}" executabledir="${filesdir}/bin" executable="./dontstarve_dedicated_server_nullrenderer" servercfg="settings.ini" +servercfgdefault="settings.ini" servercfgdir="${HOME}/.klei/DoNotStarveTogether" servercfgfullpath="${servercfgdir}/${servercfg}" servercfgdefault="${servercfgdir}/lgsm-default.ini" diff --git a/DoubleActionBoogaloo/dabserver b/DoubleActionBoogaloo/dabserver index e8db62c58..4b8b531e9 100644 --- a/DoubleActionBoogaloo/dabserver +++ b/DoubleActionBoogaloo/dabserver @@ -79,9 +79,9 @@ systemdir="${filesdir}/dab" executabledir="${filesdir}" executable="./dabds.sh" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/EmpiresMod/emserver b/EmpiresMod/emserver index 5dfa54af1..20e28b2d4 100644 --- a/EmpiresMod/emserver +++ b/EmpiresMod/emserver @@ -84,9 +84,9 @@ systemdir="${filesdir}/empires" executabledir="${filesdir}" executable="./srcds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/server.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/FistfulOfFrags/fofserver b/FistfulOfFrags/fofserver index 59a896a20..8a9fa69c5 100644 --- a/FistfulOfFrags/fofserver +++ b/FistfulOfFrags/fofserver @@ -79,9 +79,9 @@ systemdir="${filesdir}/fof" executabledir="${filesdir}" executable="./srcds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index 1eab6d643..edc225016 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -101,9 +101,9 @@ addonsdir="${systemdir}/addons" executabledir="${filesdir}" executable="./srcds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/GoldenEyeSource/gesserver b/GoldenEyeSource/gesserver index 9b9495e0c..081362d2a 100644 --- a/GoldenEyeSource/gesserver +++ b/GoldenEyeSource/gesserver @@ -74,9 +74,9 @@ systemdir="${filesdir}/gesource" executabledir="${filesdir}" executable="./srcds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/HalfLife2Deathmatch/hl2dmserver b/HalfLife2Deathmatch/hl2dmserver index e26a2b11c..ff324c434 100644 --- a/HalfLife2Deathmatch/hl2dmserver +++ b/HalfLife2Deathmatch/hl2dmserver @@ -74,9 +74,9 @@ systemdir="${filesdir}/hl2mp" executabledir="${filesdir}" executable="./srcds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/HalfLifeDeathmatch/hldmserver b/HalfLifeDeathmatch/hldmserver index 10a32f7d7..2716a27e9 100644 --- a/HalfLifeDeathmatch/hldmserver +++ b/HalfLifeDeathmatch/hldmserver @@ -73,9 +73,9 @@ systemdir="${filesdir}/valve" executabledir="${filesdir}" executable="./hlds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/HalfLifeDeathmatchSource/hldmsserver b/HalfLifeDeathmatchSource/hldmsserver index ff040ab27..0a45df162 100644 --- a/HalfLifeDeathmatchSource/hldmsserver +++ b/HalfLifeDeathmatchSource/hldmsserver @@ -74,9 +74,9 @@ systemdir="${filesdir}/hl1mp" executabledir="${filesdir}" executable="./srcds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/Insurgency/insserver b/Insurgency/insserver index 29ed31c8c..ba49fb494 100644 --- a/Insurgency/insserver +++ b/Insurgency/insserver @@ -81,9 +81,9 @@ systemdir="${filesdir}/insurgency" executabledir="${filesdir}" executable="./srcds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/JustCause2/jc2server b/JustCause2/jc2server index 7ac9b3b3a..a2c6a7515 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -73,6 +73,7 @@ systemdir="${filesdir}" executabledir="${filesdir}" executable="./Jcmp-Server" servercfg="config.lua" +servercfgdefault="config.lua" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" servercfgdefault="${servercfgdir}/default_config.lua" diff --git a/KillingFloor/kfserver b/KillingFloor/kfserver index a9ba85c33..09ad60899 100644 --- a/KillingFloor/kfserver +++ b/KillingFloor/kfserver @@ -78,9 +78,9 @@ systemdir="${filesdir}/System" executabledir="${systemdir}" executable="./ucc-bin" servercfg="${servicename}.ini" +servercfgdefault="Default.ini" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/Default.ini" compressedmapsdir="${rootdir}/Maps-Compressed" backupdir="${rootdir}/backups" diff --git a/Left4Dead/l4dserver b/Left4Dead/l4dserver index 9a2f8fb47..d05cd9a79 100644 --- a/Left4Dead/l4dserver +++ b/Left4Dead/l4dserver @@ -79,9 +79,9 @@ systemdir="${filesdir}/left4dead" executabledir="${filesdir}" executable="./srcds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/Left4Dead2/l4d2server b/Left4Dead2/l4d2server index 2dda75759..bddcaae9e 100644 --- a/Left4Dead2/l4d2server +++ b/Left4Dead2/l4d2server @@ -78,9 +78,9 @@ systemdir="${filesdir}/left4dead2" executabledir="${filesdir}" executable="./srcds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/Minecraft/mcserver b/Minecraft/mcserver index 71c5e207f..6317fb9bc 100644 --- a/Minecraft/mcserver +++ b/Minecraft/mcserver @@ -59,6 +59,7 @@ systemdir="${filesdir}" executabledir="${filesdir}" executable="java -Xmx${javaram}M -jar minecraft_server.jar" servercfg="server.properties" +servercfgdefault="server.properties" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" servercfgdefault="${servercfgdir}/lgsm-default.ini" diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index ab9fdc22f..6bfa1e996 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -61,6 +61,7 @@ systemdir="${filesdir}" executabledir="${filesdir}" executable="./murmur.x86" servercfg="murmur.ini" +servercfgdefault="murmur.ini" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" backupdir="${rootdir}/backups" diff --git a/NoMoreRoomInHell/nmrihserver b/NoMoreRoomInHell/nmrihserver index d1fea24f0..be02bfc0e 100644 --- a/NoMoreRoomInHell/nmrihserver +++ b/NoMoreRoomInHell/nmrihserver @@ -84,9 +84,9 @@ systemdir="${filesdir}/nmrih" executabledir="${filesdir}" executable="./srcds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/OpposingForce/opforserver b/OpposingForce/opforserver index 7faa17c66..5013110e2 100644 --- a/OpposingForce/opforserver +++ b/OpposingForce/opforserver @@ -74,9 +74,9 @@ systemdir="${filesdir}/gearbox" executabledir="${filesdir}" executable="./hlds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -defaultcfg="${servercfgdir}/server.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/PiratesVikingandKnightsII/pvkiiserver b/PiratesVikingandKnightsII/pvkiiserver index def1a6c95..5074af33e 100644 --- a/PiratesVikingandKnightsII/pvkiiserver +++ b/PiratesVikingandKnightsII/pvkiiserver @@ -79,9 +79,9 @@ systemdir="${filesdir}/pvkii" executabledir="${filesdir}" executable="./srcds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/ProjectZomboid/pzserver b/ProjectZomboid/pzserver index 8683d84e8..143c382c6 100644 --- a/ProjectZomboid/pzserver +++ b/ProjectZomboid/pzserver @@ -74,10 +74,10 @@ filesdir="${rootdir}/serverfiles" systemdir="${filesdir}" executabledir="${filesdir}" executable="./start-server.sh" -servercfg="servertest.ini" +servercfg="server.ini" +servercfgdefault="server.cfg" servercfgdir="${HOME}/Zomboid/Server" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.ini" backupdir="${rootdir}/backups" # Logging diff --git a/QuakeLive/qlserver b/QuakeLive/qlserver index 72fdc32d8..f1283d2a0 100755 --- a/QuakeLive/qlserver +++ b/QuakeLive/qlserver @@ -82,9 +82,9 @@ systemdir="${filesdir}" executabledir="${filesdir}" executable=$([ "${arch}" == 'x64' ] && echo "./run_server_x64.sh" || echo "./run_server_x86.sh") servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${filesdir}/baseq3" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/RedOrchestra/roserver b/RedOrchestra/roserver index 0403a67a5..66b85d98e 100644 --- a/RedOrchestra/roserver +++ b/RedOrchestra/roserver @@ -69,9 +69,9 @@ systemdir="${filesdir}/system" executabledir="${systemdir}" executable="./ucc-bin" servercfg="${servicename}.ini" +servercfgdefault="default.ini" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/default.ini" compressedmapsdir="${rootdir}/Maps-Compressed" backupdir="${rootdir}/backups" diff --git a/Ricochet/ricochetserver b/Ricochet/ricochetserver index d3a285691..ff5862808 100644 --- a/Ricochet/ricochetserver +++ b/Ricochet/ricochetserver @@ -74,9 +74,9 @@ systemdir="${filesdir}/ricochet" executabledir="${filesdir}" executable="./hlds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/Rust/rustserver b/Rust/rustserver index 43a621596..6e5f8f76a 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -97,9 +97,9 @@ executabledir="${filesdir}" executable="./RustDedicated" serveridentitydir="${systemdir}/server/${servicename}" servercfg="server.cfg" +servercfgdefault="server.cfg" servercfgdir="${serveridentitydir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/SeriousSam3BFE/ss3sserver b/SeriousSam3BFE/ss3sserver index 9d2420c60..35b78d831 100644 --- a/SeriousSam3BFE/ss3sserver +++ b/SeriousSam3BFE/ss3sserver @@ -74,9 +74,9 @@ systemdir="${filesdir}/Bin" executable="./runSam3_DedicatedServer.sh" executabledir="${systemdir}" servercfg="${servicename}.ini" +servercfgdefault="server.ini" servercfgdir="${filesdir}/Content/SeriousSam3/Config" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.ini" backupdir="${rootdir}/backups" # Logging diff --git a/Starbound/sbserver b/Starbound/sbserver index 9af94eae6..197d93ee3 100644 --- a/Starbound/sbserver +++ b/Starbound/sbserver @@ -73,9 +73,9 @@ systemdir="${filesdir}" executabledir="${filesdir}/linux" executable="./starbound_server" servercfg="starbound_server.config" +servercfgdefault="starbound_server.config" servercfgdir="${filesdir}/storage" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.config" backupdir="${rootdir}/backups" # Logging diff --git a/SvenCoop/svencoopserver b/SvenCoop/svencoopserver index 1ae1a341e..c89ffb88d 100644 --- a/SvenCoop/svencoopserver +++ b/SvenCoop/svencoopserver @@ -78,9 +78,9 @@ systemdir="${filesdir}/svencoop" executabledir="${filesdir}" executable="./svends_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/TeamFortress2/tf2server b/TeamFortress2/tf2server index c9acadd43..972e60903 100644 --- a/TeamFortress2/tf2server +++ b/TeamFortress2/tf2server @@ -84,9 +84,9 @@ systemdir="${filesdir}/tf" executabledir="${filesdir}" executable="./srcds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/TeamFortressClassic/tfcserver b/TeamFortressClassic/tfcserver index 7dc68f971..4a9496d35 100644 --- a/TeamFortressClassic/tfcserver +++ b/TeamFortressClassic/tfcserver @@ -74,9 +74,9 @@ systemdir="${filesdir}/tfc" executabledir="${filesdir}" executable="./hlds_run" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/TeamSpeak3/ts3server b/TeamSpeak3/ts3server index 88f187663..2c0af6bd5 100644 --- a/TeamSpeak3/ts3server +++ b/TeamSpeak3/ts3server @@ -47,9 +47,9 @@ systemdir="${filesdir}" executabledir="${filesdir}" executable="./ts3server_startscript.sh" servercfg="${servicename}.ini" +servercfgdefault="ts3server.ini" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.ini" backupdir="${rootdir}/backups" # Logging diff --git a/Teeworlds/twserver b/Teeworlds/twserver index c8d920d59..8ab31bbcb 100644 --- a/Teeworlds/twserver +++ b/Teeworlds/twserver @@ -69,9 +69,9 @@ systemdir="${filesdir}" executabledir="${filesdir}" executable="./teeworlds_srv" servercfg="${servicename}.cfg" # Teeworlds can also auto load any config if an autoexec.cfg file is present in the server dir +servercfgdefault="server.cfg" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/Terraria/terrariaserver b/Terraria/terrariaserver index 2cbef2d13..fba75083f 100644 --- a/Terraria/terrariaserver +++ b/Terraria/terrariaserver @@ -69,9 +69,9 @@ systemdir="${filesdir}" executabledir="${filesdir}" executable="./TerrariaServer" servercfg="${servicename}.txt" +servercfgdefault="serverconfig.txt" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.txt" backupdir="${rootdir}/backups" # Logging diff --git a/UnrealTournament2004/ut2k4server b/UnrealTournament2004/ut2k4server index f28240414..3c82b7e7b 100644 --- a/UnrealTournament2004/ut2k4server +++ b/UnrealTournament2004/ut2k4server @@ -52,9 +52,9 @@ systemdir="${filesdir}/System" executabledir="${systemdir}" executable="./ucc-bin" servercfg="${servicename}.ini" +servercfgdefault="UT2004.ini" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/UT2004.ini" compressedmapsdir="${rootdir}/Maps-Compressed" backupdir="${rootdir}/backups" diff --git a/UnrealTournament99/ut99server b/UnrealTournament99/ut99server index b40a41fdd..771882279 100644 --- a/UnrealTournament99/ut99server +++ b/UnrealTournament99/ut99server @@ -61,9 +61,9 @@ systemdir="${filesdir}/System" executabledir="${systemdir}" executable="./ucc-bin" servercfg="${servicename}.ini" +servercfgdefault="Default.ini" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/Default.ini" compressedmapsdir="${rootdir}/Maps-Compressed" backupdir="${rootdir}/backups" diff --git a/WolfensteinEnemyTerritory/wetserver b/WolfensteinEnemyTerritory/wetserver index 28f4c510b..aab4a9687 100644 --- a/WolfensteinEnemyTerritory/wetserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -59,9 +59,9 @@ systemdir="${filesdir}" executabledir="${systemdir}" executable="./etded" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/etmain" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging From e2517134a713e880f9274f9d0fd93f2c9f048689 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 9 Oct 2016 20:08:08 +0100 Subject: [PATCH 032/246] updated tests --- tests/tests_jc2server.sh | 2 +- tests/tests_ts3server.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index bc7516427..7a6b62b5d 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -67,9 +67,9 @@ systemdir="${filesdir}" executabledir="${filesdir}" executable="./Jcmp-Server" servercfg="config.lua" +servercfgdefault="config.lua" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/default_config.lua" backupdir="${rootdir}/backups" # Logging diff --git a/tests/tests_ts3server.sh b/tests/tests_ts3server.sh index 3189ec872..82a4cc147 100644 --- a/tests/tests_ts3server.sh +++ b/tests/tests_ts3server.sh @@ -60,9 +60,9 @@ systemdir="${filesdir}" executabledir="${filesdir}" executable="./ts3server_startscript.sh" servercfg="${servicename}.ini" +servercfgdefault="ts3server.ini" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.ini" backupdir="${rootdir}/backups" # Logging From 8f1a17cb765ca68946df6dcae310f9026fca8139 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 9 Oct 2016 20:08:20 +0100 Subject: [PATCH 033/246] bug --- JustCause2/jc2server | 1 - 1 file changed, 1 deletion(-) diff --git a/JustCause2/jc2server b/JustCause2/jc2server index a2c6a7515..fa10697cb 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -76,7 +76,6 @@ servercfg="config.lua" servercfgdefault="config.lua" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/default_config.lua" backupdir="${rootdir}/backups" # Logging From c543b1a7c35e98b9d653d953e0d0e6275087bdac Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 12 Oct 2016 21:28:42 +0100 Subject: [PATCH 034/246] Updated Unreal tournament configs --- lgsm/functions/install_config.sh | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 95bf65124..79bdb76ab 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -334,14 +334,20 @@ elif [ "${gamename}" == "Terraria" ]; then fn_fetch_default_config fn_default_config_remote elif [ "${gamename}" == "Unreal Tournament" ]; then - : + gamedirname="UnrealTournament" + array_configs+=( Game.ini Engine.ini ) + fn_fetch_default_config + fn_default_config_remote elif [ "${gamename}" == "Unreal Tournament 2004" ]; then - : + gamedirname="UnrealTournament2004" + array_configs+=( Default.ini ) + fn_fetch_default_config + fn_default_config_remote elif [ "${gamename}" == "Unreal Tournament 3" ]; then : elif [ "${gamename}" == "Unreal Tournament 99" ]; then gamedirname="UnrealTournament99" - array_configs+=( Game.ini Engine.ini ) + array_configs+=( Default.ini ) fn_fetch_default_config fn_default_config_remote elif [ "${gamename}" == "Enemy Territory" ]; then From ea992716eed38ee47d03f5a77ed1263da41f4a60 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 16:40:06 +0100 Subject: [PATCH 035/246] corrected UT2004 config name --- 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 79bdb76ab..9c88b9f77 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -340,7 +340,7 @@ elif [ "${gamename}" == "Unreal Tournament" ]; then fn_default_config_remote elif [ "${gamename}" == "Unreal Tournament 2004" ]; then gamedirname="UnrealTournament2004" - array_configs+=( Default.ini ) + array_configs+=( UT2004.ini ) fn_fetch_default_config fn_default_config_remote elif [ "${gamename}" == "Unreal Tournament 3" ]; then From 2a2b53526eef22098be5da7f1e6a2f2ea9b5c15f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 16:52:11 +0100 Subject: [PATCH 036/246] ut99 fix no longer required fixes now in the default config --- lgsm/functions/fix.sh | 6 ------ lgsm/functions/fix_ut99.sh | 30 ------------------------------ 2 files changed, 36 deletions(-) delete mode 100644 lgsm/functions/fix_ut99.sh diff --git a/lgsm/functions/fix.sh b/lgsm/functions/fix.sh index 41e1ecc2f..5671ed627 100644 --- a/lgsm/functions/fix.sh +++ b/lgsm/functions/fix.sh @@ -68,12 +68,6 @@ if [ "${function_selfname}" == "command_install.sh" ]; then echo "=================================" sleep 1 fix_ut2k4.sh - elif [ "${gamename}" == "Unreal Tournament 99" ]; then - echo "" - echo "Applying ${gamename} Server Fixes" - echo "=================================" - sleep 1 - fix_ut99.sh elif [ "${gamename}" == "Unreal Tournament" ]; then echo "" echo "Applying ${gamename} Server Fixes" diff --git a/lgsm/functions/fix_ut99.sh b/lgsm/functions/fix_ut99.sh deleted file mode 100644 index aaa16bbf0..000000000 --- a/lgsm/functions/fix_ut99.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash -# LGSM fix_ut99.sh function -# Author: Daniel Gibbs -# Website: https://gameservermanagers.com -# Description: Resolves various issues with Unreal Tournament 99. - -local commandname="FIX" -local commandaction="Fix" -local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" - -echo "${servercfgfullpath}" -echo "enabling UdpServerUplink." -{ -echo "[IpServer.UdpServerUplink]" -echo "DoUplink=True" -echo "UpdateMinutes=1" -echo "MasterServerAddress=unreal.epicgames.com" -echo "MasterServerPort=27900" -echo "Region=0" -}| tee -a "${servercfgfullpath}" > /dev/null 2>&1 -sleep 1 -echo "removing dead gamespy.com master server." -sed -i '/master0.gamespy.com/d' "${servercfgfullpath}" -sleep 1 -echo "removing dead mplayer.com master server." -sed -i '/master.mplayer.com/d' "${servercfgfullpath}" -sleep 1 -echo "inserting qtracker.com master server." -sed -i '65i\ServerActors=IpServer.UdpServerUplink MasterServerAddress=master.qtracker.com MasterServerPort=27900' "${servercfgfullpath}" -echo "" \ No newline at end of file From 40ee00c0ba58e4bdb9ac5632e28aec39fb31cd52 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 16:58:05 +0100 Subject: [PATCH 037/246] corrected W:ET file --- 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 58611b10e..b90719f80 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -18,7 +18,7 @@ fn_install_server_files(){ elif [ "${gamename}" == "Battlefield: 1942" ]; then fileurl="http://files.gameservermanagers.com/BattleField1942/bf1942_lnxded-1.61-hacked-to-1.612.full.tar.bz2"; filedir="${tmpdir}"; filename="bf1942_lnxded-1.61-hacked-to-1.612.full.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="a86a5d3cd64ca59abcc9bb9f777c2e5d" elif [ "${gamename}" == "Enemy Territory" ]; then - fileurl="http://files.gameservermanagers.com/WolfensteinEnemyTerritory/enemy-territory.260b.tar.bz2"; filedir="${tmpdir}"; filename="enemy-territory.260b.tar.gz"; executecmd="noexecute" run="norun"; force="noforce"; md5="ded32053e470fe15d9403ec4a0ab7e89" + fileurl="http://files.gameservermanagers.com/WolfensteinEnemyTerritory/enemy-territory.260b.tar.bz2"; filedir="${tmpdir}"; filename="enemy-territory.260b.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="f833f514bfcdd46b42c111f83350c5a7" elif [ "${gamename}" == "Unreal Tournament" ]; then fileurl="http://files.gameservermanagers.com/UnrealTournament/UnrealTournament-Server-XAN-3045522-Linux.zip"; filedir="${tmpdir}"; filename="UnrealTournament-Server-XAN-3045522-Linux.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="553fed5645a9fc623e92563049bf79f6" elif [ "${gamename}" == "GoldenEye: Source" ]; then From f13a24c5fb29c67fe9a28aab3890f26b040fb781 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 17:41:53 +0100 Subject: [PATCH 038/246] added ipchecking to idtech3 engine --- lgsm/functions/info_config.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index d7a4ddc77..1c27e7c92 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -164,7 +164,6 @@ fn_info_config_idtech3(){ rconpassword="${unavailable}" servername="${unavailable}" serverpassword="${unavailable}" - slots="${zero}" else rconpassword=$(grep "zmq_rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set zmq_rcon_password//g' | tr -d '=\";,:' | xargs -0) @@ -177,6 +176,10 @@ fn_info_config_idtech3(){ servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} slots=${slots:-"0"} + ipconfigcheck=$(grep "net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/net_ip//g' | tr -d '=\";,:' | xargs -0) + if [ -n "${ipconfigcheck}" ]; then + ip="${ipconfigcheck}" + fi fi } From 691bab99955f22aba59c7c1fbd7be1d02753cf74 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 19:55:23 +0100 Subject: [PATCH 039/246] improvements for wetserver --- lgsm/functions/command_details.sh | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index cd01e9adb..b7a25b2d7 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -384,7 +384,7 @@ fn_details_refractor(){ } | column -s $'\t' -t } -fn_details_idtech3(){ +fn_details_quakelive(){ echo -e "netstat -atunp | grep qzeroded" echo -e "" if [ -z "${port}" ]||[ -z "${rconport}" ]||[ -z "${statsport}" ]; then @@ -399,6 +399,19 @@ fn_details_idtech3(){ } | column -s $'\t' -t } +fn_details_wolfensteinenemyterritory(){ + echo -e "netstat -atunp | grep etded" + echo -e "" + if [ -z "${port}" ]||[ -z "${rconport}" ]||[ -z "${statsport}" ]; then + echo -e "${red}ERROR!${default} Missing/commented ports in ${servercfg}." + echo -e "" + fi + { + echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" + echo -e "> Game\tINBOUND\t${port}\tudp" + } | column -s $'\t' -t +} + fn_details_seriousengine35(){ echo -e "netstat -atunp | grep Sam3_Dedicate" @@ -621,8 +634,6 @@ fn_display_details() { fn_details_minecraft elif [ "${engine}" == "projectzomboid" ]; then fn_details_projectzomboid - elif [ "${engine}" == "idtech3" ]; then - fn_details_idtech3 elif [ "${engine}" == "realvirtuality" ]; then fn_details_realvirtuality elif [ "${engine}" == "seriousengine35" ]; then @@ -639,18 +650,22 @@ fn_display_details() { fn_details_terraria elif [ "${engine}" == "unreal" ]||[ "${engine}" == "unreal2" ]; then fn_details_unreal + elif [ "${gamename}" == "7 Days To Die" ]; then + fn_details_sdtd elif [ "${gamename}" == "ARK: Survivial Evolved" ]; then fn_details_ark elif [ "${gamename}" == "Hurtworld" ]; then fn_details_hurtworld - elif [ "${gamename}" == "7 Days To Die" ]; then - fn_details_sdtd + elif [ "${gamename}" == "Quake Live" ]; then + fn_details_quakelive elif [ "${gamename}" == "TeamSpeak 3" ]; then fn_details_teamspeak3 elif [ "${gamename}" == "Mumble" ]; then fn_details_mumble elif [ "${gamename}" == "Rust" ]; then fn_details_rust + elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then + fn_details_wolfensteinenemyterritory else fn_print_error_nl "Unable to detect server engine." fi From 49942bd27ea1facf093ac2a976b5a99295ef9376 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 19:55:31 +0100 Subject: [PATCH 040/246] Renamed gamename --- WolfensteinEnemyTerritory/wetserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WolfensteinEnemyTerritory/wetserver b/WolfensteinEnemyTerritory/wetserver index aab4a9687..23789b26e 100644 --- a/WolfensteinEnemyTerritory/wetserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -43,7 +43,7 @@ githubbranch="master" # Server Details servicename="et-server" -gamename="Enemy Territory" +gamename="Wolfenstein: Enemy Territory" engine="idtech3" # Directories From 37c0423917673fcc358418e26aca338048f511ca Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 20:41:54 +0100 Subject: [PATCH 041/246] Updated ET name --- lgsm/functions/command_install.sh | 2 +- lgsm/functions/install_config.sh | 2 +- lgsm/functions/install_config.sh.old.sh | 2 +- lgsm/functions/install_server_files.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index bcfe36fd2..5b741a126 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 3" ]||[ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Enemy Territory" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Minecraft" ]||[ "${gamename}" == "Mumble" ]; then +elif [ "${gamename}" == "Unreal Tournament 3" ]||[ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Minecraft" ]||[ "${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 9c88b9f77..ad7278e93 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -350,7 +350,7 @@ elif [ "${gamename}" == "Unreal Tournament 99" ]; then array_configs+=( Default.ini ) fn_fetch_default_config fn_default_config_remote -elif [ "${gamename}" == "Enemy Territory" ]; then +elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then gamedirname="WolfensteinEnemyTerritory" array_configs+=( server.cfg ) fn_fetch_default_config diff --git a/lgsm/functions/install_config.sh.old.sh b/lgsm/functions/install_config.sh.old.sh index 7ac97a6fe..5e4b2b999 100644 --- a/lgsm/functions/install_config.sh.old.sh +++ b/lgsm/functions/install_config.sh.old.sh @@ -312,7 +312,7 @@ elif [ "${gamename}" == "Double Action: Boogaloo" ]; then fn_sourceconfig elif [ "${gamename}" == "Empires Mod" ]; then fn_defaultconfig -elif [ "${gamename}" == "Enemy Territory" ]; then +elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then echo -e "downloading lgsm-default.cfg...\c" wget -N /dev/null ${githuburl}/EnemyTerritory/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq sleep 1 diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index b90719f80..3bd782e38 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -17,7 +17,7 @@ fn_install_server_files(){ fileurl="http://files.gameservermanagers.com/UnrealTournament3/UT3-linux-server-2.1.tar.bz2"; filedir="${tmpdir}"; filename="UT3-linux-server-2.1.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="6c22fcef9e2e03ed154df97569af540c" elif [ "${gamename}" == "Battlefield: 1942" ]; then fileurl="http://files.gameservermanagers.com/BattleField1942/bf1942_lnxded-1.61-hacked-to-1.612.full.tar.bz2"; filedir="${tmpdir}"; filename="bf1942_lnxded-1.61-hacked-to-1.612.full.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="a86a5d3cd64ca59abcc9bb9f777c2e5d" - elif [ "${gamename}" == "Enemy Territory" ]; then + elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fileurl="http://files.gameservermanagers.com/WolfensteinEnemyTerritory/enemy-territory.260b.tar.bz2"; filedir="${tmpdir}"; filename="enemy-territory.260b.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="f833f514bfcdd46b42c111f83350c5a7" elif [ "${gamename}" == "Unreal Tournament" ]; then fileurl="http://files.gameservermanagers.com/UnrealTournament/UnrealTournament-Server-XAN-3045522-Linux.zip"; filedir="${tmpdir}"; filename="UnrealTournament-Server-XAN-3045522-Linux.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="553fed5645a9fc623e92563049bf79f6" From 53c14f86afdf0f95037087d4a6970e62b16ed280 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 20:52:27 +0100 Subject: [PATCH 042/246] split quake live and et --- lgsm/functions/info_config.sh | 34 ++++++++++++++++++++++++++++++---- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 1c27e7c92..923f48b36 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -159,7 +159,7 @@ fn_info_config_projectzomboid(){ fi } -fn_info_config_idtech3(){ +fn_info_config_quakelive(){ if [ ! -f "${servercfgfullpath}" ]; then rconpassword="${unavailable}" servername="${unavailable}" @@ -176,7 +176,31 @@ fn_info_config_idtech3(){ servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} slots=${slots:-"0"} - ipconfigcheck=$(grep "net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/net_ip//g' | tr -d '=\";,:' | xargs -0) + ipconfigcheck=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | xargs -0) + if [ -n "${ipconfigcheck}" ]; then + ip="${ipconfigcheck}" + fi + fi +} + +fn_info_config_wolfensteinenemyterritory(){ + if [ ! -f "${servercfgfullpath}" ]; then + rconpassword="${unavailable}" + servername="${unavailable}" + serverpassword="${unavailable}" + slots="${zero}" + else + rconpassword=$(grep "zmq_rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set zmq_rcon_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//g' -e '/^\//d' | xargs -0) + servername=$(grep "sv_hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname//g' | tr -d '=\";,:' | xargs -0) + serverpassword=$(grep "g_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set g_password//g' | tr -d '=\";,:' | xargs -0) + slots=$(grep "sv_maxclients" "${servercfgfullpath}" | tr -cd '[:digit:]') + + # Not Set + rconpassword=${rconpassword:-"NOT SET"} + servername=${servername:-"NOT SET"} + serverpassword=${serverpassword:-"NOT SET"} + slots=${slots:-"0"} + ipconfigcheck=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | xargs -0) if [ -n "${ipconfigcheck}" ]; then ip="${ipconfigcheck}" fi @@ -458,8 +482,8 @@ elif [ "${gamename}" == "Battlefield: 1942" ]; then elif [ "${engine}" == "dontstarve" ]; then fn_info_config_dontstarve # Quake Live -elif [ "${engine}" == "idtech3" ]; then - fn_info_config_idtech3 +elif [ "${gamename}" == "Quake Live" ]; then + fn_info_config_quakelive # Minecraft elif [ "${engine}" == "lwjgl2" ]; then fn_info_config_minecraft @@ -495,4 +519,6 @@ elif [ "${engine}" == "unreal" ]||[ "${engine}" == "unreal2" ]; then # 7 Day To Die (unity3d) elif [ "${gamename}" == "7 Days To Die" ]; then fn_info_config_sdtd +elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then + fn_info_config_wolfensteinenemyterritory fi From 44f3a7018c1889cee6b36e95e0aa795c55756187 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 20:57:14 +0100 Subject: [PATCH 043/246] ET now bypasses IP check --- lgsm/functions/check_ip.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_ip.sh b/lgsm/functions/check_ip.sh index 1a64db6bd..99cf07503 100644 --- a/lgsm/functions/check_ip.sh +++ b/lgsm/functions/check_ip.sh @@ -8,7 +8,7 @@ local commandname="CHECK" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -if [ "${gamename}" != "TeamSpeak 3" ] && [ "${gamename}" != "Mumble" ]; then +if [ "${gamename}" != "TeamSpeak 3" ] && [ "${gamename}" != "Mumble" ] && [ "${gamename}" != "Wolfenstein: Enemy Territory" ]; then if [ ! -f "/bin/ip" ]; then ipcommand="/sbin/ip" else From 947e6114d7a17d0c0ae7a9fa6a6f3226b3987610 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 21:06:38 +0100 Subject: [PATCH 044/246] Revert "ET now bypasses IP check" This reverts commit 44f3a7018c1889cee6b36e95e0aa795c55756187. --- lgsm/functions/check_ip.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_ip.sh b/lgsm/functions/check_ip.sh index 99cf07503..1a64db6bd 100644 --- a/lgsm/functions/check_ip.sh +++ b/lgsm/functions/check_ip.sh @@ -8,7 +8,7 @@ local commandname="CHECK" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -if [ "${gamename}" != "TeamSpeak 3" ] && [ "${gamename}" != "Mumble" ] && [ "${gamename}" != "Wolfenstein: Enemy Territory" ]; then +if [ "${gamename}" != "TeamSpeak 3" ] && [ "${gamename}" != "Mumble" ]; then if [ ! -f "/bin/ip" ]; then ipcommand="/sbin/ip" else From 054ec4747dcaf3301c9a83d5295e60e24d15f548 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 21:12:49 +0100 Subject: [PATCH 045/246] added ip= --- WolfensteinEnemyTerritory/wetserver | 1 + 1 file changed, 1 insertion(+) diff --git a/WolfensteinEnemyTerritory/wetserver b/WolfensteinEnemyTerritory/wetserver index 23789b26e..bfe6d5aaa 100644 --- a/WolfensteinEnemyTerritory/wetserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -27,6 +27,7 @@ pushbulletalert="off" pushbullettoken="accesstoken" # Start Variables +ip="0.0.0.0" fn_parms(){ parms="+set net_strict 1 +set fs_homepath ${filesdir} +exec ${servercfgfullpath}" From e79e40ecf99a1a94676b4b7b9b033cd9e34ef696 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 21:12:59 +0100 Subject: [PATCH 046/246] added port for ET --- lgsm/functions/info_config.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 923f48b36..292476789 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -189,11 +189,14 @@ fn_info_config_wolfensteinenemyterritory(){ servername="${unavailable}" serverpassword="${unavailable}" slots="${zero}" + port="27960" else + port=$(grep "net_port" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') rconpassword=$(grep "zmq_rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set zmq_rcon_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//g' -e '/^\//d' | xargs -0) servername=$(grep "sv_hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname//g' | tr -d '=\";,:' | xargs -0) serverpassword=$(grep "g_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set g_password//g' | tr -d '=\";,:' | xargs -0) - slots=$(grep "sv_maxclients" "${servercfgfullpath}" | tr -cd '[:digit:]') + slots=$(grep "sv_maxclients" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') + # Not Set rconpassword=${rconpassword:-"NOT SET"} From ce4934da06fbd31b9395770de5bb46db6fdc4ce0 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 21:14:59 +0100 Subject: [PATCH 047/246] fixed port for et --- lgsm/functions/info_config.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 292476789..6647287b5 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -189,7 +189,7 @@ fn_info_config_wolfensteinenemyterritory(){ servername="${unavailable}" serverpassword="${unavailable}" slots="${zero}" - port="27960" + port="${zero}" else port=$(grep "net_port" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') rconpassword=$(grep "zmq_rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set zmq_rcon_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//g' -e '/^\//d' | xargs -0) @@ -203,6 +203,7 @@ fn_info_config_wolfensteinenemyterritory(){ servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} slots=${slots:-"0"} + port=${port:-"27960"} ipconfigcheck=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | xargs -0) if [ -n "${ipconfigcheck}" ]; then ip="${ipconfigcheck}" From 5e4543347491a843f66edb4eebae79aabb94ee2a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 21:18:11 +0100 Subject: [PATCH 048/246] changed to quake live --- lgsm/functions/info_parms.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/info_parms.sh b/lgsm/functions/info_parms.sh index 007b44fa8..7be827c7b 100644 --- a/lgsm/functions/info_parms.sh +++ b/lgsm/functions/info_parms.sh @@ -15,7 +15,7 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" unavailable="${red}UNAVAILABLE${default}" zero="${red}0${default}" -fn_info_config_idtech3(){ +fn_info_config_quakelive(){ # Not Set port=${port:-"NOT SET"} rconport=${rconport:-"0"} @@ -128,8 +128,8 @@ elif [ "${engine}" == "dontstarve" ]; then elif [ "${engine}" == "projectzomboid" ]; then fn_info_config_projectzomboid # Quake Live -elif [ "${engine}" == "idtech3" ]; then - fn_info_config_idtech3 +elif [ "${gamename}" == "Quake Live" ]; then + fn_info_config_quakelive # ARMA 3 elif [ "${engine}" == "realvirtuality" ]; then fn_info_config_realvirtuality From 541f502da5dc7531fb54694f09c1cf60cb9b4be6 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 21:29:20 +0100 Subject: [PATCH 049/246] remove warning for now --- lgsm/functions/command_details.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index b7a25b2d7..60f244407 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -402,10 +402,6 @@ fn_details_quakelive(){ fn_details_wolfensteinenemyterritory(){ echo -e "netstat -atunp | grep etded" echo -e "" - if [ -z "${port}" ]||[ -z "${rconport}" ]||[ -z "${statsport}" ]; then - echo -e "${red}ERROR!${default} Missing/commented ports in ${servercfg}." - echo -e "" - fi { echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" echo -e "> Game\tINBOUND\t${port}\tudp" From 66c9b22d1747ab90fd29a81b17fe4275700ac073 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 21:35:12 +0100 Subject: [PATCH 050/246] updated glibc info for ET --- lgsm/functions/info_glibc.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index 207d96ed3..8da6c185b 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -101,12 +101,13 @@ elif [ "${gamename}" == "TeamSpeak 3" ]; then elif [ "${gamename}" == "Mumble" ]; then glibcrequired="NOT REQUIRED" glibcfix="no" -elif [ "${engine}" == "idtech3" ]; then - glibcrequired="2.0" - glibcfix="no" + elif [ "${engine}" == "refractor" ]; then glibcrequired="2.0" glibcfix="no" +elif [ "${engine}" == "Wolfenstein: Enemy Territory" ]; then + glibcrequired="2.2.4" + glibcfix="no" else glibcrequired="UNKNOWN" glibcfix="no" From e954510bab940c241b8a4964754f2b537e4022ce Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 21:37:18 +0100 Subject: [PATCH 051/246] gamename --- lgsm/functions/info_glibc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index 8da6c185b..655402584 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -105,7 +105,7 @@ elif [ "${gamename}" == "Mumble" ]; then elif [ "${engine}" == "refractor" ]; then glibcrequired="2.0" glibcfix="no" -elif [ "${engine}" == "Wolfenstein: Enemy Territory" ]; then +elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then glibcrequired="2.2.4" glibcfix="no" else From 7ae68ce4e29e2020c5c660a1da438ff816512b14 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 21:56:42 +0100 Subject: [PATCH 052/246] Updated ET info --- lgsm/functions/info_config.sh | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 6647287b5..8d2228c10 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -191,11 +191,11 @@ fn_info_config_wolfensteinenemyterritory(){ slots="${zero}" port="${zero}" else - port=$(grep "net_port" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') - rconpassword=$(grep "zmq_rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set zmq_rcon_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//g' -e '/^\//d' | xargs -0) - servername=$(grep "sv_hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname//g' | tr -d '=\";,:' | xargs -0) - serverpassword=$(grep "g_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set g_password//g' | tr -d '=\";,:' | xargs -0) - slots=$(grep "sv_maxclients" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') + port=$(grep "set net_port" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') + rconpassword=$(grep "set zmq_rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set zmq_rcon_password //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//g' -e '/^\//d' | xargs -0) + servername=$(grep "set sv_hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname //g' | tr -d '=\";,:' | xargs -0) + serverpassword=$(grep "set g_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set g_password //g' | tr -d '=\";,:' | xargs -0) + slots=$(grep "set sv_maxclients" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') # Not Set @@ -221,7 +221,7 @@ fn_info_config_realvirtuality(){ servername=$(grep "hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/hostname//g' | tr -d '=\";,:' | xargs -0) adminpassword=$(grep "passwordAdmin" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/passwordAdmin//g' | tr -d '=\";,:' | xargs -0) serverpassword=$(grep "password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/password//g' | tr -d '=\";,:' | xargs -0) - slots=$(grep "maxPlayers" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + slots=$(grep "maxPlayers" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') # Not Set servername=${servername:-"NOT SET"} @@ -242,8 +242,8 @@ fn_info_config_seriousengine35(){ servername=$(grep "prj_strMultiplayerSessionName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/prj_strMultiplayerSessionName//g' | tr -d '=\";,:' | xargs -0) rconpassword=$(grep "rcts_strAdminPassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/rcts_strAdminPassword//g' | tr -d '=\";,:' | xargs -0) gamemode=$(grep "gam_idGameMode" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/gam_idGameMode//g' | tr -d '=\";,:' | xargs -0) - slots=$(grep "gam_ctMaxPlayers" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') - port=$(grep "prj_uwPort" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + slots=$(grep "gam_ctMaxPlayers" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') + port=$(grep "prj_uwPort" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') # Not Set servername=${servername:-"NOT SET"} @@ -376,8 +376,8 @@ fn_info_config_terraria(){ else servername=$(grep "worldname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/worldname//g' | tr -d '=\";,:' | xargs -0) port=$(grep "port" "${servercfgfullpath}" | tr -cd '[:digit:]') - gameworld=$(grep "world=" "${servercfgfullpath}" | grep -v "#" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/world=//g' | tr -d '=\";,:' | xargs -0) - slots=$(grep "maxplayers" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + gameworld=$(grep "world=" "${servercfgfullpath}" | grep -v "//" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/world=//g' | tr -d '=\";,:' | xargs -0) + slots=$(grep "maxplayers" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') # Not Set servername=${servername:-"NOT SET"} From 374e0461d76154124c97e8c36cc30f7f6bbca71b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 22:16:49 +0100 Subject: [PATCH 053/246] added W:ET --- lgsm/functions/core_getopt.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index d56e87c88..e23ad3111 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -80,7 +80,7 @@ case "${getopt}" in esac } -fn_getopt_bf1942(){ +fn_getopt_generic_no_update(){ case "${getopt}" in st|start) command_start.sh;; @@ -619,8 +619,8 @@ case "${getopt}" in if [ "${gamename}" == "Mumble" ]; then fn_getopt_mumble -elif [ "${gamename}" == "Battlefield: 1942" ]; then - fn_getopt_bf1942 +elif [ "${gamename}" == "Battlefield: 1942" ]|| [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then + fn_getopt_generic_no_update elif [ "${engine}" == "lwjgl2" ]; then fn_getopt_minecraft elif [ "${gamename}" == "TeamSpeak 3" ]; then From 9d81a3308b67b11d4999980c85928c15596be55b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 22:16:59 +0100 Subject: [PATCH 054/246] corrected servercfg exec --- WolfensteinEnemyTerritory/wetserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WolfensteinEnemyTerritory/wetserver b/WolfensteinEnemyTerritory/wetserver index bfe6d5aaa..90fc44913 100644 --- a/WolfensteinEnemyTerritory/wetserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -30,7 +30,7 @@ pushbullettoken="accesstoken" ip="0.0.0.0" fn_parms(){ - parms="+set net_strict 1 +set fs_homepath ${filesdir} +exec ${servercfgfullpath}" + parms="+set net_strict 1 +set fs_homepath ${filesdir} +exec ${servercfg}" } #### Advanced Variables #### From abd0bc7aae0af7a4a1c8cfe1d9ff0943417a5976 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 22:28:56 +0100 Subject: [PATCH 055/246] corrected idtech3 and quake live --- lgsm/functions/gsquery.py | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/lgsm/functions/gsquery.py b/lgsm/functions/gsquery.py index fcac90438..e2e930e94 100644 --- a/lgsm/functions/gsquery.py +++ b/lgsm/functions/gsquery.py @@ -17,27 +17,30 @@ class GameServer: self.server_response_timeout = 5 self.default_buffer_length = 1024 # - if self.option.engine == 'source': - self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' + if self.option.engine == 'avalanche': + self.query_prompt_string = b'\xFE\xFD\x09\x10\x20\x30\x40' + elif self.option.engine == 'goldsource': self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' - elif self.option.engine == 'spark': - self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' + elif self.option.engine == 'idtech3': + self.query_prompt_string = b'\xff\xff\xff\xffgetstatus' + elif self.option.engine == 'quakelive': + self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' elif self.option.engine == 'realvirtuality': - self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' + self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' elif self.option.engine == 'refractor': + self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' + elif self.option.engine == 'source': + self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' + elif self.option.engine == 'spark': self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' elif self.option.engine == 'unity3d': self.query_prompt_string = '\xFF\xFF\xFF\xFFTSource Engine Query\0' - elif self.option.engine == 'idtech3': - self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' elif self.option.engine == 'unreal': self.query_prompt_string = b'\x5C\x69\x6E\x66\x6F\x5C' elif self.option.engine == 'unreal2': self.query_prompt_string = b'\x79\x00\x00\x00\x00' - elif self.option.engine == 'avalanche': - self.query_prompt_string = b'\xFE\xFD\x09\x10\x20\x30\x40' - self.connected = False + self.connected = False self.response = None self.sanity_checks() @@ -105,7 +108,7 @@ if __name__ == '__main__': action = 'store', dest = 'engine', default = False, - help = 'Engine type: avalanche, goldsource, idtech3, realvirtuality, refractor, spark, source, unity3d, unreal, unreal2.' + help = 'Engine type: avalanche, goldsource, idtech3, realvirtuality, quakelive, refractor, spark, source, unity3d, unreal, unreal2.' ) parser.add_option( '-v', '--verbose', From fda09fb22e22466362d2c35ae0a79d9aa518802a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 22:34:09 +0100 Subject: [PATCH 056/246] changed Quake Live engine to idtech3_ql Quake live uses modified version of idtech3 that has config and query differences. --- QuakeLive/qlserver | 2 +- lgsm/functions/command_details.sh | 2 +- lgsm/functions/monitor_gsquery.sh | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/QuakeLive/qlserver b/QuakeLive/qlserver index f1283d2a0..accf6aadf 100755 --- a/QuakeLive/qlserver +++ b/QuakeLive/qlserver @@ -67,7 +67,7 @@ branch="" # Server Details servicename="ql-server" gamename="Quake Live" -engine="idtech3" +engine="idtech3_ql" # Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 60f244407..539b57c48 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -290,7 +290,7 @@ fn_details_ports(){ parmslocation="${red}UNKNOWN${default}" # engines that require editing in the config file - local ports_edit_array=( "avalanche" "dontstarve" "idtech3" "lwjgl2" "projectzomboid" "refractor" "realvirtuality" "seriousengine35" "teeworlds" "terraria" "unreal" "unreal2" "TeamSpeak 3" "Mumble" "7 Days To Die" ) + local ports_edit_array=( "avalanche" "dontstarve" "idtech3" "lwjgl2" "projectzomboid" "idtech3_ql" "refractor" "realvirtuality" "seriousengine35" "teeworlds" "terraria" "unreal" "unreal2" "TeamSpeak 3" "Mumble" "7 Days To Die" ) for port_edit in "${ports_edit_array[@]}" do if [ "${engine}" == "${port_edit}" ]||[ "${gamename}" == "${port_edit}" ]; then diff --git a/lgsm/functions/monitor_gsquery.sh b/lgsm/functions/monitor_gsquery.sh index 02ce17ab4..2c8b2902b 100644 --- a/lgsm/functions/monitor_gsquery.sh +++ b/lgsm/functions/monitor_gsquery.sh @@ -29,6 +29,8 @@ if [ "${gsquery}" == "yes" ]; then port=$((port + 1)) elif [ "${engine}" == "spark" ]; then port=$((port + 1)) + elif [ "${engine}" == "idtech3_ql" ]; then + engine="quakelive" fi if [ -n "${queryport}" ]; then From ac0d4392aa674e6a8493e62f0cd2b3e9739e4e79 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 22:35:48 +0100 Subject: [PATCH 057/246] forces Quake live engine to idtech3_ql --- lgsm/functions/core_functions.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index 388846276..987ffcde9 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -12,6 +12,8 @@ elif [ "${gamename}" == "Counter Strike: Global Offensive" ]; then gamename="Counter-Strike: Global Offensive" elif [ "${gamename}" == "Counter Strike: Source" ]; then gamename="Counter-Strike: Source" +elif [ "${gamename}" == "Quake Live" ]; then + engine="idtech3_ql" fi if [ "${emailnotification}" == "on" ]; then From 5abee168b35a8faf2f69c83d2cf946c2e6f4f7bd Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 14 Oct 2016 22:37:47 +0100 Subject: [PATCH 058/246] added W:ET and Quake Live to gsquery --- lgsm/functions/command_monitor.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_monitor.sh b/lgsm/functions/command_monitor.sh index 4052a17db..33b86e55d 100644 --- a/lgsm/functions/command_monitor.sh +++ b/lgsm/functions/command_monitor.sh @@ -79,7 +79,7 @@ fn_monitor_tmux(){ fn_print_ok_eol_nl fn_script_log_pass "Checking session: OK" # runs gsquery check on game with specific engines. - local allowed_engines_array=( avalanche goldsource refractor realvirtuality source spark unity3d unreal unreal2 ) + local allowed_engines_array=( avalanche goldsource idtech3 idtech3_ql refractor realvirtuality source spark unity3d unreal unreal2 ) for allowed_engine in "${allowed_engines_array[@]}" do if [ "${allowed_engine}" == "${engine}" ]; then From 9b0fb1fea190000dcd4dfdb694f599d539735ff9 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 15 Oct 2016 11:19:12 +0100 Subject: [PATCH 059/246] updated md5sum for UT3 --- 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 3bd782e38..e2778ae64 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="http://files.gameservermanagers.com/UnrealTournament2004/ut2004-server-3339-ultimate-linux.tar.bz2"; filedir="${tmpdir}"; filename="ut2004-server-3339-ultimate-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="67c5e2cd9c2a4b04f163962ee41eff54" elif [ "${gamename}" == "Unreal Tournament 3" ]; then - fileurl="http://files.gameservermanagers.com/UnrealTournament3/UT3-linux-server-2.1.tar.bz2"; filedir="${tmpdir}"; filename="UT3-linux-server-2.1.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="6c22fcef9e2e03ed154df97569af540c" + fileurl="http://files.gameservermanagers.com/UnrealTournament3/UT3-linux-server-2.1.tar.bz2"; filedir="${tmpdir}"; filename="UT3-linux-server-2.1.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="2527437b46f1b47f20228d27d72395a6" elif [ "${gamename}" == "Battlefield: 1942" ]; then fileurl="http://files.gameservermanagers.com/BattleField1942/bf1942_lnxded-1.61-hacked-to-1.612.full.tar.bz2"; filedir="${tmpdir}"; filename="bf1942_lnxded-1.61-hacked-to-1.612.full.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="a86a5d3cd64ca59abcc9bb9f777c2e5d" elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then From 8f282ace406318fd40b4d0434e03b4e44e163fd7 Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Sat, 15 Oct 2016 13:23:31 +0200 Subject: [PATCH 060/246] Corrected spelling of "Teeworlds" --- 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 ad7278e93..3f8574c44 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -324,7 +324,7 @@ elif [ "${gamename}" == "TeamSpeak 3" ]; then fn_fetch_default_config fn_default_config_remote elif [ "${gamename}" == "Teeworlds" ]; then - gamedirname="TeeWorlds" + gamedirname="Teeworlds" array_configs+=( server.cfg ctf.cfg dm.cfg duel.cfg tdm.cfg ) fn_fetch_default_config fn_default_config_remote From e4ac3eadcc4ae2303eb104300ed90d044c89bf2f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 15 Oct 2016 12:38:07 +0100 Subject: [PATCH 061/246] Config update --- UnrealTournament3/ut3server | 19 +- lgsm/functions/install_config.sh.old.sh | 465 ------------------------ 2 files changed, 10 insertions(+), 474 deletions(-) delete mode 100644 lgsm/functions/install_config.sh.old.sh diff --git a/UnrealTournament3/ut3server b/UnrealTournament3/ut3server index 6af1c802e..b9e8f4f16 100644 --- a/UnrealTournament3/ut3server +++ b/UnrealTournament3/ut3server @@ -46,6 +46,14 @@ fn_parms(){ parms="server ${defaultmap}?Game=${game}?bIsDedicated=${isdedicated}?bIsLanMatch=${islanmatch}?bUsesStats=${usesstats}?bShouldAdvertise=${shouldadvertise}?PureServer=${pureserver}?bAllowJoinInProgress=${allowjoininprogress}?MaxPlayers=${maxplayers}?Mutator=${mutators} -port=${port} -queryport=${queryport} -multihome=${ip} -nohomedir -unattended -log=${gamelog}" } +#### Advanced Variables #### + +# Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" # Server Details servicename="ut3-server" gamename="Unreal Tournament 3" @@ -63,7 +71,8 @@ filesdir="${rootdir}/serverfiles" systemdir="${filesdir}" executabledir="${systemdir}/Binaries" executable="./ut3" -servercfg="UTGame.ini" +servercfg="${servicename}.ini" +servercfgdefault="UTGame.ini" servercfgdir="${systemdir}/UTGame/Config" servercfgfullpath="${servercfgdir}/${servercfg}" backupdir="${rootdir}/backups" @@ -84,13 +93,6 @@ gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%d-%m-%Y-%H-%M-%S').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" -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" - ##### Script ##### # Do not edit @@ -154,4 +156,3 @@ core_functions.sh getopt=$1 core_getopt.sh - diff --git a/lgsm/functions/install_config.sh.old.sh b/lgsm/functions/install_config.sh.old.sh deleted file mode 100644 index 5e4b2b999..000000000 --- a/lgsm/functions/install_config.sh.old.sh +++ /dev/null @@ -1,465 +0,0 @@ -#!/bin/bash -# LGSM install_config.sh function -# Author: Daniel Gibbs -# Website: https://gameservermanagers.com -# Description: Creates default server configs. - -local commandname="INSTALL" -local commandaction="Install" -local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" - -fn_defaultconfig(){ - echo "creating ${servercfg} config file." - fn_script_log_info "creating ${servercfg} config file." - cp -v "${servercfgdefault}" "${servercfgfullpath}" - sleep 1 -} - -fn_userinputconfig(){ - # 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" "${servercfgfullpath}" - sleep 1 - echo "changing rconpassword." - fn_script_log_info "changing rconpassword." - sed -i "s/\"\"/\"${rconpass}\"/g" "${servercfgfullpath}" - sleep 1 -} - -fn_arma3config(){ - fn_defaultconfig - echo "creating ${networkcfg} config file." - fn_script_log_info "creating ${networkcfg} config file." - cp -v "${networkcfgdefault}" "${networkcfgfullpath}" - sleep 1 - echo "" -} - -fn_goldsourceconfig(){ - fn_defaultconfig - - # server.cfg redirects to ${servercfg} for added security - echo "creating server.cfg." - fn_script_log_info "creating server.cfg." - touch "server.cfg" - sleep 1 - echo "creating redirect." - fn_script_log_info "creating redirect." - echo "server.cfg > ${servercfg}." - echo "exec ${servercfg}" > "server.cfg" - sleep 1 - - # creating other files required - echo "creating listip.cfg." - fn_script_log_info "creating listip.cfg." - touch "${systemdir}/listip.cfg" - sleep 1 - echo "creating banned.cfg." - fn_script_log_info "creating banned.cfg." - touch "${systemdir}/banned.cfg" - sleep 1 - - fn_userinputconfig - echo "" -} - -fn_serious3config(){ - fn_defaultconfig - echo "" - echo "To edit ${gamename} server config use SS3 Server GUI 3 tool" - echo "http://mrag.nl/sgui3/" - fn_script_log_info "To edit ${gamename} server config use SS3 Server GUI 3 tool" - fn_script_log_info "http://mrag.nl/sgui3/" - sleep 1 - echo "" -} - -fn_sourceconfig(){ - fn_defaultconfig - # server.cfg redirects to ${servercfg} for added security - echo "creating server.cfg." - fn_script_log_info "creating server.cfg." - touch "server.cfg" - sleep 1 - echo "creating redirect." - fn_script_log_info "creating redirect." - echo "server.cfg > ${servercfg}." - echo "exec ${servercfg}" > "server.cfg" - sleep 1 - fn_userinputconfig - echo "" -} - -fn_teeworldsconfig(){ - fn_defaultconfig - - echo "adding logfile location to config." - fn_script_log_info "adding logfile location to config." - sed -i "s@\"\"@\"${gamelog}\"@g" "${servercfgfullpath}" - sleep 1 - echo "removing password holder." - fn_script_log_info "removing password holder." - sed -i "s///" "${servercfgfullpath}" - sleep 1 - - fn_userinputconfig - echo "" -} - -fn_ut99config(){ - echo "creating ${servercfg} config file." - fn_script_log_info "creating ${servercfg} config file." - echo "${servercfgdefault} > ${servercfgfullpath}" - tr -d '\r' < "${servercfgdefault}" > "${servercfgfullpath}" - sleep 1 - echo "" - echo "Configuring ${gamename} Server" - echo "=================================" - sleep 1 - echo "enabling WebAdmin." - fn_script_log_info "enabling WebAdmin." - sed -i 's/bEnabled=False/bEnabled=True/g' "${servercfgfullpath}" - sleep 1 - echo "setting WebAdmin port to 8076." - fn_script_log_info "setting WebAdmin port to 8076." - sed -i '467i\ListenPort=8076' "${servercfgfullpath}" - sleep 1 - echo "" -} - -fn_unreal2config(){ - fn_defaultconfig - echo "" - echo "Configuring ${gamename} Server" - echo "=================================" - sleep 1 - echo "setting WebAdmin username and password." - fn_script_log_info "setting WebAdmin username and password." - sed -i 's/AdminName=/AdminName=admin/g' "${servercfgfullpath}" - sed -i 's/AdminPassword=/AdminPassword=admin/g' "${servercfgfullpath}" - sleep 1 - echo "enabling WebAdmin." - fn_script_log_info "enabling WebAdmin." - sed -i 's/bEnabled=False/bEnabled=True/g' "${servercfgfullpath}" - if [ "${gamename}" == "Unreal Tournament 2004" ]; then - sleep 1 - echo "setting WebAdmin port to 8075." - fn_script_log_info "setting WebAdmin port to 8075." - sed -i 's/ListenPort=80/ListenPort=8075/g' "${servercfgfullpath}" - fi - sleep 1 - echo "" -} - -fn_ut3config(){ - echo "" - echo "Configuring ${gamename} Server" - echo "=================================" - sleep 1 - echo "setting ServerName to 'LinuxGSM UT3 Server'." - fn_script_log_info "setting ServerName to 'LinuxGSM UT3 Server'." - sleep 1 - sed -i 's/ServerName=/ServerName=LinuxGSM UT3 Server/g' "${servercfgdir}/DefaultGame.ini" - echo "setting WebAdmin password to admin." - fn_script_log_info "setting WebAdmin password to admin." - echo '[Engine.AccessControl]' >> "${servercfgdir}/DefaultGame.ini" - echo 'AdminPassword=admin' >> "${servercfgdir}/DefaultGame.ini" - sleep 1 - echo "enabling WebAdmin." - fn_script_log_info "enabling WebAdmin." - sed -i 's/bEnabled=false/bEnabled=True/g' "${servercfgdir}/DefaultWeb.ini" - if [ "${gamename}" == "Unreal Tournament 3" ]; then - sleep 1 - echo "setting WebAdmin port to 8081." - fn_script_log_info "setting WebAdmin port to 8081." - sed -i 's/ListenPort=80/ListenPort=8081/g' "${servercfgdir}/DefaultWeb.ini" - fi - sleep 1 - 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 "" -if [ "${gamename}" != "Hurtworld" ]; then -echo "Creating Configs" -echo "=================================" -sleep 1 - mkdir -pv "${servercfgdir}" - cd "${servercfgdir}" - githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}" -fi - - - elif [ "${gamename}" == "GoldenEye: Source" ]; then - fileurl="http://files.gameservermanagers.com/GoldenEyeSource/GoldenEye_Source_v5.0.1_full_server_linux.tar.bz2"; filedir="${tmpdir}"; filename="GoldenEye_Source_v5.0.1_server_full_Linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="ea227a150300abe346e757380325f84c" - fi - fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" - -if [ "${gamename}" == "7 Days To Die" ]; then - fn_defaultconfig -elif [ "${gamename}" == "ARK: Survivial Evolved" ]; then - wget -N /dev/null ${githuburl}/ARKSurvivalEvolved/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - echo -e "downloading lgsm-default.ini...\c" - fn_defaultconfig -elif [ "${gamename}" == "ARMA 3" ]; then - echo -e "downloading lgsm-default.server.cfg...\c" - wget -N /dev/null ${githuburl}/Arma3/cfg/lgsm-default.server.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - echo -e "downloading lgsm-default.network.cfg...\c" - wget -N /dev/null ${githuburl}/Arma3/cfg/lgsm-default.network.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_arma3config -elif [ "${gamename}" == "BrainBread 2" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/BrainBread2/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig -elif [ "${gamename}" == "Black Mesa: Deathmatch" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/BlackMesa/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig -elif [ "${gamename}" == "Blade Symphony" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/BladeSymphony/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_goldsourceconfig -elif [ "${gamename}" == "Codename CURE" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/CodenameCURE/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig -elif [ "${gamename}" == "Counter-Strike 1.6" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/CounterStrike/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_goldsourceconfig -elif [ "${gamename}" == "Counter-Strike: Condition Zero" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/CounterStrikeConditionZero/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_goldsourceconfig -elif [ "${gamename}" == "Counter-Strike: Global Offensive" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/CounterStrikeGlobalOffensive/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig -elif [ "${gamename}" == "Counter-Strike: Source" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/CounterStrikeSource/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig -elif [ "${gamename}" == "Day of Defeat" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/DayOfDefeat/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_goldsourceconfig -elif [ "${gamename}" == "Day of Defeat: Source" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/DayOfDefeatSource/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig -elif [ "${gamename}" == "Day of Infamy" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/DayOfInfamy/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig -elif [ "${gamename}" == "Don't Starve Together" ]; then - echo -e "downloading lgsm-default.ini...\c" - wget -N /dev/null ${githuburl}/DontStarveTogether/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_defaultconfig -elif [ "${gamename}" == "Double Action: Boogaloo" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/DoubleActionBoogaloo/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig -elif [ "${gamename}" == "Empires Mod" ]; then - fn_defaultconfig -elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/EnemyTerritory/cfg/lgsm-default.cfg 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 - sleep 1 - fn_sourceconfig -elif [ "${gamename}" == "Garry's Mod" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/GarrysMod/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig -elif [ "${gamename}" == "GoldenEye: Source" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/GoldenEyeSource/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig -elif [ "${gamename}" == "Half Life 2: Deathmatch" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/HalfLife2Deathmatch/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig -elif [ "${gamename}" == "Half Life: Deathmatch" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/HalfLifeDeathmatch/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_goldsourceconfig -elif [ "${gamename}" == "Insurgency" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/Insurgency/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig -elif [ "${gamename}" == "Just Cause 2" ]; then - fn_defaultconfig -elif [ "${gamename}" == "Killing Floor" ]; then - fn_unreal2config -elif [ "${gamename}" == "Left 4 Dead" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/Left4Dead/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig -elif [ "${gamename}" == "Left 4 Dead 2" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/Left4Dead2/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig -elif [ "${gamename}" == "Minecraft" ]; then - echo -e "downloading lgsm-default.ini...\c" - wget -N /dev/null ${githuburl}/Minecraft/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_defaultconfig -elif [ "${gamename}" == "No More Room in Hell" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/NoMoreRoomInHell/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig -elif [ "${gamename}" == "Natural Selection 2" ]; then - echo -e "no configs required." - sleep 1 - echo "" -elif [ "${gamename}" == "Pirates, Vikings, and Knights II" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/PiratesVikingandKnightsII/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig -elif [ "${gamename}" == "Project Zomboid" ]; then - echo -e "downloading lgsm-default.ini...\c" - wget -N /dev/null ${githuburl}/ProjectZomboid/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_defaultconfig -elif [ "${gamename}" == "Quake Live" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/QuakeLive/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_defaultconfig - fn_userinputconfig -elif [ "${gamename}" == "Red Orchestra: Ostfront 41-45" ]; then - fn_unreal2config -elif [ "${gamename}" == "Serious Sam 3: BFE" ]; then - echo -e "downloading lgsm-default.ini...\c" - wget -N /dev/null ${githuburl}/SeriousSam3BFE/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_serious3config -elif [ "${gamename}" == "Rust" ]; then - echo -e "downloading server.cfg...\c" - wget -N /dev/null ${githuburl}/Rust/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_defaultconfig -elif [ "${gamename}" == "Sven Co-op" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/SvenCoop/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_goldsourceconfig -elif [ "${gamename}" == "Starbound" ]; then - echo -e "downloading lgsm-default.config...\c" - wget -N /dev/null ${githuburl}/Starbound/cfg/lgsm-default.config 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_defaultconfig - fn_userinputconfig -elif [ "${gamename}" == "TeamSpeak 3" ]; then - echo -e "downloading lgsm-default.ini...\c" - wget -N /dev/null ${githuburl}/TeamSpeak3/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_defaultconfig -elif [ "${gamename}" == "Team Fortress 2" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/TeamFortress2/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_sourceconfig -elif [ "${gamename}" == "Team Fortress Classic" ]; then - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/TeamFortressClassic/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_goldsourceconfig -elif [ "${gamename}" == "Teeworlds" ]; then - echo -e "downloading ctf.cfg...\c" - wget -N /dev/null ${githuburl}/Teeworlds/cfg/ctf.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - echo -e "downloading dm.cfg...\c" - wget -N /dev/null ${githuburl}/Teeworlds/cfg/dm.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - echo -e "downloading duel.cfg...\c" - wget -N /dev/null ${githuburl}/Teeworlds/cfg/duel.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - echo -e "downloading tdm.cfg...\c" - wget -N /dev/null ${githuburl}/Teeworlds/cfg/tdm.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - echo -e "downloading lgsm-default.cfg...\c" - wget -N /dev/null ${githuburl}/Teeworlds/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_teeworldsconfig -elif [ "${gamename}" == "Terraria" ]; then - echo -e "downloading lgsm-default.txt...\c" - 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 - 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 Game.ini...\c" - wget -N /dev/null ${githuburl}/UnrealTournament/cfg/Game.ini 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_unrealtournament -elif [ "${gamename}" == "Unreal Tournament 3" ]; then - fn_ut3config -elif [ "${gamename}" == "Unreal Tournament 2004" ]; then - fn_unreal2config -elif [ "${gamename}" == "Unreal Tournament 99" ]; then - fn_ut99config -fi From edfb35d64311ba1e4860afeb7b59b440fd63b7a3 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 15 Oct 2016 12:43:24 +0100 Subject: [PATCH 062/246] added UT3 --- lgsm/functions/install_config.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 3f8574c44..66b38c191 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -344,7 +344,10 @@ elif [ "${gamename}" == "Unreal Tournament 2004" ]; then fn_fetch_default_config fn_default_config_remote elif [ "${gamename}" == "Unreal Tournament 3" ]; then - : + gamedirname="UnrealTournament3" + array_configs+=( UTGame.ini ) + fn_fetch_default_config + fn_default_config_remote elif [ "${gamename}" == "Unreal Tournament 99" ]; then gamedirname="UnrealTournament99" array_configs+=( Default.ini ) From 277c6c988e6429e29c7b19d9ae659866c2b2051a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 15 Oct 2016 12:43:36 +0100 Subject: [PATCH 063/246] space --- UnrealTournament3/ut3server | 1 + 1 file changed, 1 insertion(+) diff --git a/UnrealTournament3/ut3server b/UnrealTournament3/ut3server index b9e8f4f16..780da1fb8 100644 --- a/UnrealTournament3/ut3server +++ b/UnrealTournament3/ut3server @@ -54,6 +54,7 @@ parms="server ${defaultmap}?Game=${game}?bIsDedicated=${isdedicated}?bIsLanMatch githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" + # Server Details servicename="ut3-server" gamename="Unreal Tournament 3" From 156a6d8e6099139e1a37c9e8ad2e91c1a8873b14 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 15 Oct 2016 13:17:43 +0100 Subject: [PATCH 064/246] added ut3 --- lgsm/functions/command_details.sh | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 539b57c48..2ae4632f0 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -290,7 +290,7 @@ fn_details_ports(){ parmslocation="${red}UNKNOWN${default}" # engines that require editing in the config file - local ports_edit_array=( "avalanche" "dontstarve" "idtech3" "lwjgl2" "projectzomboid" "idtech3_ql" "refractor" "realvirtuality" "seriousengine35" "teeworlds" "terraria" "unreal" "unreal2" "TeamSpeak 3" "Mumble" "7 Days To Die" ) + local ports_edit_array=( "avalanche" "dontstarve" "idtech3" "lwjgl2" "projectzomboid" "idtech3_ql" "refractor" "realvirtuality" "seriousengine35" "teeworlds" "terraria" "unreal" "unreal2" "unreal3" "TeamSpeak 3" "Mumble" "7 Days To Die" ) for port_edit in "${ports_edit_array[@]}" do if [ "${engine}" == "${port_edit}" ]||[ "${gamename}" == "${port_edit}" ]; then @@ -379,7 +379,7 @@ fn_details_refractor(){ echo -e "" { echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" - echo -e "> Game\tINBOUND\t${port}\tudp" + echo -e "> Game/Query\tINBOUND\t${port}\tudp" echo -e "> Steam: Query\tINBOUND\t${queryport}\tudp" } | column -s $'\t' -t } @@ -404,7 +404,7 @@ fn_details_wolfensteinenemyterritory(){ echo -e "" { echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" - echo -e "> Game\tINBOUND\t${port}\tudp" + echo -e "> Game/Query\tINBOUND\t${port}\tudp" } | column -s $'\t' -t } @@ -587,6 +587,15 @@ fn_details_unreal(){ } | column -s $'\t' -t } +fn_details_ut3(){ + echo -e "netstat -atunp | grep ut3-bin" + echo -e "" + { + echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" + echo -e "> Game/Query\tINBOUND\t${port}\ttcp/udp" + } | column -s $'\t' -t +} + fn_details_ark(){ echo -e "netstat -atunp | grep ShooterGame" echo -e "" @@ -646,6 +655,8 @@ fn_display_details() { fn_details_terraria elif [ "${engine}" == "unreal" ]||[ "${engine}" == "unreal2" ]; then fn_details_unreal + elif [ "${engine}" == "unreal3" ]; then + fn_details_ut3 elif [ "${gamename}" == "7 Days To Die" ]; then fn_details_sdtd elif [ "${gamename}" == "ARK: Survivial Evolved" ]; then From 69e85c2cb16b9b95699837520cc6b022b92a4d5f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 15 Oct 2016 13:32:17 +0100 Subject: [PATCH 065/246] removed fn_user_input_config from JC2 --- lgsm/functions/install_config.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 66b38c191..fa6adf9e4 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -223,7 +223,6 @@ elif [ "${gamename}" == "Just Cause 2" ]; then array_configs+=( config.lua ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config elif [ "${gamename}" == "Killing Floor" ]; then gamedirname="KillingFloor" array_configs+=( Default.ini ) From 8fb572567169bfd77bed1ad0af5072e46a692c89 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 15 Oct 2016 14:06:17 +0100 Subject: [PATCH 066/246] Added objdump check --- lgsm/functions/command_dev_detect_glibc.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_dev_detect_glibc.sh b/lgsm/functions/command_dev_detect_glibc.sh index 7c247f888..ce27d4875 100644 --- a/lgsm/functions/command_dev_detect_glibc.sh +++ b/lgsm/functions/command_dev_detect_glibc.sh @@ -9,6 +9,12 @@ echo "=================================" echo "GLIBC Requirements Checker" echo "=================================" +if [ -z "$(command -v objdump)" ]; then + fn_print_failure_nl "objdump is missing" + fn_script_log_fatal "objdump is missing" + core_exit.sh +fi + if [ -z "${filesdir}" ]; then dir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" fi @@ -31,4 +37,4 @@ while IFS= read -r -d $'\0' line; do done echo "" cat "${tmpdir}/detect_glibc.tmp"|sort|uniq|sort -r --version-sort -rm "${tmpdir}/detect_glibc.tmp" \ No newline at end of file +#rm "${tmpdir}/detect_glibc.tmp" \ No newline at end of file From 94de6e85f9b8f3dd8fdbe300ef3c0ca2ae83a6f6 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 15 Oct 2016 14:33:16 +0100 Subject: [PATCH 067/246] Updated servercfgdefault --- 7DaysToDie/sdtdserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index be8388813..07f7d555d 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -74,9 +74,9 @@ systemdir="${filesdir}" executabledir="${filesdir}" executable="./7DaysToDieServer.x86" servercfg="${servicename}.xml" +servercfgdefault="serverconfig.xml" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/serverconfig.xml" backupdir="${rootdir}/backups" # Logging From e4c09f6f8f4a35e1d2b00db5f65bb3628328d4a5 Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Sat, 15 Oct 2016 16:31:57 +0200 Subject: [PATCH 068/246] Cleanup - PEP-8: spaces should be used for indentation - "is" should be used for comparing with "None" - corrected indentation of "self.connected = False" --- lgsm/functions/gsquery.py | 225 +++++++++++++++++++------------------- 1 file changed, 113 insertions(+), 112 deletions(-) diff --git a/lgsm/functions/gsquery.py b/lgsm/functions/gsquery.py index e2e930e94..53df875b1 100644 --- a/lgsm/functions/gsquery.py +++ b/lgsm/functions/gsquery.py @@ -9,122 +9,123 @@ import optparse import socket import sys + class GameServer: - def __init__( self, options, arguments ): - self.option = options - self.argument = arguments - # - self.server_response_timeout = 5 - self.default_buffer_length = 1024 - # - if self.option.engine == 'avalanche': - self.query_prompt_string = b'\xFE\xFD\x09\x10\x20\x30\x40' - - elif self.option.engine == 'goldsource': - self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' - elif self.option.engine == 'idtech3': - self.query_prompt_string = b'\xff\xff\xff\xffgetstatus' - elif self.option.engine == 'quakelive': - self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' - elif self.option.engine == 'realvirtuality': - self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' - elif self.option.engine == 'refractor': - self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' - elif self.option.engine == 'source': - self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' - elif self.option.engine == 'spark': - self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' - elif self.option.engine == 'unity3d': - self.query_prompt_string = '\xFF\xFF\xFF\xFFTSource Engine Query\0' - elif self.option.engine == 'unreal': - self.query_prompt_string = b'\x5C\x69\x6E\x66\x6F\x5C' - elif self.option.engine == 'unreal2': - self.query_prompt_string = b'\x79\x00\x00\x00\x00' - self.connected = False - self.response = None - self.sanity_checks() + def __init__(self, options, arguments): + self.option = options + self.argument = arguments + # + self.server_response_timeout = 5 + self.default_buffer_length = 1024 + # + if self.option.engine == 'avalanche': + self.query_prompt_string = b'\xFE\xFD\x09\x10\x20\x30\x40' + elif self.option.engine == 'goldsource': + self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' + elif self.option.engine == 'idtech3': + self.query_prompt_string = b'\xff\xff\xff\xffgetstatus' + elif self.option.engine == 'quakelive': + self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' + elif self.option.engine == 'realvirtuality': + self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' + elif self.option.engine == 'refractor': + self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' + elif self.option.engine == 'source': + self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' + elif self.option.engine == 'spark': + self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' + elif self.option.engine == 'unity3d': + self.query_prompt_string = '\xFF\xFF\xFF\xFFTSource Engine Query\0' + elif self.option.engine == 'unreal': + self.query_prompt_string = b'\x5C\x69\x6E\x66\x6F\x5C' + elif self.option.engine == 'unreal2': + self.query_prompt_string = b'\x79\x00\x00\x00\x00' + self.connected = False + self.response = None + self.sanity_checks() + + def fatal_error(self, error_message, error_code=1): + sys.stderr.write('ERROR: ' + str(error_message) + '\n') + sys.exit(error_code) - def fatal_error( self, error_message, error_code=1 ): - sys.stderr.write( 'ERROR: ' + str(error_message) + '\n' ) - sys.exit( error_code ) + def exit_success(self, success_message=''): + sys.stdout.write('OK: ' + str(success_message) + '\n') + sys.exit(0) - def exit_success( self, success_message='' ): - sys.stdout.write( 'OK: ' + str(success_message) + '\n' ) - sys.exit( 0 ) + def responding(self): + # Connect. + connection = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) + connection.settimeout(self.server_response_timeout) + try: + self.connected = connection.connect((self.option.address, int(self.option.port))) + except socket.timeout: + self.fatal_error('Request timed out', 1) + except: + self.fatal_error('Unable to connect', 1) + # Send. + connection.send(self.query_prompt_string) + # Receive. + try: + self.response = connection.recv(self.default_buffer_length) + except socket.error: + self.fatal_error('Unable to receive', 2) + connection.close() + # Response. + if self.response is None: + self.fatal_error('No response', 3) + if len(self.response) < 10: + sys.exit('Short response.', 3) + else: + self.exit_success(str(self.response)) - def responding( self ): - # Connect. - connection = socket.socket( socket.AF_INET, socket.SOCK_DGRAM ) - connection.settimeout( self.server_response_timeout ) - try: - self.connected = connection.connect( ( self.option.address, int(self.option.port) ) ) - except socket.timeout: - self.fatal_error( 'Request timed out', 1 ) - except: - self.fatal_error( 'Unable to connect', 1 ) - # Send. - connection.send( self.query_prompt_string ) - # Receive. - try: - self.response = connection.recv( self.default_buffer_length ) - except socket.error: - self.fatal_error( 'Unable to receive', 2 ) - connection.close() - # Response. - if self.response == None: - self.fatal_error( 'No response', 3 ) - if len( self.response ) < 10 : - sys.exit( 'Short response.', 3 ) - else: - self.exit_success( str( self.response ) ) + def sanity_checks(self): + if not self.option.address: + self.fatal_error('No IPv4 address supplied.', 4) + if not self.option.port: + self.fatal_error('No port supplied.', 4) - def sanity_checks( self ): - if not self.option.address: - self.fatal_error( 'No IPv4 address supplied.', 4 ) - if not self.option.port: - self.fatal_error( 'No port supplied.', 4 ) if __name__ == '__main__': - parser = optparse.OptionParser( - usage = 'usage: python %prog [options]', - version = '%prog 0.0.1' - ) - parser.add_option( - '-a', '--address', - action = 'store', - dest = 'address', - default = False, - help = 'The IPv4 address of the server.' - ) - parser.add_option( - '-p', '--port', - action = 'store', - dest = 'port', - default = False, - help = 'The IPv4 port of the server.' - ) - parser.add_option( - '-e', '--engine', - action = 'store', - dest = 'engine', - default = False, - help = 'Engine type: avalanche, goldsource, idtech3, realvirtuality, quakelive, refractor, spark, source, unity3d, unreal, unreal2.' - ) - parser.add_option( - '-v', '--verbose', - action = 'store_true', - dest = 'verbose', - default = False, - help = 'Display verbose output.' - ) - parser.add_option( - '-d', '--debug', - action = 'store_true', - dest = 'debug', - default = False, - help = 'Display debugging output.' - ) - options, arguments = parser.parse_args() - # - server = GameServer( options, arguments ) - server.responding() + parser = optparse.OptionParser( + usage='usage: python %prog [options]', + version='%prog 0.0.1' + ) + parser.add_option( + '-a', '--address', + action='store', + dest='address', + default=False, + help='The IPv4 address of the server.' + ) + parser.add_option( + '-p', '--port', + action='store', + dest='port', + default=False, + help='The IPv4 port of the server.' + ) + parser.add_option( + '-e', '--engine', + action='store', + dest='engine', + default=False, + help='Engine type: avalanche, goldsource, idtech3, realvirtuality, quakelive, refractor, spark, source, unity3d, unreal, unreal2.' + ) + parser.add_option( + '-v', '--verbose', + action='store_true', + dest='verbose', + default=False, + help='Display verbose output.' + ) + parser.add_option( + '-d', '--debug', + action='store_true', + dest='debug', + default=False, + help='Display debugging output.' + ) + options, arguments = parser.parse_args() + # + server = GameServer(options, arguments) + server.responding() From f38f36e40ac11c3bd08c01429f1de9aff11a73e7 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 15 Oct 2016 17:13:02 +0200 Subject: [PATCH 069/246] missing } --- JustCause2/cfg/config.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/JustCause2/cfg/config.lua b/JustCause2/cfg/config.lua index f803a493f..1b17103c4 100644 --- a/JustCause2/cfg/config.lua +++ b/JustCause2/cfg/config.lua @@ -177,3 +177,4 @@ World = -- The default weather severity at world creation. -- Default value: 0 WeatherSeverity = 0 +} From 74d6ea1df72728c6fbd42642afb7be96f5d8b713 Mon Sep 17 00:00:00 2001 From: cedarlug Date: Sat, 15 Oct 2016 11:34:07 -0500 Subject: [PATCH 070/246] `xargs -0` allowed single quotes but kills the whitespace cleansing. replacing with sed. --- lgsm/functions/info_config.sh | 98 +++++++++++++++++------------------ 1 file changed, 49 insertions(+), 49 deletions(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 8d2228c10..952419c73 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -22,8 +22,8 @@ fn_info_config_avalanche(){ port="${zero}" else - servername=$(grep "Name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/Name//g' | tr -d '=\";,:' | xargs -0) - serverpassword=$(grep "Password" "${servercfgfullpath}" | sed -e 's/^ *//g' -e '/^--/d' -e 's/Password//g' | tr -d '=\";,:' | xargs -0) + servername=$(grep "Name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/Name//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + serverpassword=$(grep "Password" "${servercfgfullpath}" | sed -e 's/^ *//g' -e '/^--/d' -e 's/Password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') slots=$(grep "MaxPlayers" "${servercfgfullpath}" | grep -v "\--" | tr -cd '[:digit:]') port=$(grep "BindPort" "${servercfgfullpath}" | grep -v "\--" | tr -cd '[:digit:]') @@ -34,7 +34,7 @@ fn_info_config_avalanche(){ port=${port:-"0"} # check if the ip exists in the config file. Failing this will fall back to the default. - ipconfigcheck=$(grep "BindIP" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/BindIP//g' | tr -d '=\";,:' | xargs -0) + ipconfigcheck=$(grep "BindIP" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/BindIP//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') if [ -n "${ipconfigcheck}" ]; then ip="${ipconfigcheck}" fi @@ -80,10 +80,10 @@ fn_info_config_dontstarve(){ tickrate="${zero}" port="${zero}" else - servername=$(grep "default_server_name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/default_server_name//g' | tr -d '=\";,:' | xargs -0) - serverpassword=$(grep "server_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/server_password//g' | tr -d '=\";,:' | xargs -0) + servername=$(grep "default_server_name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/default_server_name//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + serverpassword=$(grep "server_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/server_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') slots=$(grep "max_players" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') - gamemode=$(grep "game_mode" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/game_mode//g' | tr -d '=\";,:' | xargs -0) + gamemode=$(grep "game_mode" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/game_mode//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') tickrate=$(grep "tick_rate" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') port=$(grep "server_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') @@ -108,13 +108,13 @@ fn_info_config_minecraft(){ gameworld="${unavailable}" else - servername=$(grep "motd" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/motd//g' | tr -d '=\";,:' | xargs -0) - rconpassword=$(grep "rcon.password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/rcon.password//g' | tr -d '=\";,:' | xargs -0) + servername=$(grep "motd" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/motd//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + rconpassword=$(grep "rcon.password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/rcon.password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') rconport=$(grep "rcon.port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') slots=$(grep "max-players" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') port=$(grep "server-port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') gamemode=$(grep "gamemode" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') - gameworld=$(grep "level-name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/level-name//g' | tr -d '=\";,:' | xargs -0) + gameworld=$(grep "level-name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/level-name//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') # Not Set servername=${servername:-"NOT SET"} @@ -126,7 +126,7 @@ fn_info_config_minecraft(){ gameworld=${gameworld:-"NOT SET"} # check if the ip exists in the config file. Failing this will fall back to the default. - ipconfigcheck=$(grep "server-ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/server-ip//g' | tr -d '=\";,:' | xargs -0) + ipconfigcheck=$(grep "server-ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/server-ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') if [ -n "${ipconfigcheck}" ]; then ip="${ipconfigcheck}" fi @@ -142,12 +142,12 @@ fn_info_config_projectzomboid(){ port="${zero}" gameworld="${unavailable}" else - servername=$(grep "PublicName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/PublicName//g' | tr -d '=\";,:' | xargs -0) - serverpassword=$(grep "Password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' | grep "^Password" | sed -e '/^#/d' -e 's/Password//g' | tr -d '=\";,:' | xargs -0) - rconpassword=$(grep "RCONPassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/RCONPassword//g' | tr -d '=\";,:' | xargs -0) + servername=$(grep "PublicName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/PublicName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + serverpassword=$(grep "Password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' | grep "^Password" | sed -e '/^#/d' -e 's/Password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + rconpassword=$(grep "RCONPassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/RCONPassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') slots=$(grep "MaxPlayers" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') port=$(grep "DefaultPort" "${servercfgfullpath}" | tr -cd '[:digit:]') - gameworld=$(grep "Map" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' | grep "^Map" | sed -e '/^#/d' -e 's/Map//g' | tr -d '=\";' | xargs -0) + gameworld=$(grep "Map" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' | grep "^Map" | sed -e '/^#/d' -e 's/Map//g' | tr -d '=\";' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') # Not Set servername=${servername:-"NOT SET"} @@ -166,9 +166,9 @@ fn_info_config_quakelive(){ serverpassword="${unavailable}" slots="${zero}" else - rconpassword=$(grep "zmq_rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set zmq_rcon_password//g' | tr -d '=\";,:' | xargs -0) - servername=$(grep "sv_hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname//g' | tr -d '=\";,:' | xargs -0) - serverpassword=$(grep "g_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set g_password//g' | tr -d '=\";,:' | xargs -0) + rconpassword=$(grep "zmq_rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set zmq_rcon_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + servername=$(grep "sv_hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + serverpassword=$(grep "g_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set g_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') slots=$(grep "sv_maxClients" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') # Not Set @@ -176,7 +176,7 @@ fn_info_config_quakelive(){ servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} slots=${slots:-"0"} - ipconfigcheck=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | xargs -0) + ipconfigcheck=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') if [ -n "${ipconfigcheck}" ]; then ip="${ipconfigcheck}" fi @@ -192,9 +192,9 @@ fn_info_config_wolfensteinenemyterritory(){ port="${zero}" else port=$(grep "set net_port" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') - rconpassword=$(grep "set zmq_rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set zmq_rcon_password //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//g' -e '/^\//d' | xargs -0) - servername=$(grep "set sv_hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname //g' | tr -d '=\";,:' | xargs -0) - serverpassword=$(grep "set g_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set g_password //g' | tr -d '=\";,:' | xargs -0) + rconpassword=$(grep "set zmq_rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set zmq_rcon_password //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//g' -e '/^\//d' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + servername=$(grep "set sv_hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + serverpassword=$(grep "set g_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set g_password //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') slots=$(grep "set sv_maxclients" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') @@ -204,7 +204,7 @@ fn_info_config_wolfensteinenemyterritory(){ serverpassword=${serverpassword:-"NOT SET"} slots=${slots:-"0"} port=${port:-"27960"} - ipconfigcheck=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | xargs -0) + ipconfigcheck=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') if [ -n "${ipconfigcheck}" ]; then ip="${ipconfigcheck}" fi @@ -218,9 +218,9 @@ fn_info_config_realvirtuality(){ serverpassword="${unavailable}" slots="${zero}" else - servername=$(grep "hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/hostname//g' | tr -d '=\";,:' | xargs -0) - adminpassword=$(grep "passwordAdmin" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/passwordAdmin//g' | tr -d '=\";,:' | xargs -0) - serverpassword=$(grep "password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/password//g' | tr -d '=\";,:' | xargs -0) + servername=$(grep "hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/hostname//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + adminpassword=$(grep "passwordAdmin" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/passwordAdmin//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + serverpassword=$(grep "password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') slots=$(grep "maxPlayers" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') # Not Set @@ -239,9 +239,9 @@ fn_info_config_seriousengine35(){ slots="${zero}" port="${zero}" else - servername=$(grep "prj_strMultiplayerSessionName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/prj_strMultiplayerSessionName//g' | tr -d '=\";,:' | xargs -0) - rconpassword=$(grep "rcts_strAdminPassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/rcts_strAdminPassword//g' | tr -d '=\";,:' | xargs -0) - gamemode=$(grep "gam_idGameMode" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/gam_idGameMode//g' | tr -d '=\";,:' | xargs -0) + servername=$(grep "prj_strMultiplayerSessionName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/prj_strMultiplayerSessionName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + rconpassword=$(grep "rcts_strAdminPassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/rcts_strAdminPassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + gamemode=$(grep "gam_idGameMode" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/gam_idGameMode//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') slots=$(grep "gam_ctMaxPlayers" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') port=$(grep "prj_uwPort" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') @@ -260,9 +260,9 @@ fn_info_config_source(){ serverpassword="${unavailable}" rconpassword="${unavailable}" else - servername=$(grep "hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/hostname//g' | tr -d '=\";,:' | xargs -0) - serverpassword=$(grep "sv_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/sv_password//g' | tr -d '=\";,:' | xargs -0) - rconpassword=$(grep "rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/rcon_password//g' | tr -d '=\";,:' | xargs -0) + servername=$(grep "hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/hostname//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + serverpassword=$(grep "sv_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/sv_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + rconpassword=$(grep "rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/rcon_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') # Not Set servername=${servername:-"NOT SET"} @@ -280,8 +280,8 @@ fn_info_config_starbound(){ rconport="21026" slots="8" else - servername=$(grep "serverName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e 's/serverName//g' | tr -d '=\";,:' | xargs -0) - rconpassword=$(grep "rconServerPassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e 's/rconServerPassword//g' | tr -d '=\";,:' | xargs -0) + servername=$(grep "serverName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e 's/serverName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + rconpassword=$(grep "rconServerPassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e 's/rconServerPassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') port=$(grep "gameServerPort" "${servercfgfullpath}" | tr -cd '[:digit:]') queryport=$(grep "queryServerPort" "${servercfgfullpath}" | tr -cd '[:digit:]') rconport=$(grep "rconServerPort" "${servercfgfullpath}" | tr -cd '[:digit:]') @@ -304,7 +304,7 @@ fn_info_config_teamspeak3(){ queryport="10011" fileport="30033" else - dbplugin=$(grep "dbplugin=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/dbplugin=//g' | tr -d '=\";,:' | xargs -0) + dbplugin=$(grep "dbplugin=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/dbplugin=//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') port=$(grep "default_voice_port" "${servercfgfullpath}" | tr -cd '[:digit:]') queryport=$(grep "query_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') fileport=$(grep "filetransfer_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') @@ -315,7 +315,7 @@ fn_info_config_teamspeak3(){ fileport=${fileport:-"30033"} # check if the ip exists in the config file. Failing this will fall back to the default. - ipconfigcheck=$(grep "voice_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/voice_ip//g' | tr -d '=\";,:' | xargs -0) + ipconfigcheck=$(grep "voice_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/voice_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') if [ -n "${ipconfigcheck}" ]; then ip="${ipconfigcheck}" fi @@ -328,7 +328,7 @@ fn_info_config_mumble(){ queryport="${port}" servername="Mumble" else - port=$(grep "port" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/port//g' | tr -d '=\";,:' | xargs -0) + port=$(grep "port" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/port//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') queryport="${port}" # Not Set @@ -337,7 +337,7 @@ fn_info_config_mumble(){ servername="Mumble Port ${port}" # check if the ip exists in the config file. Failing this will fall back to the default. - ipconfigcheck=$(cat "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/voice_ip//g' | tr -d '=\";,:' | xargs -0) + ipconfigcheck=$(cat "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/voice_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') if [ -n "${ipconfigcheck}" ]; then ip="${ipconfigcheck}" fi @@ -352,9 +352,9 @@ fn_info_config_teeworlds(){ port="8303" slots="12" else - servername=$(grep "sv_name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/^sv_name//g' | tr -d '=\";,:' | xargs -0) - serverpassword=$(grep "password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' | grep "^password" | sed -e '/^#/d' -e 's/^password//g' | tr -d '=\";,:' | xargs -0) - rconpassword=$(grep "sv_rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/^sv_rcon_password//g' | tr -d '=\";,:' | xargs -0) + servername=$(grep "sv_name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/^sv_name//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + serverpassword=$(grep "password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' | grep "^password" | sed -e '/^#/d' -e 's/^password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + rconpassword=$(grep "sv_rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/^sv_rcon_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') port=$(grep "sv_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') slots=$(grep "sv_max_clients" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') @@ -374,9 +374,9 @@ fn_info_config_terraria(){ gameworld="${unavailable}" slots="${zero}" else - servername=$(grep "worldname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/worldname//g' | tr -d '=\";,:' | xargs -0) + servername=$(grep "worldname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/worldname//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') port=$(grep "port" "${servercfgfullpath}" | tr -cd '[:digit:]') - gameworld=$(grep "world=" "${servercfgfullpath}" | grep -v "//" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/world=//g' | tr -d '=\";,:' | xargs -0) + gameworld=$(grep "world=" "${servercfgfullpath}" | grep -v "//" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/world=//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') slots=$(grep "maxplayers" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') # Not Set @@ -399,18 +399,18 @@ fn_info_config_unreal(){ webadminuser="${unavailable}" webadminpass="${unavailable}" else - servername=$(grep "ServerName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/ServerName//g' | tr -d '=\";,:' | xargs -0) - serverpassword=$(grep "GamePassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/GamePassword//g' | tr -d '=\";,:' | xargs -0) - adminpassword=$(grep "AdminPassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/AdminPassword//g' | tr -d '=\";,:' | xargs -0) + servername=$(grep "ServerName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/ServerName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + serverpassword=$(grep "GamePassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/GamePassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + adminpassword=$(grep "AdminPassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/AdminPassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') port=$(grep "Port" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' | grep "^Port" | grep -v "#" | tr -cd '[:digit:]') gsqueryport=$(grep "OldQueryPortNumber" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') - webadminenabled=$(grep "bEnabled" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/bEnabled//g' | tr -d '=\";,:' | xargs -0) + webadminenabled=$(grep "bEnabled" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/bEnabled//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') webadminport=$(grep "ListenPort" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') if [ "${engine}" == "unreal" ]; then - webadminuser=$(grep "AdminUsername" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/AdminUsername//g' | tr -d '=\";,:' | xargs -0) - webadminpass=$(grep "UTServerAdmin.UTServerAdmin" "${servercfgfullpath}" -A 4 | grep "AdminPassword" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/AdminPassword//g' | tr -d '=\";,:' | xargs -0) + webadminuser=$(grep "AdminUsername" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/AdminUsername//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + webadminpass=$(grep "UTServerAdmin.UTServerAdmin" "${servercfgfullpath}" -A 4 | grep "AdminPassword" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/AdminPassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') else - webadminuser=$(grep "AdminName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/AdminName//g' | tr -d '=\";,:' | xargs -0) + webadminuser=$(grep "AdminName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/AdminName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') webadminpass="${adminpassword}" fi From 831e4a31aaddb2fef0970d15b9026fbeef17125a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 16 Oct 2016 17:27:09 +0100 Subject: [PATCH 071/246] Fixed LGSM install config * LGSM will alter all hostnames to LinuxGSM and generate a random admin password * Removed user input for hostname and password as added more complexity in to the code that can lead to mistakes by devs Users can will simply change settings in there config as required. --- lgsm/functions/install_config.sh | 104 ++++++++++++++++++------------- 1 file changed, 61 insertions(+), 43 deletions(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index fa6adf9e4..e92f65767 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -19,26 +19,20 @@ fn_fetch_default_config(){ done } -# allow user to input server name and password -fn_user_input_config(){ - 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="LinuxGSM" - rconpass="rcon$RANDOM" - fi +# Changes some variables within the default configs +# SERVERNAME to LinuxGSM +# PASSWORD to random password +fn_set_config_vars(){ + random=$(strings /dev/urandom | grep -o '[[:alnum:]]' | head -n 8 | tr -d '\n'; echo) + servername="LinuxGSM" + rconpass="admin$random" echo "changing hostname." fn_script_log_info "changing hostname." - sed -i "s/\"\"/\"${servername}\"/g" "${servercfgfullpath}" sleep 1 + sed -i "s/\"SERVERNAME\"/\"${servername}\"/g" "${servercfgfullpath}" echo "changing rconpassword." - fn_script_log_info "changing RCON password." - sed -i "s/\"\"/\"${rconpass}\"/g" "${servercfgfullpath}" + fn_script_log_info "changing RCON/ADMIN password." + sed -i "s/\"ADMINPASSWORD\"/\"${rconpass}\"/g" "${servercfgfullpath}" sleep 1 } @@ -72,191 +66,199 @@ if [ "${gamename}" == "7 Days To Die" ]; then array_configs+=( serverconfig.xml ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "ARK: Survivial Evolved" ]; then gamedirname="ARKSurvivalEvolved" array_configs+=( GameUserSettings.ini ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "ARMA 3" ]; then gamedirname="Arma3" array_configs+=( server.cfg network.cfg ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Battlefield: 1942" ]; then gamedirname="Battlefield1942" array_configs+=( serversettings.con ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Blade Symphony" ]; then gamedirname="BladeSymphony" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "BrainBread 2" ]; then gamedirname="BrainBread2" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Black Mesa: Deathmatch" ]; then gamedirname="BlackMesa" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Codename CURE" ]; then gamedirname="CodenameCURE" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Counter-Strike 1.6" ]; then gamedirname="CounterStrike" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Counter-Strike: Condition Zero" ]; then gamedirname="CounterStrikeConditionZero" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Counter-Strike: Global Offensive" ]; then gamedirname="CounterStrikeGlobalOffensive" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Counter-Strike: Source" ]; then gamedirname="CounterStrikeSource" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Day of Defeat" ]; then gamedirname="DayOfDefeat" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Day of Defeat: Source" ]; then gamedirname="DayOfDefeatSource" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Day of Infamy" ]; then gamedirname="DayOfInfamy" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Deathmatch Classic" ]; then gamedirname="DeathmatchClassic" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Don't Starve Together" ]; then gamedirname="DontStarveTogether" array_configs+=( Settings.ini ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Double Action: Boogaloo" ]; then gamedirname="DoubleActionBoogaloo" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Fistful of Frags" ]; then gamedirname="FistfulofFrags" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Garry's Mod" ]; then gamedirname="GarrysMod" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "GoldenEye: Source" ]; then gamedirname="GoldenEyeSource" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Half Life: Deathmatch" ]; then gamedirname="HalfLifeDeathmatch" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Half-Life Deathmatch: Source" ]; then gamedirname="HalfLifeDeathmatchSource" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Half-Life: Opposing Force" ]; then gamedirname="OpposingForce" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Half Life 2: Deathmatch" ]; then gamedirname="HalfLife2Deathmatch" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Insurgency" ]; then gamedirname="Insurgency" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Just Cause 2" ]; then gamedirname="JustCause2" array_configs+=( config.lua ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Killing Floor" ]; then gamedirname="KillingFloor" array_configs+=( Default.ini ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Left 4 Dead" ]; then gamedirname="Left4Dead" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Left 4 Dead" ]; then gamedirname="Left4Dead" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Left 4 Dead 2" ]; then gamedirname="Left4Dead2" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Minecraft" ]; then gamedirname="Minecraft" array_configs+=( server.properties ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "No More Room in Hell" ]; then gamedirname="NoMoreRoominHell" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Mumble" ]; then : elif [ "${gamename}" == "Natural Selection 2" ]; then @@ -268,17 +270,19 @@ elif [ "${gamename}" == "Pirates, Vikings, and Knights II" ]; then array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Project Zomboid" ]; then gamedirname="ProjectZomboid" array_configs+=( server.ini ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Quake Live" ]; then gamedirname="QuakeLive" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Red Orchestra: Ostfront 41-45" ]; then : elif [ "${gamename}" == "Ricochet" ]; then @@ -286,76 +290,90 @@ elif [ "${gamename}" == "Ricochet" ]; then array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_user_input_config + fn_set_config_vars elif [ "${gamename}" == "Rust" ]; then gamedirname="Rust" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Serious Sam 3: BFE" ]; then gamedirname="SeriousSam3BFE" array_configs+=( server.ini ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Starbound" ]; then gamedirname="Starbound" array_configs+=( starbound.config ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Sven Co-op" ]; then gamedirname="SvenCoop" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Team Fortress 2" ]; then gamedirname="TeamFortress2" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Team Fortress Classic" ]; then gamedirname="TeamFortressClassic" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "TeamSpeak 3" ]; then gamedirname="TeamSpeak3" array_configs+=( ts3server.ini ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Teeworlds" ]; then gamedirname="Teeworlds" array_configs+=( server.cfg ctf.cfg dm.cfg duel.cfg tdm.cfg ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Terraria" ]; then gamedirname="Terraria" array_configs+=( serverconfig.txt ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Unreal Tournament" ]; then gamedirname="UnrealTournament" array_configs+=( Game.ini Engine.ini ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Unreal Tournament 2004" ]; then gamedirname="UnrealTournament2004" array_configs+=( UT2004.ini ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Unreal Tournament 3" ]; then gamedirname="UnrealTournament3" array_configs+=( UTGame.ini ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Unreal Tournament 99" ]; then gamedirname="UnrealTournament99" array_configs+=( Default.ini ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then gamedirname="WolfensteinEnemyTerritory" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars fi From b69fdaa65dcd49aafcf0b44d744bf6b278af8a5c Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 16 Oct 2016 17:43:41 +0100 Subject: [PATCH 072/246] Renamed to svenserver --- SvenCoop/{svencoopserver => svenserver} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename SvenCoop/{svencoopserver => svenserver} (100%) diff --git a/SvenCoop/svencoopserver b/SvenCoop/svenserver similarity index 100% rename from SvenCoop/svencoopserver rename to SvenCoop/svenserver From 8fdc8b8923791e31dd6d13720c742780c8c19ef7 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 16 Oct 2016 19:27:29 +0100 Subject: [PATCH 073/246] added ip --- Battlefield1942/bf1942server | 1 + 1 file changed, 1 insertion(+) diff --git a/Battlefield1942/bf1942server b/Battlefield1942/bf1942server index 72111ab81..decb4c34d 100644 --- a/Battlefield1942/bf1942server +++ b/Battlefield1942/bf1942server @@ -27,6 +27,7 @@ pushbulletalert="off" pushbullettoken="accesstoken" # Start Variables +ip="0.0.0.0" fn_parms(){ parms=" +hostServer 1 +dedicated 1" From d77ee6a112ee31afbe181334c71818da38e5f7a1 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 16 Oct 2016 21:08:20 +0100 Subject: [PATCH 074/246] removed ip= --- Battlefield1942/bf1942server | 1 - JustCause2/jc2server | 1 - Mumble/mumbleserver | 1 - WolfensteinEnemyTerritory/wetserver | 1 - 4 files changed, 4 deletions(-) diff --git a/Battlefield1942/bf1942server b/Battlefield1942/bf1942server index decb4c34d..72111ab81 100644 --- a/Battlefield1942/bf1942server +++ b/Battlefield1942/bf1942server @@ -27,7 +27,6 @@ pushbulletalert="off" pushbullettoken="accesstoken" # Start Variables -ip="0.0.0.0" fn_parms(){ parms=" +hostServer 1 +dedicated 1" diff --git a/JustCause2/jc2server b/JustCause2/jc2server index fa10697cb..af5e1e0af 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -31,7 +31,6 @@ steamuser="anonymous" steampass="" # Start Variables -ip="0.0.0.0" updateonstart="off" fn_parms(){ diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index 6bfa1e996..4057d2825 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -43,7 +43,6 @@ githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" - # Server Details gamename="Mumble" servicename="mumble-server" diff --git a/WolfensteinEnemyTerritory/wetserver b/WolfensteinEnemyTerritory/wetserver index 90fc44913..35642cdd6 100644 --- a/WolfensteinEnemyTerritory/wetserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -27,7 +27,6 @@ pushbulletalert="off" pushbullettoken="accesstoken" # Start Variables -ip="0.0.0.0" fn_parms(){ parms="+set net_strict 1 +set fs_homepath ${filesdir} +exec ${servercfg}" From dc0a7cab43c9bfa41dba80f2e2c64f4045d8e750 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 16 Oct 2016 21:10:37 +0100 Subject: [PATCH 075/246] IP address is selected in config for some games If server has multiple nic's then an ip has to be selected. Some servers this is done on the parms and others in the config. LGSM now handles config IP addresses better. Check IP also tells the user to change the IP in the config --- lgsm/functions/check_ip.sh | 12 ++++++-- lgsm/functions/info_config.sh | 56 ++++++++++++++--------------------- 2 files changed, 32 insertions(+), 36 deletions(-) diff --git a/lgsm/functions/check_ip.sh b/lgsm/functions/check_ip.sh index 1a64db6bd..c51015299 100644 --- a/lgsm/functions/check_ip.sh +++ b/lgsm/functions/check_ip.sh @@ -16,7 +16,7 @@ if [ "${gamename}" != "TeamSpeak 3" ] && [ "${gamename}" != "Mumble" ]; then fi getip=$(${ipcommand} -o -4 addr|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0) getipwc=$(${ipcommand} -o -4 addr|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -vc 127.0.0) - + info_config.sh if [ "${ip}" == "0.0.0.0" ]||[ "${ip}" == "" ]; then if [ "${getipwc}" -ge "2" ]; then fn_print_dots "Check IP" @@ -24,8 +24,14 @@ if [ "${gamename}" != "TeamSpeak 3" ] && [ "${gamename}" != "Mumble" ]; then fn_print_fail "Check IP: Multiple active network interfaces found." sleep 1 echo -en "\n" - fn_print_information "Specify the IP you want to use within the ${selfname} script.\n" - echo -en "Set ip=\"0.0.0.0\" to one of the following:\n" + if [ "${ipsetinconfig}" == "1" ]; then + fn_print_information "Specify the IP you want to use within the server config file ${servercfg}.\n" + echo -en "${servercfgfullpath}\n" + echo -en "Set ${ipinconfigvar} to one of the following:\n" + else + fn_print_information "Specify the IP you want to use within the ${selfname} script.\n" + echo -en "Set ip=\"0.0.0.0\" to one of the following:\n" + fi echo -en "${getip}\n" echo -en "" echo -en "https://gameservermanagers.com/network-interfaces\n" diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 952419c73..e3dac532f 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -33,11 +33,9 @@ fn_info_config_avalanche(){ slots=${slots:-"0"} port=${port:-"0"} - # check if the ip exists in the config file. Failing this will fall back to the default. - ipconfigcheck=$(grep "BindIP" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/BindIP//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - if [ -n "${ipconfigcheck}" ]; then - ip="${ipconfigcheck}" - fi + ip=$(grep "BindIP" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/BindIP//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + ipsetinconfig=1 + ipinconfigvar="BindIP" fi } @@ -62,11 +60,9 @@ fn_info_config_bf1942(){ slots=${slots:-"0"} port=${port:-"0"} - # check if the ip exists in the config file. Failing this will fall back to the default. - ipconfigcheck=$(grep "game.serverIP" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/game.serverIP//g' | tr -d '=\";,:' | xargs) - if [ -n "${ipconfigcheck}" ]; then - ip="${ipconfigcheck}" - fi + ip=$(grep "game.serverIP" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/game.serverIP//g' | tr -d '=\";,:' | xargs) + ipsetinconfig=1 + ipinconfigvar="game.serverIP" fi } @@ -125,11 +121,9 @@ fn_info_config_minecraft(){ gamemode=${gamemode:-"NOT SET"} gameworld=${gameworld:-"NOT SET"} - # check if the ip exists in the config file. Failing this will fall back to the default. - ipconfigcheck=$(grep "server-ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/server-ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - if [ -n "${ipconfigcheck}" ]; then - ip="${ipconfigcheck}" - fi + ip=$(grep "server-ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/server-ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + ipsetinconfig=1 + ipinconfigvar="server-ip" fi } @@ -176,10 +170,10 @@ fn_info_config_quakelive(){ servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} slots=${slots:-"0"} - ipconfigcheck=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - if [ -n "${ipconfigcheck}" ]; then - ip="${ipconfigcheck}" - fi + + ip=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + ipsetinconfig=1 + ipinconfigvar="set net_ip" fi } @@ -204,10 +198,10 @@ fn_info_config_wolfensteinenemyterritory(){ serverpassword=${serverpassword:-"NOT SET"} slots=${slots:-"0"} port=${port:-"27960"} - ipconfigcheck=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - if [ -n "${ipconfigcheck}" ]; then - ip="${ipconfigcheck}" - fi + + ip=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + ipsetinconfig=1 + ipinconfigvar="set net_ip" fi } @@ -314,11 +308,9 @@ fn_info_config_teamspeak3(){ queryport=${queryport:-"10011"} fileport=${fileport:-"30033"} - # check if the ip exists in the config file. Failing this will fall back to the default. - ipconfigcheck=$(grep "voice_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/voice_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - if [ -n "${ipconfigcheck}" ]; then - ip="${ipconfigcheck}" - fi + ip=$(grep "voice_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/voice_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + ipsetinconfig=1 + ipinconfigvar="voice_ip" fi } @@ -336,11 +328,9 @@ fn_info_config_mumble(){ queryport=${queryport:-"64738"} servername="Mumble Port ${port}" - # check if the ip exists in the config file. Failing this will fall back to the default. - ipconfigcheck=$(cat "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/voice_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - if [ -n "${ipconfigcheck}" ]; then - ip="${ipconfigcheck}" - fi + ip=$(cat "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/voice_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + ipsetinconfig=1 + ipinconfigvar="voice_ip" fi } From ff5d149e29c34de1b7f68241f084e15e365d3cb3 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 16 Oct 2016 23:05:45 +0100 Subject: [PATCH 076/246] removed quotes --- lgsm/functions/install_config.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index e92f65767..997bc4cc2 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -29,10 +29,10 @@ fn_set_config_vars(){ echo "changing hostname." fn_script_log_info "changing hostname." sleep 1 - sed -i "s/\"SERVERNAME\"/\"${servername}\"/g" "${servercfgfullpath}" + sed -i "s/SERVERNAME/${servername}/g" "${servercfgfullpath}" echo "changing rconpassword." fn_script_log_info "changing RCON/ADMIN password." - sed -i "s/\"ADMINPASSWORD\"/\"${rconpass}\"/g" "${servercfgfullpath}" + sed -i "s/ADMINPASSWORD/${rconpass}/g" "${servercfgfullpath}" sleep 1 } From 768da753f410fe82a454989e7e5dd91c5ec82ca7 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 17 Oct 2016 20:13:35 +0100 Subject: [PATCH 077/246] space --- Battlefield1942/bf1942server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Battlefield1942/bf1942server b/Battlefield1942/bf1942server index 72111ab81..14995f4cf 100644 --- a/Battlefield1942/bf1942server +++ b/Battlefield1942/bf1942server @@ -29,7 +29,7 @@ pushbullettoken="accesstoken" # Start Variables fn_parms(){ -parms=" +hostServer 1 +dedicated 1" +parms="+hostServer 1 +dedicated 1" } #### Advanced Variables #### From 05257f4188b4978e5b7fd5c06307124e22c77176 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 17 Oct 2016 20:13:49 +0100 Subject: [PATCH 078/246] updated message --- lgsm/functions/install_config.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 997bc4cc2..db634f87c 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -30,8 +30,8 @@ fn_set_config_vars(){ fn_script_log_info "changing hostname." sleep 1 sed -i "s/SERVERNAME/${servername}/g" "${servercfgfullpath}" - echo "changing rconpassword." - fn_script_log_info "changing RCON/ADMIN password." + echo "changing rcon/admin password." + fn_script_log_info "changing rcon/admin password." sed -i "s/ADMINPASSWORD/${rconpass}/g" "${servercfgfullpath}" sleep 1 } From 4564bd2d430a7babfa0d93313cb3714512d79764 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 18 Oct 2016 00:45:05 +0200 Subject: [PATCH 079/246] cfg folder needs to be created for Arma3 --- lgsm/functions/install_config.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index db634f87c..99a882691 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -36,6 +36,15 @@ fn_set_config_vars(){ sleep 1 } +# Checks if cfg dir exists, creates it if it doesn't +fn_check_cfgdir(){ + if [ ! -d "${servercfgdir}" ]; then + echo "creating ${servercfgdir} config folder." + fn_script_log_info "creating ${servercfgdir} config folder." + mkdir -pv + fi +} + # Copys the default configs from Game-Server-Configs repo to the # correct location fn_default_config_remote(){ @@ -75,6 +84,7 @@ elif [ "${gamename}" == "ARK: Survivial Evolved" ]; then fn_set_config_vars elif [ "${gamename}" == "ARMA 3" ]; then gamedirname="Arma3" + fn_check_cfgdir array_configs+=( server.cfg network.cfg ) fn_fetch_default_config fn_default_config_remote From 88729addd1006dd2075af64a6e4aa80b5bd562d1 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 18 Oct 2016 00:50:00 +0200 Subject: [PATCH 080/246] with the actual target folder, better --- 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 99a882691..6cd4a7dc4 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -41,7 +41,7 @@ fn_check_cfgdir(){ if [ ! -d "${servercfgdir}" ]; then echo "creating ${servercfgdir} config folder." fn_script_log_info "creating ${servercfgdir} config folder." - mkdir -pv + mkdir -pv "${servercfgdir}" fi } From e98e5af66e624c923cbf0a1cb00de503d463ad7e Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 18 Oct 2016 13:36:57 +0200 Subject: [PATCH 081/246] Check if executable is executable Attempt to fix it if not Needs testing Fixes #591 --- lgsm/functions/check_permissions.sh | 41 +++++++++++++++++++++++++++-- 1 file changed, 39 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 3b5e52005..a7112238c 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -74,12 +74,49 @@ fn_check_permissions(){ if [ "${userrootdirperm}" != "7" ] && [ "${grouprootdirperm}" != "7" ]; then fn_print_fail_nl "Permissions issues found" fn_script_log_fatal "Permissions issues found" - fn_print_information_nl "The following directorys does not have the correct permissions:" - fn_script_log_info "The following directorys does not have the correct permissions:" + fn_print_information_nl "The following directory does not have the correct permissions:" + fn_script_log_info "The following directory does not have the correct permissions:" + fn_script_log_info "${rootdir}" ls -l "${rootdir}" core_exit.sh fi fi + # Check if executable is executable and attempt to fix it + if [ -f "${executabledir}/${executable}" ]; then + # Get permission numbers on file under the form 775 + execperm="$(stat -c %a "${executabledir}/${executable}")" + # Grab the first and second digit for user and group permission + userexecperm="${execperm:0:1}" + groupexecperm="${execperm:1:1}" + # Check for invalid user permission + if [ "${userexecperm}" == "0" ] || [ "${userexecperm}" == "2" ] || [ "${userexecperm}" == "4" ] || [ "${userexecperm}" == "6" ]; then + # If user permission is invalid, then check for invalid group permissions + if [ "${groupexecperm}" == "0" ] || [ "${groupexecperm}" == "2" ] || [ "${groupexecperm}" == "4" ] || [ "${groupexecperm}" == "6" ]; then + # If permission issues are found + fn_print_warning "Permissions issue found" + fn_script_log_warn "Permissions issue found" + fn_print_information_nl "The following file is not executable:" + ls -l "${executabledir}/${executable}" + fn_script_log_info "The following file is not executable:" + fn_script_log_info "${executabledir}/${executable}" + fn_print_information_nl "Applying chmod u+x,g+x ${executabledir}/${executable}" + fn_script_log_info "Applying chmod u+x,g+x ${execperm}" + # Make the executable executable + chmod u+x,g+x "${executabledir}/${executable}" + # Second check to see if it's been successfully applied + if [ "${userexecperm}" == "0" ] || [ "${userexecperm}" == "2" ] || [ "${userexecperm}" == "4" ] || [ "${userexecperm}" == "6" ]; then + if [ "${groupexecperm}" == "0" ] || [ "${groupexecperm}" == "2" ] || [ "${groupexecperm}" == "4" ] || [ "${groupexecperm}" == "6" ]; then + # If errors are still found + fn_print_fail_nl "The following file could not be set executable:" + ls -l "${executabledir}/${executable}" + fn_script_log_warn "The following file could not be set executable:" + fn_script_log_info "${executabledir}/${executable}" + core_exit.sh + fi + fi + fi + fi + fi } fn_check_ownership From f0306dbcc41d1b548e93ddd244060309c9472c3d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 18 Oct 2016 14:18:14 +0200 Subject: [PATCH 082/246] stripping ./ from executable --- lgsm/functions/check_permissions.sh | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index a7112238c..7cb88ac51 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -82,9 +82,11 @@ fn_check_permissions(){ fi fi # Check if executable is executable and attempt to fix it - if [ -f "${executabledir}/${executable}" ]; then + # First get executable name + execname="$(echo "${executable}" | awk -F "/" '{ print $2 }')" + if [ -f "${executabledir}/${execname}" ]; then # Get permission numbers on file under the form 775 - execperm="$(stat -c %a "${executabledir}/${executable}")" + execperm="$(stat -c %a "${executabledir}/${execname}")" # Grab the first and second digit for user and group permission userexecperm="${execperm:0:1}" groupexecperm="${execperm:1:1}" @@ -93,24 +95,24 @@ fn_check_permissions(){ # If user permission is invalid, then check for invalid group permissions if [ "${groupexecperm}" == "0" ] || [ "${groupexecperm}" == "2" ] || [ "${groupexecperm}" == "4" ] || [ "${groupexecperm}" == "6" ]; then # If permission issues are found - fn_print_warning "Permissions issue found" + fn_print_warn "Permissions issue found" fn_script_log_warn "Permissions issue found" fn_print_information_nl "The following file is not executable:" - ls -l "${executabledir}/${executable}" + ls -l "${executabledir}/${execname}" fn_script_log_info "The following file is not executable:" - fn_script_log_info "${executabledir}/${executable}" - fn_print_information_nl "Applying chmod u+x,g+x ${executabledir}/${executable}" + fn_script_log_info "${executabledir}/${execname}" + fn_print_information_nl "Applying chmod u+x,g+x ${executabledir}/${execname}" fn_script_log_info "Applying chmod u+x,g+x ${execperm}" # Make the executable executable - chmod u+x,g+x "${executabledir}/${executable}" + chmod u+x,g+x "${executabledir}/${execname}" # Second check to see if it's been successfully applied if [ "${userexecperm}" == "0" ] || [ "${userexecperm}" == "2" ] || [ "${userexecperm}" == "4" ] || [ "${userexecperm}" == "6" ]; then if [ "${groupexecperm}" == "0" ] || [ "${groupexecperm}" == "2" ] || [ "${groupexecperm}" == "4" ] || [ "${groupexecperm}" == "6" ]; then # If errors are still found fn_print_fail_nl "The following file could not be set executable:" - ls -l "${executabledir}/${executable}" + ls -l "${executabledir}/${execname}" fn_script_log_warn "The following file could not be set executable:" - fn_script_log_info "${executabledir}/${executable}" + fn_script_log_info "${executabledir}/${execname}" core_exit.sh fi fi From 3484854959bb69d2745d85cb916728e0413e0071 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 18 Oct 2016 14:22:08 +0200 Subject: [PATCH 083/246] refresh values for second check --- lgsm/functions/check_permissions.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 7cb88ac51..a853a22df 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -106,6 +106,11 @@ fn_check_permissions(){ # Make the executable executable chmod u+x,g+x "${executabledir}/${execname}" # Second check to see if it's been successfully applied + # Get permission numbers on file under the form 775 + execperm="$(stat -c %a "${executabledir}/${execname}")" + # Grab the first and second digit for user and group permission + userexecperm="${execperm:0:1}" + groupexecperm="${execperm:1:1}" if [ "${userexecperm}" == "0" ] || [ "${userexecperm}" == "2" ] || [ "${userexecperm}" == "4" ] || [ "${userexecperm}" == "6" ]; then if [ "${groupexecperm}" == "0" ] || [ "${groupexecperm}" == "2" ] || [ "${groupexecperm}" == "4" ] || [ "${groupexecperm}" == "6" ]; then # If errors are still found From a36e646bf7d9d28c0558fca1062d4f4db8c65e10 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 18 Oct 2016 14:25:48 +0200 Subject: [PATCH 084/246] new line, now nice output --- lgsm/functions/check_permissions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index a853a22df..946ddd301 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -95,7 +95,7 @@ fn_check_permissions(){ # If user permission is invalid, then check for invalid group permissions if [ "${groupexecperm}" == "0" ] || [ "${groupexecperm}" == "2" ] || [ "${groupexecperm}" == "4" ] || [ "${groupexecperm}" == "6" ]; then # If permission issues are found - fn_print_warn "Permissions issue found" + fn_print_warn_nl "Permissions issue found" fn_script_log_warn "Permissions issue found" fn_print_information_nl "The following file is not executable:" ls -l "${executabledir}/${execname}" From c2bd0cffb532127da623ef5c0479df79511506ab Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 18 Oct 2016 14:34:47 +0200 Subject: [PATCH 085/246] fixed mumble port using awk instead of sed --- lgsm/functions/info_config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index e3dac532f..825df0a84 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -320,7 +320,7 @@ fn_info_config_mumble(){ queryport="${port}" servername="Mumble" else - port=$(grep "port" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/port//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + port=$(grep "port=" "${servercfgfullpath}" | awk -F "=" '{ print $2 }' ) queryport="${port}" # Not Set From c43ac02250d1675a8a7368a69a4aa53abaed9aff Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 18 Oct 2016 14:42:55 +0200 Subject: [PATCH 086/246] first fix attempt for mumble ip --- lgsm/functions/info_config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 825df0a84..7ea395dc0 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -328,7 +328,7 @@ fn_info_config_mumble(){ queryport=${queryport:-"64738"} servername="Mumble Port ${port}" - ip=$(cat "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/voice_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + ip=$(cat "${servercfgfullpath}" | grep "host=" | awk -F "=" { print $2 }' ) ipsetinconfig=1 ipinconfigvar="voice_ip" fi From 745254777ac830f9cb41edee58bb73ca569a3261 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 18 Oct 2016 18:16:39 +0200 Subject: [PATCH 087/246] more elegant execname --- lgsm/functions/check_permissions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 946ddd301..d085b5ef3 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -83,7 +83,7 @@ fn_check_permissions(){ fi # Check if executable is executable and attempt to fix it # First get executable name - execname="$(echo "${executable}" | awk -F "/" '{ print $2 }')" + execname="$(basename "${executable}" if [ -f "${executabledir}/${execname}" ]; then # Get permission numbers on file under the form 775 execperm="$(stat -c %a "${executabledir}/${execname}")" From 05ee12038ce7faa9275a099dda8e5ce5c67d04df Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 18 Oct 2016 22:13:54 +0100 Subject: [PATCH 088/246] fixed ip for mumble #1130 --- lgsm/functions/info_config.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 7ea395dc0..dc7486c85 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -320,7 +320,7 @@ fn_info_config_mumble(){ queryport="${port}" servername="Mumble" else - port=$(grep "port=" "${servercfgfullpath}" | awk -F "=" '{ print $2 }' ) + port=$(grep "port" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/port//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') queryport="${port}" # Not Set @@ -328,7 +328,7 @@ fn_info_config_mumble(){ queryport=${queryport:-"64738"} servername="Mumble Port ${port}" - ip=$(cat "${servercfgfullpath}" | grep "host=" | awk -F "=" { print $2 }' ) + ip=$(grep "host=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/host=//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') ipsetinconfig=1 ipinconfigvar="voice_ip" fi From 34b0a42a4987757dc8db4e71e83efeeb28f17be2 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 18 Oct 2016 22:15:15 +0100 Subject: [PATCH 089/246] Should Fix issue #1130 --- lgsm/functions/info_config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index e3dac532f..dc7486c85 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -328,7 +328,7 @@ fn_info_config_mumble(){ queryport=${queryport:-"64738"} servername="Mumble Port ${port}" - ip=$(cat "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/voice_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + ip=$(grep "host=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/host=//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') ipsetinconfig=1 ipinconfigvar="voice_ip" fi From e370cdd4b45c1dce2deec46ac44421bbcfe7e3f8 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 18:23:33 +0200 Subject: [PATCH 090/246] ordering & matching changes --- lgsm/functions/info_config.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index dc7486c85..66e23134e 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -321,14 +321,12 @@ fn_info_config_mumble(){ servername="Mumble" else port=$(grep "port" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/port//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - queryport="${port}" - + ip=$(grep "host=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/host=//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') # Not Set port=${port:-"64738"} queryport=${queryport:-"64738"} servername="Mumble Port ${port}" - - ip=$(grep "host=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/host=//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + # Misc variables ipsetinconfig=1 ipinconfigvar="voice_ip" fi From 2653e003eaadbeed5aa2a963b7f5b7547bfa4b26 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 18:28:47 +0200 Subject: [PATCH 091/246] Ordering, spacing and comments --- lgsm/functions/info_config.sh | 41 ++++++++++++++++++++--------------- 1 file changed, 24 insertions(+), 17 deletions(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 66e23134e..0bc4b945b 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -26,14 +26,15 @@ fn_info_config_avalanche(){ serverpassword=$(grep "Password" "${servercfgfullpath}" | sed -e 's/^ *//g' -e '/^--/d' -e 's/Password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') slots=$(grep "MaxPlayers" "${servercfgfullpath}" | grep -v "\--" | tr -cd '[:digit:]') port=$(grep "BindPort" "${servercfgfullpath}" | grep -v "\--" | tr -cd '[:digit:]') - + ip=$(grep "BindIP" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/BindIP//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + # Not Set servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} slots=${slots:-"0"} port=${port:-"0"} - - ip=$(grep "BindIP" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/BindIP//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + + # Misc Variables ipsetinconfig=1 ipinconfigvar="BindIP" fi @@ -53,14 +54,15 @@ fn_info_config_bf1942(){ slots=$(grep "game.serverMaxPlayers" "${servercfgfullpath}" | grep -v "\--" | tr -cd '[:digit:]') port=$(grep "game.serverPort" "${servercfgfullpath}" | grep -v "\--" | tr -cd '[:digit:]') queryport="22000" - + ip=$(grep "game.serverIP" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/game.serverIP//g' | tr -d '=\";,:' | xargs) + # Not Set servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} slots=${slots:-"0"} port=${port:-"0"} - - ip=$(grep "game.serverIP" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/game.serverIP//g' | tr -d '=\";,:' | xargs) + + # Misc Variables ipsetinconfig=1 ipinconfigvar="game.serverIP" fi @@ -111,7 +113,8 @@ fn_info_config_minecraft(){ port=$(grep "server-port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') gamemode=$(grep "gamemode" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') gameworld=$(grep "level-name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/level-name//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - + ip=$(grep "server-ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/server-ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + # Not Set servername=${servername:-"NOT SET"} rconpassword=${rconpassword:-"NOT SET"} @@ -120,8 +123,8 @@ fn_info_config_minecraft(){ port=${port:-"NOT SET"} gamemode=${gamemode:-"NOT SET"} gameworld=${gameworld:-"NOT SET"} - - ip=$(grep "server-ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/server-ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + + # Misc Variables ipsetinconfig=1 ipinconfigvar="server-ip" fi @@ -164,14 +167,15 @@ fn_info_config_quakelive(){ servername=$(grep "sv_hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') serverpassword=$(grep "g_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set g_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') slots=$(grep "sv_maxClients" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + ip=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') # Not Set rconpassword=${rconpassword:-"NOT SET"} servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} slots=${slots:-"0"} - - ip=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + + # Misc Variables ipsetinconfig=1 ipinconfigvar="set net_ip" fi @@ -190,7 +194,7 @@ fn_info_config_wolfensteinenemyterritory(){ servername=$(grep "set sv_hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') serverpassword=$(grep "set g_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set g_password //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') slots=$(grep "set sv_maxclients" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') - + ip=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') # Not Set rconpassword=${rconpassword:-"NOT SET"} @@ -198,8 +202,8 @@ fn_info_config_wolfensteinenemyterritory(){ serverpassword=${serverpassword:-"NOT SET"} slots=${slots:-"0"} port=${port:-"27960"} - - ip=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + + # Misc Variables ipsetinconfig=1 ipinconfigvar="set net_ip" fi @@ -302,13 +306,14 @@ fn_info_config_teamspeak3(){ port=$(grep "default_voice_port" "${servercfgfullpath}" | tr -cd '[:digit:]') queryport=$(grep "query_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') fileport=$(grep "filetransfer_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') - + ip=$(grep "voice_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/voice_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + # Not Set port=${port:-"9987"} queryport=${queryport:-"10011"} fileport=${fileport:-"30033"} - - ip=$(grep "voice_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/voice_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + + # Misc Variables ipsetinconfig=1 ipinconfigvar="voice_ip" fi @@ -322,10 +327,12 @@ fn_info_config_mumble(){ else port=$(grep "port" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/port//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') ip=$(grep "host=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/host=//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + # Not Set port=${port:-"64738"} queryport=${queryport:-"64738"} servername="Mumble Port ${port}" + # Misc variables ipsetinconfig=1 ipinconfigvar="voice_ip" From 4b4477199df02aed84f61a46aaf23d5894f159c5 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 18:31:33 +0200 Subject: [PATCH 092/246] closing ) is better after opening --- lgsm/functions/check_permissions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index d085b5ef3..e8aa53d8a 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -83,7 +83,7 @@ fn_check_permissions(){ fi # Check if executable is executable and attempt to fix it # First get executable name - execname="$(basename "${executable}" + execname="$(basename "${executable})" if [ -f "${executabledir}/${execname}" ]; then # Get permission numbers on file under the form 775 execperm="$(stat -c %a "${executabledir}/${execname}")" From 3aa5242cc564cc877513aee6826d48bf807386bf Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 18:34:07 +0200 Subject: [PATCH 093/246] syntax --- lgsm/functions/check_permissions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index e8aa53d8a..0822c160e 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -83,7 +83,7 @@ fn_check_permissions(){ fi # Check if executable is executable and attempt to fix it # First get executable name - execname="$(basename "${executable})" + execname="$(basename "${executable}")" if [ -f "${executabledir}/${execname}" ]; then # Get permission numbers on file under the form 775 execperm="$(stat -c %a "${executabledir}/${execname}")" From 60d4e9c84eccc0e918299976d700c15bd1deae81 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 19:05:26 +0200 Subject: [PATCH 094/246] Using awk for now fixes #1130 --- lgsm/functions/info_config.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 0bc4b945b..00949c73f 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -325,8 +325,8 @@ fn_info_config_mumble(){ queryport="${port}" servername="Mumble" else - port=$(grep "port" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/port//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - ip=$(grep "host=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/host=//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + port=$(grep "port=" "${servercfgfullpath}" | awk -F "=" '{ print $2 }' ) + ip=$(grep "host=" "${servercfgfullpath}" | awk -F "=" '{ print $2 }' ) # Not Set port=${port:-"64738"} From dcebda85ca7e90c67c2d3e52afd7e272584a7137 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 19:31:49 +0200 Subject: [PATCH 095/246] mumble has a config file --- lgsm/functions/install_config.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 6cd4a7dc4..310399cca 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -270,7 +270,11 @@ elif [ "${gamename}" == "No More Room in Hell" ]; then fn_default_config_remote fn_set_config_vars elif [ "${gamename}" == "Mumble" ]; then - : + gamedirname="Mumble" + array_configs+=( murmur.ini ) + fn_fetch_default_config + fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Natural Selection 2" ]; then : elif [ "${gamename}" == "NS2: Combat" ]; then From 475fdc0523a75ce2c0042e37190cddba853fa751 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 19:58:03 +0200 Subject: [PATCH 096/246] mumble has a console Related #1136 --- lgsm/functions/core_getopt.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index e23ad3111..8c8801a29 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -300,6 +300,8 @@ case "${getopt}" in command_backup.sh;; dev|dev-debug) command_dev_debug.sh;; + c|console) + command_console.sh;; i|install) command_install.sh;; dd|detect-deps) @@ -329,6 +331,7 @@ case "${getopt}" in echo -e "${blue}details\t${default}dt |Displays useful information about the server." echo -e "${blue}postdetails\t${default}pd |Post stripped details to pastebin (for support)" echo -e "${blue}backup\t${default}b |Create archive of the server." + echo -e "${blue}debug\t${default}d |See the output of the server directly to your terminal." echo -e "${blue}install\t${default}i |Install the server." } | column -s $'\t' -t esac From 36c49850d16cb9bdea5912c04a74b887537cecd4 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 20:22:02 +0200 Subject: [PATCH 097/246] port is a variable Partially fixes #1136 dev hardcoded stuff was still being in code --- lgsm/functions/check_status.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_status.sh b/lgsm/functions/check_status.sh index f68fd9a52..08017c301 100644 --- a/lgsm/functions/check_status.sh +++ b/lgsm/functions/check_status.sh @@ -23,7 +23,7 @@ if [ "${gamename}" == "TeamSpeak 3" ]; then elif [ "${gamename}" == "Mumble" ]; then # 1: Server is listening # 0: Server is not listening, considered closed - mumblepid=$(netstat -nap 2>/dev/null | grep udp | grep 64738 | grep murmur | awk '{ print $6 }' | awk -F'/' '{ print $1 }') + mumblepid=$(netstat -nap 2>/dev/null | grep udp | grep ${port} | grep murmur | awk '{ print $6 }' | awk -F'/' '{ print $1 }') if [ -z "${mumblepid}" ]; then status=0 else From 8c0f2b967cc969d2b11f80d1cf0a5e487c7581d9 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 20:27:23 +0200 Subject: [PATCH 098/246] get info_config.sh to run #1136 needed to get the port --- lgsm/functions/check_status.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/check_status.sh b/lgsm/functions/check_status.sh index 08017c301..4a8a381b4 100644 --- a/lgsm/functions/check_status.sh +++ b/lgsm/functions/check_status.sh @@ -21,6 +21,8 @@ if [ "${gamename}" == "TeamSpeak 3" ]; then fi elif [ "${gamename}" == "Mumble" ]; then + # Get config info + info_config.sh # 1: Server is listening # 0: Server is not listening, considered closed mumblepid=$(netstat -nap 2>/dev/null | grep udp | grep ${port} | grep murmur | awk '{ print $6 }' | awk -F'/' '{ print $1 }') From 452d014ae05dbb1b152d46a53e64fda1c6120e3b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 20:28:53 +0200 Subject: [PATCH 099/246] Fixes #1136 --- lgsm/functions/command_stop.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index 08464b405..489013e3d 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -245,8 +245,10 @@ fn_stop_teamspeak3(){ } fn_stop_mumble(){ + # Get needed port info + info_config.sh fn_print_dots "Stopping ${servername}" - mumblepid=$(netstat -nap 2>/dev/null | grep udp | grep 64738 | grep murmur | awk '{ print $6 }' | awk -F'/' '{ print $1 }') + mumblepid=$(netstat -nap 2>/dev/null | grep udp | grep "${port}" | grep murmur | awk '{ print $6 }' | awk -F'/' '{ print $1 }') kill ${mumblepid} sleep 1 check_status.sh From 6c7ceb2fddc6924adfa2b5e9abb84174b5605656 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 21:22:11 +0200 Subject: [PATCH 100/246] cfg=servicename to prevent overwrite on update servercfg="${servicename}.ini" --- Mumble/mumbleserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index 4057d2825..9e2b022ec 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -59,7 +59,7 @@ filesdir="${rootdir}/serverfiles" systemdir="${filesdir}" executabledir="${filesdir}" executable="./murmur.x86" -servercfg="murmur.ini" +servercfg="${servicename}.ini" servercfgdefault="murmur.ini" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" From ebbe3f5a61ef96efc0270baabc33b322d52a965f Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 21:45:02 +0200 Subject: [PATCH 101/246] Don't start from tmux or screen --- lgsm/functions/command_start.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index f7f324bf1..cb444ab5c 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -9,6 +9,23 @@ local commandname="START" local commandaction="Starting" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" +fn_check_is_in_tmux(){ + if [ -n "${TMUX}" ];then + fn_print_fail_nl "Can't start a tmux session inside of a tmux session." + fn_script_log_fail "Can't start a tmux session inside of a tmux session." + fn_print_information_nl "LGSM already runs the server inside of a tmux session." + core_exit.sh + fi +} +fn_check_is_in_screen(){ + if [ "$TERM" = "screen" ];then + fn_print_fail_nl "Can't start a tmux session inside of a screen session." + fn_script_log_fail "Can't start a tmux session inside of a screen session." + fn_print_information_nl "LGSM already runs the server inside of a tmux session." + core_exit.sh + fi +} + fn_start_teamspeak3(){ if [ ! -e "${servercfgfullpath}" ]; then fn_print_warn_nl "${servercfgfullpath} is missing" @@ -165,6 +182,8 @@ fn_start_tmux(){ fn_print_dots "${servername}" sleep 1 +fn_check_is_in_tmux +fn_check_is_in_screen check.sh fix.sh info_config.sh From bea59e9cd101f5130aeaf9f45d7da5a351fda275 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 21:46:49 +0200 Subject: [PATCH 102/246] right script log Fixes #1117 --- lgsm/functions/command_start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index cb444ab5c..9f5aa295a 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -12,7 +12,7 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" fn_check_is_in_tmux(){ if [ -n "${TMUX}" ];then fn_print_fail_nl "Can't start a tmux session inside of a tmux session." - fn_script_log_fail "Can't start a tmux session inside of a tmux session." + fn_script_log_fatal "Can't start a tmux session inside of a tmux session." fn_print_information_nl "LGSM already runs the server inside of a tmux session." core_exit.sh fi From 2d86a9734072f3523956cf79df8cbbe0895e7777 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 21:48:29 +0200 Subject: [PATCH 103/246] fn_script_log_fatal & message --- lgsm/functions/command_start.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index 9f5aa295a..f3a6afdc2 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -13,15 +13,15 @@ fn_check_is_in_tmux(){ if [ -n "${TMUX}" ];then fn_print_fail_nl "Can't start a tmux session inside of a tmux session." fn_script_log_fatal "Can't start a tmux session inside of a tmux session." - fn_print_information_nl "LGSM already runs the server inside of a tmux session." + fn_print_information_nl "LGSM already runs the server inside of a tmux session whenever it's possible." core_exit.sh fi } fn_check_is_in_screen(){ if [ "$TERM" = "screen" ];then fn_print_fail_nl "Can't start a tmux session inside of a screen session." - fn_script_log_fail "Can't start a tmux session inside of a screen session." - fn_print_information_nl "LGSM already runs the server inside of a tmux session." + fn_script_log_fatal "Can't start a tmux session inside of a screen session." + fn_print_information_nl "LGSM already runs the server inside of a tmux session whenever it's possible." core_exit.sh fi } From 83fdf38410660d618be4e8d7cf31a46be7b0cd8d Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 19 Oct 2016 22:47:39 +0100 Subject: [PATCH 104/246] Tidy up --- lgsm/functions/info_config.sh | 56 +++++++++++++++++------------------ 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index dc7486c85..d5f283404 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -27,15 +27,15 @@ fn_info_config_avalanche(){ slots=$(grep "MaxPlayers" "${servercfgfullpath}" | grep -v "\--" | tr -cd '[:digit:]') port=$(grep "BindPort" "${servercfgfullpath}" | grep -v "\--" | tr -cd '[:digit:]') + ip=$(grep "BindIP" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/BindIP//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + ipsetinconfig=1 + ipinconfigvar="BindIP" + # Not Set servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} slots=${slots:-"0"} port=${port:-"0"} - - ip=$(grep "BindIP" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/BindIP//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - ipsetinconfig=1 - ipinconfigvar="BindIP" fi } @@ -54,15 +54,15 @@ fn_info_config_bf1942(){ port=$(grep "game.serverPort" "${servercfgfullpath}" | grep -v "\--" | tr -cd '[:digit:]') queryport="22000" + ip=$(grep "game.serverIP" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/game.serverIP//g' | tr -d '=\";,:' | xargs) + ipsetinconfig=1 + ipinconfigvar="game.serverIP" + # Not Set servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} slots=${slots:-"0"} port=${port:-"0"} - - ip=$(grep "game.serverIP" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/game.serverIP//g' | tr -d '=\";,:' | xargs) - ipsetinconfig=1 - ipinconfigvar="game.serverIP" fi } @@ -112,6 +112,10 @@ fn_info_config_minecraft(){ gamemode=$(grep "gamemode" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') gameworld=$(grep "level-name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/level-name//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + ip=$(grep "server-ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/server-ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + ipsetinconfig=1 + ipinconfigvar="server-ip" + # Not Set servername=${servername:-"NOT SET"} rconpassword=${rconpassword:-"NOT SET"} @@ -121,9 +125,6 @@ fn_info_config_minecraft(){ gamemode=${gamemode:-"NOT SET"} gameworld=${gameworld:-"NOT SET"} - ip=$(grep "server-ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/server-ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - ipsetinconfig=1 - ipinconfigvar="server-ip" fi } @@ -165,15 +166,15 @@ fn_info_config_quakelive(){ serverpassword=$(grep "g_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set g_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') slots=$(grep "sv_maxClients" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + ip=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + ipsetinconfig=1 + ipinconfigvar="set net_ip" + # Not Set rconpassword=${rconpassword:-"NOT SET"} servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} slots=${slots:-"0"} - - ip=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - ipsetinconfig=1 - ipinconfigvar="set net_ip" fi } @@ -191,6 +192,9 @@ fn_info_config_wolfensteinenemyterritory(){ serverpassword=$(grep "set g_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set g_password //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') slots=$(grep "set sv_maxclients" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') + ip=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + ipsetinconfig=1 + ipinconfigvar="set net_ip" # Not Set rconpassword=${rconpassword:-"NOT SET"} @@ -198,10 +202,6 @@ fn_info_config_wolfensteinenemyterritory(){ serverpassword=${serverpassword:-"NOT SET"} slots=${slots:-"0"} port=${port:-"27960"} - - ip=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - ipsetinconfig=1 - ipinconfigvar="set net_ip" fi } @@ -303,14 +303,14 @@ fn_info_config_teamspeak3(){ queryport=$(grep "query_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') fileport=$(grep "filetransfer_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + ip=$(grep "voice_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/voice_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + ipsetinconfig=1 + ipinconfigvar="voice_ip" + # Not Set port=${port:-"9987"} queryport=${queryport:-"10011"} fileport=${fileport:-"30033"} - - ip=$(grep "voice_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/voice_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - ipsetinconfig=1 - ipinconfigvar="voice_ip" fi } @@ -323,14 +323,14 @@ fn_info_config_mumble(){ port=$(grep "port" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/port//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') queryport="${port}" + ip=$(grep "host=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/host=//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + ipsetinconfig=1 + ipinconfigvar="voice_ip" + # Not Set port=${port:-"64738"} queryport=${queryport:-"64738"} servername="Mumble Port ${port}" - - ip=$(grep "host=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/host=//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - ipsetinconfig=1 - ipinconfigvar="voice_ip" fi } @@ -515,4 +515,4 @@ elif [ "${gamename}" == "7 Days To Die" ]; then fn_info_config_sdtd elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fn_info_config_wolfensteinenemyterritory -fi +fi \ No newline at end of file From 703bd28f2df67331352aa45dbdb9898a6b10aeb3 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 19 Oct 2016 23:03:37 +0100 Subject: [PATCH 105/246] tmuxception --- lgsm/functions/command_start.sh | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index f3a6afdc2..fdb4dcfc5 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -11,17 +11,21 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" fn_check_is_in_tmux(){ if [ -n "${TMUX}" ];then - fn_print_fail_nl "Can't start a tmux session inside of a tmux session." - fn_script_log_fatal "Can't start a tmux session inside of a tmux session." - fn_print_information_nl "LGSM already runs the server inside of a tmux session whenever it's possible." + fn_print_fail_nl "tmuxception error: Sorry Cobb you cannot start a tmux session inside of a tmux session." + fn_script_log_fatal "tmuxception error: Attempted to start a tmux session inside of a tmux session." + fn_print_information_nl "LGSM creates a tmux session when starting the server." + echo "It is not possible to run a tmux session inside another tmux session" + echo "https://github.com/GameServerManagers/LinuxGSM/wiki/Tmux#tmuxception" core_exit.sh fi } fn_check_is_in_screen(){ - if [ "$TERM" = "screen" ];then - fn_print_fail_nl "Can't start a tmux session inside of a screen session." - fn_script_log_fatal "Can't start a tmux session inside of a screen session." - fn_print_information_nl "LGSM already runs the server inside of a tmux session whenever it's possible." + if [ "$TERM" == "screen" ];then + fn_print_fail_nl "tmuxception error: Sorry Cobb you cannot start a tmux session inside of a screen session." + fn_script_log_fatal "tmuxception error: Attempted to start a tmux session inside of a screen session." + fn_print_information_nl "LGSM creates a tmux session when starting the server." + echo "It is not possible to run a tmux session inside screen session" + echo "https://github.com/GameServerManagers/LinuxGSM/wiki/Tmux#tmuxception" core_exit.sh fi } From 1a01ece469047fc2c7f657f994a033c63434b85d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 00:15:52 +0200 Subject: [PATCH 106/246] Introducing the tmuxception ! --- lgsm/functions/check_tmuxception.sh | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 lgsm/functions/check_tmuxception.sh diff --git a/lgsm/functions/check_tmuxception.sh b/lgsm/functions/check_tmuxception.sh new file mode 100644 index 000000000..4dfbd2a16 --- /dev/null +++ b/lgsm/functions/check_tmuxception.sh @@ -0,0 +1,29 @@ +#!/bin/bash +# LGSM check_config.sh function +# Author: Daniel Gibbs +# Contributor: UltimateByte +# Website: https://gameservermanagers.com +# Description: Checks if run from tmux or screen + +local commandname="check" + +fn_check_is_in_tmux(){ + if [ -n "${TMUX}" ];then + fn_print_fail_nl "tmuxception error: Sorry Cobb you cannot start a tmux session inside of a tmux session." + fn_script_log_fatal "tmuxception error: Attempted to start a tmux session inside of a tmux session." + fn_print_information_nl "LGSM creates a tmux session when starting the server." + echo "It is not possible to run a tmux session inside another tmux session" + echo "https://github.com/GameServerManagers/LinuxGSM/wiki/Tmux#tmuxception" + core_exit.sh + fi +} +fn_check_is_in_screen(){ + if [ "$TERM" == "screen" ];then + fn_print_fail_nl "tmuxception error: Sorry Cobb you cannot start a tmux session inside of a screen session." + fn_script_log_fatal "tmuxception error: Attempted to start a tmux session inside of a screen session." + fn_print_information_nl "LGSM creates a tmux session when starting the server." + echo "It is not possible to run a tmux session inside screen session" + echo "https://github.com/GameServerManagers/LinuxGSM/wiki/Tmux#tmuxception" + core_exit.sh + fi +} From 6fec42b7c18eba1862c8c6d0fba0067dbbd6cc23 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 00:16:44 +0200 Subject: [PATCH 107/246] tmuxception moved to check_tmuxception.sh --- lgsm/functions/command_start.sh | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index fdb4dcfc5..f7f324bf1 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -9,27 +9,6 @@ local commandname="START" local commandaction="Starting" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -fn_check_is_in_tmux(){ - if [ -n "${TMUX}" ];then - fn_print_fail_nl "tmuxception error: Sorry Cobb you cannot start a tmux session inside of a tmux session." - fn_script_log_fatal "tmuxception error: Attempted to start a tmux session inside of a tmux session." - fn_print_information_nl "LGSM creates a tmux session when starting the server." - echo "It is not possible to run a tmux session inside another tmux session" - echo "https://github.com/GameServerManagers/LinuxGSM/wiki/Tmux#tmuxception" - core_exit.sh - fi -} -fn_check_is_in_screen(){ - if [ "$TERM" == "screen" ];then - fn_print_fail_nl "tmuxception error: Sorry Cobb you cannot start a tmux session inside of a screen session." - fn_script_log_fatal "tmuxception error: Attempted to start a tmux session inside of a screen session." - fn_print_information_nl "LGSM creates a tmux session when starting the server." - echo "It is not possible to run a tmux session inside screen session" - echo "https://github.com/GameServerManagers/LinuxGSM/wiki/Tmux#tmuxception" - core_exit.sh - fi -} - fn_start_teamspeak3(){ if [ ! -e "${servercfgfullpath}" ]; then fn_print_warn_nl "${servercfgfullpath} is missing" @@ -186,8 +165,6 @@ fn_start_tmux(){ fn_print_dots "${servername}" sleep 1 -fn_check_is_in_tmux -fn_check_is_in_screen check.sh fix.sh info_config.sh From 4ff780a194eac279f289ebda640cdfb7f177c716 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 00:29:23 +0200 Subject: [PATCH 108/246] welcome tmuxception fixes #1117 --- lgsm/functions/check.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/functions/check.sh b/lgsm/functions/check.sh index 751652c2f..25fead75b 100644 --- a/lgsm/functions/check.sh +++ b/lgsm/functions/check.sh @@ -11,6 +11,7 @@ local commandname="CHECK" # check.sh selects which checks to run by using arrays check_root.sh +check_tmuxception.sh check_permissions.sh if [ "${function_selfname}" != "command_install.sh" ]&&[ "${function_selfname}" != "command_update_functions.sh" ]; then From 8702431d33f6493d5989dcea6adcb0ea07a383e0 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 00:32:51 +0200 Subject: [PATCH 109/246] Fixes #1117 --- lgsm/functions/core_functions.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index 987ffcde9..5a38a1183 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -116,7 +116,7 @@ fn_fetch_core_dl } -# Command +# Commands command_console.sh(){ functionfile="${FUNCNAME}" @@ -263,6 +263,11 @@ functionfile="${FUNCNAME}" fn_fetch_function } +check_tmuxception.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + # Compress @@ -299,6 +304,7 @@ functionfile="${FUNCNAME}" fn_fetch_function } + # Fix fix.sh(){ From 4aa8544dfadeed74c1aaf62f8fe7809cf8db6d95 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 19 Oct 2016 23:32:53 +0100 Subject: [PATCH 110/246] Its called folders in Windows & directorys in Linux --- lgsm/functions/check_permissions.sh | 4 ++-- lgsm/functions/command_fastdl.sh | 24 ++++++++++++------------ lgsm/functions/core_getopt.sh | 2 +- lgsm/functions/install_config.sh | 4 ++-- lgsm/functions/logs.sh | 4 ++-- 5 files changed, 19 insertions(+), 19 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 0822c160e..a99bb0b7b 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -3,7 +3,7 @@ # Author: Daniel Gibbs # Contributor: UltimateByte # Website: https://gameservermanagers.com -# Description: Checks ownership & permissions of scripts, files and folders. +# Description: Checks ownership & permissions of scripts, files and directorys. local commandname="CHECK" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" @@ -66,7 +66,7 @@ fn_check_permissions(){ # Check rootdir permissions if [ -n "${rootdir}" ]; then - # Get permission numbers on folder under the form 775 + # Get permission numbers on directory under the form 775 rootdirperm="$(stat -c %a "${rootdir}")" # Grab the first and second digit for user and group permission userrootdirperm="${rootdirperm:0:1}" diff --git a/lgsm/functions/command_fastdl.sh b/lgsm/functions/command_fastdl.sh index f2728ea74..4afe3ba60 100644 --- a/lgsm/functions/command_fastdl.sh +++ b/lgsm/functions/command_fastdl.sh @@ -3,7 +3,7 @@ # Author: Daniel Gibbs # Contributor: UltimateByte # Website: https://gameservermanagers.com -# Description: Creates a FastDL folder. +# Description: Creates a FastDL directory. local commandname="FASTDL" local commandaction="FastDL" @@ -52,7 +52,7 @@ fn_fastdl_init(){ done fn_script_log "Initiating FastDL creation" - # Check and create folders + # Check and create directorys if [ ! -d "${webdir}" ]; then echo "" fn_print_info "Creating FastDL directories" @@ -67,7 +67,7 @@ fn_fastdl_init(){ echo -en "\n" fi if [ ! -d "${fastdldir}" ]; then - # No folder, won't ask for removing old ones + # No directory, won't ask for removing old ones newfastdl=1 fn_print_dots "Creating fastdl directory" sleep 0.5 @@ -88,7 +88,7 @@ fn_fastdl_config(){ fn_script_log "Configuration" sleep 2 echo -en "\n" - # Prompt for clearing old files if folder was already here + # Prompt for clearing old files if directory was already here if [ -n "${newfastdl}" ] && [ "${newfastdl}" == "0" ]; then fn_print_dots while true; do @@ -133,12 +133,12 @@ fn_fastdl_gmod_config(){ fn_clear_old_fastdl(){ # Clearing old FastDL if user answered yes if [ "${clearoldfastdl}" == "on" ]; then - fn_print_info "Clearing existing FastDL folder" - fn_script_log "Clearing existing FastDL folder" + fn_print_info "Clearing existing FastDL directory" + fn_script_log "Clearing existing FastDL directory" sleep 0.5 rm -R "${fastdldir:?}"/* - fn_print_ok "Old FastDL folder cleared" - fn_script_log "Old FastDL folder cleared" + fn_print_ok "Old FastDL directory cleared" + fn_script_log "Old FastDL directory cleared" sleep 1 echo -en "\n" fi @@ -152,7 +152,7 @@ fn_gmod_fastdl(){ sleep 1 echo -en "\n" - # No choice to cd to the directory, as find can't then display relative folder + # No choice to cd to the directory, as find can't then display relative directory cd "${systemdir}" # Map Files @@ -221,7 +221,7 @@ fn_gmod_fastdl(){ # Going back to rootdir in order to prevent mistakes cd "${rootdir}" - # Correct addons folder structure for FastDL + # Correct addons directory structure for FastDL if [ -d "${fastdldir}/addons" ]; then fn_print_info "Adjusting addons' file structure" fn_script_log "Adjusting addon's file structure" @@ -233,7 +233,7 @@ fn_gmod_fastdl(){ echo -en "\n" fi - # Correct content that may be into a lua folder by mistake like some darkrpmodification addons + # Correct content that may be into a lua directory by mistake like some darkrpmodification addons if [ -d "${fastdldir}/lua" ]; then fn_print_dots "Typical DarkRP shit detected, fixing" sleep 2 @@ -244,7 +244,7 @@ fn_gmod_fastdl(){ fi } -# Generate lua file that will force download any file into the FastDL folder +# Generate lua file that will force download any file into the FastDL directory fn_lua_fastdl(){ # Remove lua file if luaressource is turned off and file exists echo "" diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index 8c8801a29..217650dbc 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -408,7 +408,7 @@ case "${getopt}" in echo -e "${blue}debug\t${default}d |See the output of the server directly to your terminal." echo -e "${blue}install\t${default}i |Install the server." echo -e "${blue}auto-install\t${default}ai |Install the server, without prompts." - echo -e "${blue}fastdl\t${default}fd |Generates or update a FastDL folder for your server." + echo -e "${blue}fastdl\t${default}fd |Generates or update a FastDL directory for your server." } | column -s $'\t' -t esac } diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 310399cca..5c241aec5 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -39,8 +39,8 @@ fn_set_config_vars(){ # Checks if cfg dir exists, creates it if it doesn't fn_check_cfgdir(){ if [ ! -d "${servercfgdir}" ]; then - echo "creating ${servercfgdir} config folder." - fn_script_log_info "creating ${servercfgdir} config folder." + echo "creating ${servercfgdir} config directory." + fn_script_log_info "creating ${servercfgdir} config directory." mkdir -pv "${servercfgdir}" fi } diff --git a/lgsm/functions/logs.sh b/lgsm/functions/logs.sh index b31bdc102..4bf9ab903 100644 --- a/lgsm/functions/logs.sh +++ b/lgsm/functions/logs.sh @@ -15,7 +15,7 @@ if [ -n "${consolelog}" ]; then fi fi -# For games not displaying a console, and having logs into their game folder +# For games not displaying a console, and having logs into their game directory if [ "${function_selfname}" == "command_start.sh" ] && [ -n "${gamelogfile}" ]; then if [ -n "$(find "${systemdir}" -name "gamelog*.log")" ]; then fn_print_info "Moving game logs to ${gamelogdir}" @@ -86,7 +86,7 @@ if [ $(find "${scriptlogdir}"/ -type f -mtime +"${logdays}"|wc -l) -ne "0" ]; th find "${legacyserverlogdir}"/ -type f -mtime +"${logdays}"| tee >> "${scriptlog}" legacycount=$(find "${legacyserverlogdir}"/ -type f -mtime +"${logdays}"|wc -l) find "${legacyserverlogdir}"/ -mtime +"${logdays}" -type f -exec rm -f {} \; - # Remove folder if empty + # Remove directory if empty if [ ! "$(ls -A "${legacyserverlogdir}")" ]; then rm -rf "${legacyserverlogdir}" fi From f3b128a0022cb3e578e90a34d20e9e837d5fa990 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 19 Oct 2016 23:35:08 +0100 Subject: [PATCH 111/246] Bad spelling: directories not directorys --- lgsm/functions/check_permissions.sh | 2 +- lgsm/functions/command_fastdl.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index a99bb0b7b..1411e649c 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -3,7 +3,7 @@ # Author: Daniel Gibbs # Contributor: UltimateByte # Website: https://gameservermanagers.com -# Description: Checks ownership & permissions of scripts, files and directorys. +# Description: Checks ownership & permissions of scripts, files and directories. local commandname="CHECK" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" diff --git a/lgsm/functions/command_fastdl.sh b/lgsm/functions/command_fastdl.sh index 4afe3ba60..c66834b98 100644 --- a/lgsm/functions/command_fastdl.sh +++ b/lgsm/functions/command_fastdl.sh @@ -52,7 +52,7 @@ fn_fastdl_init(){ done fn_script_log "Initiating FastDL creation" - # Check and create directorys + # Check and create directories if [ ! -d "${webdir}" ]; then echo "" fn_print_info "Creating FastDL directories" From b7b2d6e3788319f03075a7c39e96668be5253f31 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 00:38:07 +0200 Subject: [PATCH 112/246] run the tmuxception #1117 --- lgsm/functions/check_tmuxception.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lgsm/functions/check_tmuxception.sh b/lgsm/functions/check_tmuxception.sh index 4dfbd2a16..d23fd88a4 100644 --- a/lgsm/functions/check_tmuxception.sh +++ b/lgsm/functions/check_tmuxception.sh @@ -27,3 +27,6 @@ fn_check_is_in_screen(){ core_exit.sh fi } + +fn_check_is_in_tmux +fn_check_is_in_screen From 25499860b7b886a75552ca13fedba8e76d19b39e Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 00:40:50 +0200 Subject: [PATCH 113/246] check_tmux.sh has moved to check_deps.sh Script doesn't exist anymore --- lgsm/functions/core_functions.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index 5a38a1183..9456f0955 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -258,11 +258,6 @@ functionfile="${FUNCNAME}" fn_fetch_function } -check_tmux.sh(){ -functionfile="${FUNCNAME}" -fn_fetch_function -} - check_tmuxception.sh(){ functionfile="${FUNCNAME}" fn_fetch_function From 5c5ad3ea03d90ceac0dc53717d749f5ccefc47aa Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 00:43:05 +0200 Subject: [PATCH 114/246] fix_ut99.sh has moved in another function --- lgsm/functions/core_functions.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index 9456f0955..f5ba4ce9e 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -544,11 +544,6 @@ functionfile="${FUNCNAME}" fn_fetch_function } -fix_ut99.sh(){ -functionfile="${FUNCNAME}" -fn_fetch_function -} - # Calls the global Ctrl-C trap core_trap.sh From 1f0c6d96030c337f1e6a8d03df06d2fde374882f Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 02:43:31 +0200 Subject: [PATCH 115/246] First shot for #1098 --- lgsm/functions/command_backup.sh | 55 +++++++++++++++++++++++++++++--- 1 file changed, 51 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index ca6fe9607..369228ab1 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -9,10 +9,24 @@ local commandaction="Backup" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh +# Check if a backup is pending or has been aborted using .backup.lock +if [ -f "${tmdpdir}/.backup.lock" ]; then + fn_print_warning_nl "A backup is currently pending or has been aborted." + while true; do + read -e -i "y" -p "Continue anyway? [Y/N]" yn + case $yn in + [Yy]* ) break;; + [Nn]* ) echo Exiting; return;; + * ) echo "Please answer yes or no.";; + esac + done +fi info_distro.sh -backupname="${servicename}-$(date '+%Y-%m-%d-%H%M%S')" fn_print_dots "" sleep 0.5 +# Prepare backup file name with servicename current date +backupname="${servicename}-$(date '+%Y-%m-%d-%H%M%S')" +# Tells how much will be compressed using rootdirduexbackup value from info_distro fn_print_info_nl "A total of ${rootdirduexbackup} will be compressed into the following backup:" echo "${backupdir}/${backupname}.tar.gz" echo "" @@ -33,8 +47,8 @@ if [ "${status}" != "0" ]; then while true; do read -p "Stop ${servicename} while running the backup? [Y/N]" yn case $yn in - [Yy]* ) command_stop.sh; break;; - [Nn]* ) break;; + [Yy]* ) command_stop.sh; serverstopped="yes"; break;; + [Nn]* ) serverstopped="no"; break;; * ) echo "Please answer yes or no.";; esac done @@ -42,14 +56,47 @@ fi fn_print_dots "Backup in progress, please wait..." fn_script_log_info "Started backup" -sleep 2 +sleep 1 if [ ! -d "${backupdir}" ]; then mkdir "${backupdir}" fi +# Create lockfile +touch "${tmdpdir}/.backup.lock" +# Compressing files tar -czf "${backupdir}/${backupname}.tar.gz" -C "${rootdir}" --exclude "backups" ./* +# Remove lockfile +rm "${tmdpdir}/.backup.lock" +# Check tar exit code and act accordingly if [ $? == 0 ]; then fn_print_ok_nl "Backup created: ${backupname}.tar.gz is $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}') size" fn_script_log_pass "Backup created: ${backupdir}/${backupname}.tar.gz is $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}') size" + + # Clear old backups if backupdays variable exists + if [ -n "${backupdays}" ]; then + # Count how many backups can be cleared + backupclearcount=$(find "${backupdir}"/ -type f -mtime +"${backupdays}"|wc -l) + # Check if there is any backup to clear + if [ "${backupclearcount}" -ne "0" ]; then + fn_print_info_nl "${backupclearcount} backups older than ${backupdays} days can be cleared." + while true; do + read -p "Clear older backups? [Y/N]" yn + case $yn in + [Yy]* ) clearoldbackups="yes"; break;; + [Nn]* ) clearoldbackups="no"; break;; + * ) echo "Please answer yes or no.";; + esac + done + # If user wants to clear backups + if [ "${clearoldbackups}" == "yes" ]; then + find "${backupdir}"/ -mtime +"${backupdays}" -type f -exec rm -f {} \; + fn_print_ok_nl "Cleared ${backupclearcount} backups." + fi + fi + fi + # Restart the server if it was stopped for the backup + if [ "${serverstopped}" == "yes" ]; then + command_start.sh + fi else fn_print_error_nl "Backup failed: ${backupname}.tar.gz" fn_script_log_error "Backup failed: ${backupname}.tar.gz" From 119a2cefa0432e4e5a2b429b1a9a991490f583e5 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 02:55:23 +0200 Subject: [PATCH 116/246] typo and spacing --- lgsm/functions/command_backup.sh | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 369228ab1..cdcb51856 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -9,8 +9,9 @@ local commandaction="Backup" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh +backuplock= # Check if a backup is pending or has been aborted using .backup.lock -if [ -f "${tmdpdir}/.backup.lock" ]; then +if [ -f "${tmpdir}/.backup.lock" ]; then fn_print_warning_nl "A backup is currently pending or has been aborted." while true; do read -e -i "y" -p "Continue anyway? [Y/N]" yn @@ -29,7 +30,6 @@ backupname="${servicename}-$(date '+%Y-%m-%d-%H%M%S')" # Tells how much will be compressed using rootdirduexbackup value from info_distro fn_print_info_nl "A total of ${rootdirduexbackup} will be compressed into the following backup:" echo "${backupdir}/${backupname}.tar.gz" -echo "" while true; do read -e -i "y" -p "Continue? [Y/N]" yn case $yn in @@ -38,7 +38,6 @@ while true; do * ) echo "Please answer yes or no.";; esac done -echo "" check_status.sh if [ "${status}" != "0" ]; then echo "" @@ -61,11 +60,11 @@ if [ ! -d "${backupdir}" ]; then mkdir "${backupdir}" fi # Create lockfile -touch "${tmdpdir}/.backup.lock" +touch "${tmpdir}/.backup.lock" # Compressing files tar -czf "${backupdir}/${backupname}.tar.gz" -C "${rootdir}" --exclude "backups" ./* # Remove lockfile -rm "${tmdpdir}/.backup.lock" +rm "${tmpdir}/.backup.lock" # Check tar exit code and act accordingly if [ $? == 0 ]; then fn_print_ok_nl "Backup created: ${backupname}.tar.gz is $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}') size" @@ -101,6 +100,5 @@ else fn_print_error_nl "Backup failed: ${backupname}.tar.gz" fn_script_log_error "Backup failed: ${backupname}.tar.gz" fi -sleep 1 -echo "" +sleep 0.5 core_exit.sh From f7571bd13916bcfc338f55e408903d814136a724 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 03:09:04 +0200 Subject: [PATCH 117/246] empty variable --- lgsm/functions/command_backup.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index cdcb51856..3cd3b7d44 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -9,7 +9,6 @@ local commandaction="Backup" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh -backuplock= # Check if a backup is pending or has been aborted using .backup.lock if [ -f "${tmpdir}/.backup.lock" ]; then fn_print_warning_nl "A backup is currently pending or has been aborted." From 4c8b1f45a2bc9d8d548262073c39f8ba215e1ef8 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 03:27:21 +0200 Subject: [PATCH 118/246] If there are backups in backup dir. Fixes #1140 --- lgsm/functions/info_distro.sh | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/lgsm/functions/info_distro.sh b/lgsm/functions/info_distro.sh index a203a2c47..3416e8133 100644 --- a/lgsm/functions/info_distro.sh +++ b/lgsm/functions/info_distro.sh @@ -105,19 +105,21 @@ fi ## Backup info if [ -d "${backupdir}" ]; then - # used space in backups dir. + # Ued space in backups dir. backupdirdu=$(du -sh "${backupdir}" | awk '{print $1}') + # If no backup dir, size is 0M if [ -z "${backupdirdu}" ]; then backupdirdu="0M" fi - - # number of backups. - backupcount=$(find "${backupdir}"/*.tar.gz | wc -l) - # most recent backup. - lastbackup=$(ls -t "${backupdir}"/*.tar.gz | head -1) - # date of most recent backup. - lastbackupdate=$(date -r "${lastbackup}") - # size of most recent backup. - lastbackupsize=$(du -h "${lastbackup}" | awk '{print $1}') - + # If there are backups in backup dir. + if [ $(find "${backupdir}" -name "*.tar.gz" | wc -l) -ne "0" ]; then + # number of backups. + backupcount=$(find "${backupdir}"/*.tar.gz | wc -l) + # most recent backup. + lastbackup=$(ls -t "${backupdir}"/*.tar.gz | head -1) + # date of most recent backup. + lastbackupdate=$(date -r "${lastbackup}") + # size of most recent backup. + lastbackupsize=$(du -h "${lastbackup}" | awk '{print $1}') + fi fi From 13f5f661b1777ce4832b5c898e6a3c0c00bd5acd Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 15:01:22 +0200 Subject: [PATCH 119/246] mainly imrpoves logging #1098 --- lgsm/functions/command_backup.sh | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 3cd3b7d44..ea51fe415 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -9,38 +9,43 @@ local commandaction="Backup" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh +fn_print_header # Check if a backup is pending or has been aborted using .backup.lock if [ -f "${tmpdir}/.backup.lock" ]; then - fn_print_warning_nl "A backup is currently pending or has been aborted." + fn_print_warning_nl "A backup is currently running or has been aborted." + fn_script_log_warn "A backup is currently running or has been aborted." while true; do read -e -i "y" -p "Continue anyway? [Y/N]" yn case $yn in - [Yy]* ) break;; - [Nn]* ) echo Exiting; return;; + [Yy]* ) fn_script_log "User continues anyway"; break;; + [Nn]* ) echo Exiting; fn_script_log "User aborted"; return;; * ) echo "Please answer yes or no.";; esac done fi -info_distro.sh fn_print_dots "" sleep 0.5 # Prepare backup file name with servicename current date backupname="${servicename}-$(date '+%Y-%m-%d-%H%M%S')" -# Tells how much will be compressed using rootdirduexbackup value from info_distro +# Tells how much will be compressed using rootdirduexbackup value from info_distro and prompt for continue +info_distro.sh fn_print_info_nl "A total of ${rootdirduexbackup} will be compressed into the following backup:" echo "${backupdir}/${backupname}.tar.gz" while true; do read -e -i "y" -p "Continue? [Y/N]" yn case $yn in [Yy]* ) break;; - [Nn]* ) echo Exiting; return;; + [Nn]* ) echo "Exiting"; fn_script_log "User aborted"; return;; * ) echo "Please answer yes or no.";; esac done + +# Check if server is started check_status.sh if [ "${status}" != "0" ]; then echo "" fn_print_warning_nl "${servicename} is currently running." + sleep 1 while true; do read -p "Stop ${servicename} while running the backup? [Y/N]" yn @@ -60,12 +65,16 @@ if [ ! -d "${backupdir}" ]; then fi # Create lockfile touch "${tmpdir}/.backup.lock" +fn_script_log "Lockfile created" # Compressing files +fn_script_log "Compressing ${rootdirduexbackup}". tar -czf "${backupdir}/${backupname}.tar.gz" -C "${rootdir}" --exclude "backups" ./* # Remove lockfile rm "${tmpdir}/.backup.lock" +fn_script_log "Lockfile removed" # Check tar exit code and act accordingly if [ $? == 0 ]; then + # Exit code doesn't report any error fn_print_ok_nl "Backup created: ${backupname}.tar.gz is $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}') size" fn_script_log_pass "Backup created: ${backupdir}/${backupname}.tar.gz is $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}') size" @@ -76,11 +85,12 @@ if [ $? == 0 ]; then # Check if there is any backup to clear if [ "${backupclearcount}" -ne "0" ]; then fn_print_info_nl "${backupclearcount} backups older than ${backupdays} days can be cleared." + fn_script_log "${backupclearcount} backups older than ${backupdays} days can be cleared." while true; do read -p "Clear older backups? [Y/N]" yn case $yn in [Yy]* ) clearoldbackups="yes"; break;; - [Nn]* ) clearoldbackups="no"; break;; + [Nn]* ) clearoldbackups="no"; fn_script_log "User didn't clear backups"; break;; * ) echo "Please answer yes or no.";; esac done @@ -96,6 +106,7 @@ if [ $? == 0 ]; then command_start.sh fi else + # Exit code reports an error fn_print_error_nl "Backup failed: ${backupname}.tar.gz" fn_script_log_error "Backup failed: ${backupname}.tar.gz" fi From 7df6c286e231c70cdc6459382578aafef7a91930 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 15:42:47 +0200 Subject: [PATCH 120/246] Better logging, output & compatibility #1098 Also improved compatibility with older lgsm versions Commit for testing --- lgsm/functions/command_backup.sh | 51 ++++++++++++++++++++++++-------- 1 file changed, 39 insertions(+), 12 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index ea51fe415..63cef9b42 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -10,6 +10,7 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh fn_print_header +fn_script_log "Backup initiated" # Check if a backup is pending or has been aborted using .backup.lock if [ -f "${tmpdir}/.backup.lock" ]; then fn_print_warning_nl "A backup is currently running or has been aborted." @@ -22,6 +23,7 @@ if [ -f "${tmpdir}/.backup.lock" ]; then * ) echo "Please answer yes or no.";; esac done +echo "" fi fn_print_dots "" sleep 0.5 @@ -30,11 +32,13 @@ backupname="${servicename}-$(date '+%Y-%m-%d-%H%M%S')" # Tells how much will be compressed using rootdirduexbackup value from info_distro and prompt for continue info_distro.sh fn_print_info_nl "A total of ${rootdirduexbackup} will be compressed into the following backup:" +fn_script_log "A total of ${rootdirduexbackup} will be compressed into the following backup:" echo "${backupdir}/${backupname}.tar.gz" +echo "" while true; do - read -e -i "y" -p "Continue? [Y/N]" yn + read -e -i "y" -p "Continue? [Y/n]" yn case $yn in - [Yy]* ) break;; + [Yy]* ) fn_script_log "User validates"; break;; [Nn]* ) echo "Exiting"; fn_script_log "User aborted"; return;; * ) echo "Please answer yes or no.";; esac @@ -45,13 +49,13 @@ check_status.sh if [ "${status}" != "0" ]; then echo "" fn_print_warning_nl "${servicename} is currently running." - + fin_script_log_warning "${servicename} is currently running." sleep 1 while true; do - read -p "Stop ${servicename} while running the backup? [Y/N]" yn + read -p -e -i "n" "Stop ${servicename} while running the backup? [y/N]" yn case $yn in - [Yy]* ) command_stop.sh; serverstopped="yes"; break;; - [Nn]* ) serverstopped="no"; break;; + [Yy]* ) fn_script_log "Stopping the server"; command_stop.sh; serverstopped="yes"; break;; + [Nn]* ) fn_script_log "Not stopping the server"; serverstopped="no"; break;; * ) echo "Please answer yes or no.";; esac done @@ -60,18 +64,36 @@ fi fn_print_dots "Backup in progress, please wait..." fn_script_log_info "Started backup" sleep 1 + +# Directories creation +# Create backupdir if it doesn't exist if [ ! -d "${backupdir}" ]; then + fn_print_info_nl "Creating ${backupdir}" + fn_script_log_info "Creating ${backupdir}" mkdir "${backupdir}" fi +# Create tmpdir if it doesn't exist +if [ -n "${tmpdir}" ]&&[ ! -d "${tmpdir}" ]; then + fn_print_info_nl "Creating ${tmpdir}" + fn_script_log "Creating ${tmpdir}" + mkdir -p "${tmpdir}" +fi # Create lockfile -touch "${tmpdir}/.backup.lock" -fn_script_log "Lockfile created" +if [ -d "${tmpdir}" ]; then + touch "${tmpdir}/.backup.lock" + fn_script_log "Lockfile created" +fi + # Compressing files fn_script_log "Compressing ${rootdirduexbackup}". tar -czf "${backupdir}/${backupname}.tar.gz" -C "${rootdir}" --exclude "backups" ./* + # Remove lockfile -rm "${tmpdir}/.backup.lock" -fn_script_log "Lockfile removed" +if [ -d "${tmpdir}" ]; then + rm "${tmpdir}/.backup.lock" + fn_script_log "Lockfile removed" +fi + # Check tar exit code and act accordingly if [ $? == 0 ]; then # Exit code doesn't report any error @@ -87,10 +109,10 @@ if [ $? == 0 ]; then fn_print_info_nl "${backupclearcount} backups older than ${backupdays} days can be cleared." fn_script_log "${backupclearcount} backups older than ${backupdays} days can be cleared." while true; do - read -p "Clear older backups? [Y/N]" yn + read -p -e"Clear older backups? [Y/N]" yn case $yn in [Yy]* ) clearoldbackups="yes"; break;; - [Nn]* ) clearoldbackups="no"; fn_script_log "User didn't clear backups"; break;; + [Nn]* ) clearoldbackups="no"; fn_script_log "Not clearing backups"; break;; * ) echo "Please answer yes or no.";; esac done @@ -98,8 +120,13 @@ if [ $? == 0 ]; then if [ "${clearoldbackups}" == "yes" ]; then find "${backupdir}"/ -mtime +"${backupdays}" -type f -exec rm -f {} \; fn_print_ok_nl "Cleared ${backupclearcount} backups." + fn_script_log_pass "Cleared ${backupclearcount} backups." fi + else + fn_script_log "No backups older than ${backupdays} days were found." fi + else + fn_script_log "No backups to clear since backupdays variable is empty." fi # Restart the server if it was stopped for the backup if [ "${serverstopped}" == "yes" ]; then From 98614ce2402a4b44728e977368d803a883f051ba Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 16:07:08 +0200 Subject: [PATCH 121/246] typo & prompt fixes --- lgsm/functions/command_backup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 63cef9b42..e84a7b7b1 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -49,10 +49,10 @@ check_status.sh if [ "${status}" != "0" ]; then echo "" fn_print_warning_nl "${servicename} is currently running." - fin_script_log_warning "${servicename} is currently running." + fn_script_log_warn "${servicename} is currently running." sleep 1 while true; do - read -p -e -i "n" "Stop ${servicename} while running the backup? [y/N]" yn + read -e -i "n" -p "Stop ${servicename} while running the backup? [y/N]" yn case $yn in [Yy]* ) fn_script_log "Stopping the server"; command_stop.sh; serverstopped="yes"; break;; [Nn]* ) fn_script_log "Not stopping the server"; serverstopped="no"; break;; From 22e92085e0d95fbcc33ba0ff4c1bf623276415f4 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 16:27:56 +0200 Subject: [PATCH 122/246] logging & delays --- lgsm/functions/command_backup.sh | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index e84a7b7b1..d094f39e9 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -10,7 +10,7 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh fn_print_header -fn_script_log "Backup initiated" +fn_script_log "Entering backup" # Check if a backup is pending or has been aborted using .backup.lock if [ -f "${tmpdir}/.backup.lock" ]; then fn_print_warning_nl "A backup is currently running or has been aborted." @@ -32,7 +32,7 @@ backupname="${servicename}-$(date '+%Y-%m-%d-%H%M%S')" # Tells how much will be compressed using rootdirduexbackup value from info_distro and prompt for continue info_distro.sh fn_print_info_nl "A total of ${rootdirduexbackup} will be compressed into the following backup:" -fn_script_log "A total of ${rootdirduexbackup} will be compressed into the following backup:" +fn_script_log "A total of ${rootdirduexbackup} will be compressed into the following backup: ${backupdir}/${backupname}.tar.gz" echo "${backupdir}/${backupname}.tar.gz" echo "" while true; do @@ -50,20 +50,20 @@ if [ "${status}" != "0" ]; then echo "" fn_print_warning_nl "${servicename} is currently running." fn_script_log_warn "${servicename} is currently running." - sleep 1 + sleep 0.5 while true; do read -e -i "n" -p "Stop ${servicename} while running the backup? [y/N]" yn case $yn in - [Yy]* ) fn_script_log "Stopping the server"; command_stop.sh; serverstopped="yes"; break;; - [Nn]* ) fn_script_log "Not stopping the server"; serverstopped="no"; break;; + [Yy]* ) fn_script_log "User choose to stop the server"; command_stop.sh; serverstopped="yes"; break;; + [Nn]* ) fn_script_log "User choose to not stop the server"; serverstopped="no"; break;; * ) echo "Please answer yes or no.";; esac done fi fn_print_dots "Backup in progress, please wait..." -fn_script_log_info "Started backup" -sleep 1 +fn_script_log_info "Initiating backup" +sleep 0.5 # Directories creation # Create backupdir if it doesn't exist @@ -85,8 +85,9 @@ if [ -d "${tmpdir}" ]; then fi # Compressing files -fn_script_log "Compressing ${rootdirduexbackup}". +fn_script_log "Compressing ${rootdirduexbackup}..." tar -czf "${backupdir}/${backupname}.tar.gz" -C "${rootdir}" --exclude "backups" ./* +fn_script_log "Compression over." # Remove lockfile if [ -d "${tmpdir}" ]; then From 0ce093960787e0d9af8c8fba1f7733cc17ba9afb Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 16:35:26 +0200 Subject: [PATCH 123/246] exitbypass=1 --- lgsm/functions/command_backup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index d094f39e9..fa2c9dd7e 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -54,7 +54,7 @@ if [ "${status}" != "0" ]; then while true; do read -e -i "n" -p "Stop ${servicename} while running the backup? [y/N]" yn case $yn in - [Yy]* ) fn_script_log "User choose to stop the server"; command_stop.sh; serverstopped="yes"; break;; + [Yy]* ) exitbypass=1; fn_script_log "User choose to stop the server"; command_stop.sh; serverstopped="yes"; break;; [Nn]* ) fn_script_log "User choose to not stop the server"; serverstopped="no"; break;; * ) echo "Please answer yes or no.";; esac @@ -131,6 +131,7 @@ if [ $? == 0 ]; then fi # Restart the server if it was stopped for the backup if [ "${serverstopped}" == "yes" ]; then + exitbypass=1 command_start.sh fi else From 645bd18e2c5c002cd29b1b40ee50486584f0b12b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 16:49:11 +0200 Subject: [PATCH 124/246] removed ending dots in script logs --- lgsm/functions/command_backup.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index fa2c9dd7e..44cf937a3 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -14,7 +14,7 @@ fn_script_log "Entering backup" # Check if a backup is pending or has been aborted using .backup.lock if [ -f "${tmpdir}/.backup.lock" ]; then fn_print_warning_nl "A backup is currently running or has been aborted." - fn_script_log_warn "A backup is currently running or has been aborted." + fn_script_log_warn "A backup is currently running or has been aborted" while true; do read -e -i "y" -p "Continue anyway? [Y/N]" yn case $yn in @@ -49,7 +49,7 @@ check_status.sh if [ "${status}" != "0" ]; then echo "" fn_print_warning_nl "${servicename} is currently running." - fn_script_log_warn "${servicename} is currently running." + fn_script_log_warn "${servicename} is currently running" sleep 0.5 while true; do read -e -i "n" -p "Stop ${servicename} while running the backup? [y/N]" yn @@ -85,9 +85,9 @@ if [ -d "${tmpdir}" ]; then fi # Compressing files -fn_script_log "Compressing ${rootdirduexbackup}..." +fn_script_log "Compressing ${rootdirduexbackup}" tar -czf "${backupdir}/${backupname}.tar.gz" -C "${rootdir}" --exclude "backups" ./* -fn_script_log "Compression over." +fn_script_log "Compression over" # Remove lockfile if [ -d "${tmpdir}" ]; then @@ -108,7 +108,7 @@ if [ $? == 0 ]; then # Check if there is any backup to clear if [ "${backupclearcount}" -ne "0" ]; then fn_print_info_nl "${backupclearcount} backups older than ${backupdays} days can be cleared." - fn_script_log "${backupclearcount} backups older than ${backupdays} days can be cleared." + fn_script_log "${backupclearcount} backups older than ${backupdays} days can be cleared" while true; do read -p -e"Clear older backups? [Y/N]" yn case $yn in @@ -121,13 +121,13 @@ if [ $? == 0 ]; then if [ "${clearoldbackups}" == "yes" ]; then find "${backupdir}"/ -mtime +"${backupdays}" -type f -exec rm -f {} \; fn_print_ok_nl "Cleared ${backupclearcount} backups." - fn_script_log_pass "Cleared ${backupclearcount} backups." + fn_script_log_pass "Cleared ${backupclearcount} backups" fi else - fn_script_log "No backups older than ${backupdays} days were found." + fn_script_log "No backups older than ${backupdays} days were found" fi else - fn_script_log "No backups to clear since backupdays variable is empty." + fn_script_log "No backups to clear since backupdays variable is empty" fi # Restart the server if it was stopped for the backup if [ "${serverstopped}" == "yes" ]; then From d3c94296448f3cc77b83043febd4047e53384f66 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:22:44 +0200 Subject: [PATCH 125/246] backupdays --- 7DaysToDie/sdtdserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index 07f7d555d..b6b6566b9 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -77,6 +77,9 @@ servercfg="${servicename}.xml" servercfgdefault="serverconfig.xml" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 1f571390f81332bf48e842820ee494663b087d26 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:33:29 +0200 Subject: [PATCH 126/246] backupdays --- ARKSurvivalEvolved/arkserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index efba11b51..5c3cf7756 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -82,6 +82,9 @@ servercfgdir="${systemdir}/Saved/Config/LinuxServer" servercfg="GameUserSettings.ini" servercfgfullpath="${servercfgdir}/${servercfg}" servercfgdefault="${servercfgdir}/GameUserSettings.ini" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From be6e70b850a55d5dca75787678d9773316f57684 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:33:35 +0200 Subject: [PATCH 127/246] backupdays --- Arma3/arma3server | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Arma3/arma3server b/Arma3/arma3server index 62a760104..c7ec8d559 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -96,6 +96,9 @@ networkcfgdefault="network.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" networkcfgfullpath="${servercfgdir}/${networkcfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 35919b306c493b09090ae25a5c2fe5a5eedf1561 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:33:42 +0200 Subject: [PATCH 128/246] backupdays --- Battlefield1942/bf1942server | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Battlefield1942/bf1942server b/Battlefield1942/bf1942server index 14995f4cf..fbcf44b1d 100644 --- a/Battlefield1942/bf1942server +++ b/Battlefield1942/bf1942server @@ -62,6 +62,9 @@ servercfg="serversettings.con" servercfgdefault="serversettings.con" servercfgdir="${systemdir}/mods/bf1942/settings" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 4ffe0bc1fe993e57cdec1c31502d5937a2a0eb90 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:33:47 +0200 Subject: [PATCH 129/246] backupdays --- BlackMesa/bmdmserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BlackMesa/bmdmserver b/BlackMesa/bmdmserver index 91fe6bb56..3fa69a53b 100644 --- a/BlackMesa/bmdmserver +++ b/BlackMesa/bmdmserver @@ -87,6 +87,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 25ee4c169f1adae98d0598c7516295a7a7cc3b65 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:33:51 +0200 Subject: [PATCH 130/246] backupdays --- BladeSymphony/bsserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BladeSymphony/bsserver b/BladeSymphony/bsserver index e5e071271..e2eb22b59 100644 --- a/BladeSymphony/bsserver +++ b/BladeSymphony/bsserver @@ -82,6 +82,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 4a77b3767ce7fbc597474f33833742a289270ab0 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:33:57 +0200 Subject: [PATCH 131/246] backupdays --- BrainBread2/bb2server | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BrainBread2/bb2server b/BrainBread2/bb2server index 8ff2d159c..41e46fa83 100644 --- a/BrainBread2/bb2server +++ b/BrainBread2/bb2server @@ -87,6 +87,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 8fd184f1338eaf1b2cfd0402f98d61ab2d1504dc Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:34:00 +0200 Subject: [PATCH 132/246] backupdays --- CodenameCURE/ccserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CodenameCURE/ccserver b/CodenameCURE/ccserver index 3473eed80..91450d6c2 100644 --- a/CodenameCURE/ccserver +++ b/CodenameCURE/ccserver @@ -82,6 +82,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 90b45e98ba1ba815475b46b646fbb24ddbfb62b5 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:34:05 +0200 Subject: [PATCH 133/246] backupdays --- CounterStrike/csserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CounterStrike/csserver b/CounterStrike/csserver index e2cdde7fc..3bb94ac05 100644 --- a/CounterStrike/csserver +++ b/CounterStrike/csserver @@ -77,6 +77,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 7caab2b27ae182feae81051e48bdaa8aa93c2c1f Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:34:10 +0200 Subject: [PATCH 134/246] backupdays --- CounterStrikeConditionZero/csczserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CounterStrikeConditionZero/csczserver b/CounterStrikeConditionZero/csczserver index 895ec1583..57cd67cca 100644 --- a/CounterStrikeConditionZero/csczserver +++ b/CounterStrikeConditionZero/csczserver @@ -77,6 +77,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From f8b9c21ceb8e09a6b2085eafe398b6c0c8302ccd Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:34:18 +0200 Subject: [PATCH 135/246] backupdays --- CounterStrikeGlobalOffensive/csgoserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index 87425d00a..58940d70d 100755 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -105,6 +105,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 18f5b5637b9994e4058aec486bda83d922ca6ea4 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:34:22 +0200 Subject: [PATCH 136/246] backupdays --- CounterStrikeSource/cssserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CounterStrikeSource/cssserver b/CounterStrikeSource/cssserver index e6994789e..847f7051a 100644 --- a/CounterStrikeSource/cssserver +++ b/CounterStrikeSource/cssserver @@ -87,6 +87,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 53e1e29d6c27edb96630248afed784da078d2a82 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:34:25 +0200 Subject: [PATCH 137/246] backupdays --- DayOfDefeat/dodserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DayOfDefeat/dodserver b/DayOfDefeat/dodserver index f6cd2b34e..726cef2d4 100644 --- a/DayOfDefeat/dodserver +++ b/DayOfDefeat/dodserver @@ -77,6 +77,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 6a57124fd80321c8a8b17d8d1c3f66adfb112a2d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:34:31 +0200 Subject: [PATCH 138/246] backupdays --- DayOfDefeatSource/dodsserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DayOfDefeatSource/dodsserver b/DayOfDefeatSource/dodsserver index 342ccc97a..c2f093202 100644 --- a/DayOfDefeatSource/dodsserver +++ b/DayOfDefeatSource/dodsserver @@ -82,6 +82,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 8d8a490bf4bad800a20cbeca52042b9920058797 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:34:34 +0200 Subject: [PATCH 139/246] backupdays --- DayOfInfamy/doiserver | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/DayOfInfamy/doiserver b/DayOfInfamy/doiserver index 7440b369f..bec8d423f 100644 --- a/DayOfInfamy/doiserver +++ b/DayOfInfamy/doiserver @@ -84,6 +84,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging @@ -162,4 +165,4 @@ core_dl.sh core_functions.sh getopt=$1 -core_getopt.sh \ No newline at end of file +core_getopt.sh From 7fc7e16a0eb0f6aba0d1ebf3d4918ef17f69e371 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:34:39 +0200 Subject: [PATCH 140/246] backupdays --- DeathmatchClassic/dmcserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DeathmatchClassic/dmcserver b/DeathmatchClassic/dmcserver index b987c9685..6d2304e78 100644 --- a/DeathmatchClassic/dmcserver +++ b/DeathmatchClassic/dmcserver @@ -77,6 +77,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 10670ee0bc3e113b275143eafa97423c2b5d8b47 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:34:43 +0200 Subject: [PATCH 141/246] backupdays --- DontStarveTogether/dstserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index e96d304b8..2066df512 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -81,6 +81,9 @@ servercfgdefault="settings.ini" servercfgdir="${HOME}/.klei/DoNotStarveTogether" servercfgfullpath="${servercfgdir}/${servercfg}" servercfgdefault="${servercfgdir}/lgsm-default.ini" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 7a06377eeb6b83671fdb5dcfe691313138fa9d21 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:34:46 +0200 Subject: [PATCH 142/246] backupdays --- DoubleActionBoogaloo/dabserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DoubleActionBoogaloo/dabserver b/DoubleActionBoogaloo/dabserver index 4b8b531e9..a7e753897 100644 --- a/DoubleActionBoogaloo/dabserver +++ b/DoubleActionBoogaloo/dabserver @@ -82,6 +82,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 07fbeccc0ec943964a74844a0c9c7864d3885167 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:34:48 +0200 Subject: [PATCH 143/246] backupdays --- EmpiresMod/emserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/EmpiresMod/emserver b/EmpiresMod/emserver index 20e28b2d4..37b746012 100644 --- a/EmpiresMod/emserver +++ b/EmpiresMod/emserver @@ -87,6 +87,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 59304c3343aa9cebaa63d5d5ddd0a46bfe4907e3 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:34:50 +0200 Subject: [PATCH 144/246] backupdays --- FistfulOfFrags/fofserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/FistfulOfFrags/fofserver b/FistfulOfFrags/fofserver index 8a9fa69c5..9d89c5975 100644 --- a/FistfulOfFrags/fofserver +++ b/FistfulOfFrags/fofserver @@ -82,6 +82,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From f90af8128907aeb4bafc9aa050cf4e2f34de1ef3 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:34:52 +0200 Subject: [PATCH 145/246] backupdays --- GarrysMod/gmodserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index edc225016..257643966 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -104,6 +104,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 9b6ecf4a40dbf233b0077ca6367beb9b96805858 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:34:55 +0200 Subject: [PATCH 146/246] backupdays --- GoldenEyeSource/gesserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/GoldenEyeSource/gesserver b/GoldenEyeSource/gesserver index 081362d2a..c1e12f2ce 100644 --- a/GoldenEyeSource/gesserver +++ b/GoldenEyeSource/gesserver @@ -77,6 +77,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From ff074848734e9721292c7861806603c472608ef7 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:34:56 +0200 Subject: [PATCH 147/246] backupdays --- HalfLife2Deathmatch/hl2dmserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/HalfLife2Deathmatch/hl2dmserver b/HalfLife2Deathmatch/hl2dmserver index ff324c434..77ff51fe5 100644 --- a/HalfLife2Deathmatch/hl2dmserver +++ b/HalfLife2Deathmatch/hl2dmserver @@ -77,6 +77,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From c5cfb126406bd5a026faa6699aed198b34423c26 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:34:58 +0200 Subject: [PATCH 148/246] backupdays --- HalfLifeDeathmatch/hldmserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/HalfLifeDeathmatch/hldmserver b/HalfLifeDeathmatch/hldmserver index 2716a27e9..8138ba5c3 100644 --- a/HalfLifeDeathmatch/hldmserver +++ b/HalfLifeDeathmatch/hldmserver @@ -76,6 +76,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 3824ba8aa4f66ea5edc4eece6ad3852aab830c1d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:00 +0200 Subject: [PATCH 149/246] backupdays --- HalfLifeDeathmatchSource/hldmsserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/HalfLifeDeathmatchSource/hldmsserver b/HalfLifeDeathmatchSource/hldmsserver index 0a45df162..e8c0fdaac 100644 --- a/HalfLifeDeathmatchSource/hldmsserver +++ b/HalfLifeDeathmatchSource/hldmsserver @@ -77,6 +77,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 8b44d030f9c3069554c3903ae8b4d9350e5814d5 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:02 +0200 Subject: [PATCH 150/246] backupdays --- Hurtworld/hwserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Hurtworld/hwserver b/Hurtworld/hwserver index 2e28481b6..64d6c70f9 100644 --- a/Hurtworld/hwserver +++ b/Hurtworld/hwserver @@ -96,6 +96,9 @@ if [ "${x64mode}" == "1" ]; then else executable="./Hurtworld.x86" fi + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 2e98ce19c2854da40f5f0f1afa3612da0d0b9332 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:04 +0200 Subject: [PATCH 151/246] backupdays --- Insurgency/insserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Insurgency/insserver b/Insurgency/insserver index ba49fb494..67069ed4e 100644 --- a/Insurgency/insserver +++ b/Insurgency/insserver @@ -84,6 +84,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 1b248733fa261c104c631c2e3a33b87d4d8dfa36 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:06 +0200 Subject: [PATCH 152/246] backupdays --- JustCause2/jc2server | 3 +++ 1 file changed, 3 insertions(+) diff --git a/JustCause2/jc2server b/JustCause2/jc2server index af5e1e0af..e23bd6340 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -75,6 +75,9 @@ servercfg="config.lua" servercfgdefault="config.lua" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 11a172e7043e27c9709c04df0e9938f4d974340c Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:08 +0200 Subject: [PATCH 153/246] backupdays --- KillingFloor/kfserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/KillingFloor/kfserver b/KillingFloor/kfserver index 09ad60899..1bcc2d721 100644 --- a/KillingFloor/kfserver +++ b/KillingFloor/kfserver @@ -82,6 +82,9 @@ servercfgdefault="Default.ini" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" compressedmapsdir="${rootdir}/Maps-Compressed" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From f98817f78ca16e789380cd05a7492fa4cc320d49 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:10 +0200 Subject: [PATCH 154/246] backupdays --- Left4Dead/l4dserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Left4Dead/l4dserver b/Left4Dead/l4dserver index d05cd9a79..bcf389a35 100644 --- a/Left4Dead/l4dserver +++ b/Left4Dead/l4dserver @@ -82,6 +82,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From ce6c7afe651d89f562ffb3828c9d94bf9b5b3456 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:12 +0200 Subject: [PATCH 155/246] backupdays --- Left4Dead2/l4d2server | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Left4Dead2/l4d2server b/Left4Dead2/l4d2server index bddcaae9e..e5066d86b 100644 --- a/Left4Dead2/l4d2server +++ b/Left4Dead2/l4d2server @@ -81,6 +81,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 0f7ee2834f5619be31e471eb6fb7c47d28d80179 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:14 +0200 Subject: [PATCH 156/246] backupdays --- Minecraft/mcserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Minecraft/mcserver b/Minecraft/mcserver index 6317fb9bc..cbf68024f 100644 --- a/Minecraft/mcserver +++ b/Minecraft/mcserver @@ -63,6 +63,9 @@ servercfgdefault="server.properties" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" servercfgdefault="${servercfgdir}/lgsm-default.ini" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 64b750b23820054fb470535f2c12717094ff585e Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:16 +0200 Subject: [PATCH 157/246] backupdays --- Mumble/mumbleserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index 9e2b022ec..e774cea7d 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -63,6 +63,9 @@ servercfg="${servicename}.ini" servercfgdefault="murmur.ini" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From c46e6586702fb0c91fcc4e4277c8204362b9c8ce Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:17 +0200 Subject: [PATCH 158/246] backupdays --- NS2Combat/ns2cserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/NS2Combat/ns2cserver b/NS2Combat/ns2cserver index 4dbc1e276..772522815 100644 --- a/NS2Combat/ns2cserver +++ b/NS2Combat/ns2cserver @@ -88,6 +88,9 @@ executable="./ns2combatserver_linux32" servercfgdir="${rootdir}/server1" servercfgfullpath="${servercfgdir}" modstoragedir="${servercfgdir}/Workshop" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 0059a17500dc36c61b78d3cbbfd0de02e2e74afe Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:19 +0200 Subject: [PATCH 159/246] backupdays --- NaturalSelection2/ns2server | 3 +++ 1 file changed, 3 insertions(+) diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index 54b6ed226..967a4715f 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -88,6 +88,9 @@ executable="./server_linux32" servercfgdir="${rootdir}/server1" servercfgfullpath="${servercfgdir}" modstoragedir="${servercfgdir}/Workshop" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 98afad6428b573b46072f042913bfd26d7c20a4b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:21 +0200 Subject: [PATCH 160/246] backupdays --- NoMoreRoomInHell/nmrihserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/NoMoreRoomInHell/nmrihserver b/NoMoreRoomInHell/nmrihserver index be02bfc0e..4c9f3044e 100644 --- a/NoMoreRoomInHell/nmrihserver +++ b/NoMoreRoomInHell/nmrihserver @@ -87,6 +87,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 93e4b68f735a78e580d91dd9401caba3d11b0088 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:23 +0200 Subject: [PATCH 161/246] backupdays --- OpposingForce/opforserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/OpposingForce/opforserver b/OpposingForce/opforserver index 5013110e2..597f82a69 100644 --- a/OpposingForce/opforserver +++ b/OpposingForce/opforserver @@ -77,6 +77,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 59afb067bde43741a59c4ace44ae9478fa94030c Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:25 +0200 Subject: [PATCH 162/246] backupdays --- PiratesVikingandKnightsII/pvkiiserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PiratesVikingandKnightsII/pvkiiserver b/PiratesVikingandKnightsII/pvkiiserver index 5074af33e..5192f77a2 100644 --- a/PiratesVikingandKnightsII/pvkiiserver +++ b/PiratesVikingandKnightsII/pvkiiserver @@ -82,6 +82,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From c0aa39a746f6c310220705a94f3aac533883f11a Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:26 +0200 Subject: [PATCH 163/246] backupdays --- ProjectZomboid/pzserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ProjectZomboid/pzserver b/ProjectZomboid/pzserver index 143c382c6..2e898f041 100644 --- a/ProjectZomboid/pzserver +++ b/ProjectZomboid/pzserver @@ -78,6 +78,9 @@ servercfg="server.ini" servercfgdefault="server.cfg" servercfgdir="${HOME}/Zomboid/Server" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 2f2cefa2e5ae641ba90c16c59ed10b12d79d9565 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:29 +0200 Subject: [PATCH 164/246] backupdays --- QuakeLive/qlserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/QuakeLive/qlserver b/QuakeLive/qlserver index accf6aadf..44246a67f 100755 --- a/QuakeLive/qlserver +++ b/QuakeLive/qlserver @@ -85,6 +85,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${filesdir}/baseq3" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 2a2dd575eeed5d8ab191b4fa34fb89e48807fe84 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:31 +0200 Subject: [PATCH 165/246] backupdays --- RedOrchestra/roserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/RedOrchestra/roserver b/RedOrchestra/roserver index 66b85d98e..c2c4eaa4f 100644 --- a/RedOrchestra/roserver +++ b/RedOrchestra/roserver @@ -73,6 +73,9 @@ servercfgdefault="default.ini" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" compressedmapsdir="${rootdir}/Maps-Compressed" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 3812ba8b81a9bd42e8878e726846c96bbbe46760 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:34 +0200 Subject: [PATCH 166/246] backupdays --- Ricochet/ricochetserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Ricochet/ricochetserver b/Ricochet/ricochetserver index ff5862808..ee538a8e2 100644 --- a/Ricochet/ricochetserver +++ b/Ricochet/ricochetserver @@ -77,6 +77,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From a7ea1d34707af1100ae8275e528e5c6e89704f15 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:36 +0200 Subject: [PATCH 167/246] backupdays --- Rust/rustserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Rust/rustserver b/Rust/rustserver index 6e5f8f76a..7d515b1f0 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -100,6 +100,9 @@ servercfg="server.cfg" servercfgdefault="server.cfg" servercfgdir="${serveridentitydir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 9a470af641dc62fb83aa7c01f30cf88740e0e74d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:38 +0200 Subject: [PATCH 168/246] backupdays --- SeriousSam3BFE/ss3sserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SeriousSam3BFE/ss3sserver b/SeriousSam3BFE/ss3sserver index 35b78d831..56f7f5bd9 100644 --- a/SeriousSam3BFE/ss3sserver +++ b/SeriousSam3BFE/ss3sserver @@ -77,6 +77,9 @@ servercfg="${servicename}.ini" servercfgdefault="server.ini" servercfgdir="${filesdir}/Content/SeriousSam3/Config" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From dda4a24cc22d8761fbd45afc33acf4d07cb03ad3 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:39 +0200 Subject: [PATCH 169/246] backupdays --- Starbound/sbserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Starbound/sbserver b/Starbound/sbserver index 197d93ee3..cc6a1f462 100644 --- a/Starbound/sbserver +++ b/Starbound/sbserver @@ -76,6 +76,9 @@ servercfg="starbound_server.config" servercfgdefault="starbound_server.config" servercfgdir="${filesdir}/storage" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From b1a9dfe25f92a0a8ed2a8ccf84d1d04cc1438295 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:41 +0200 Subject: [PATCH 170/246] backupdays --- SvenCoop/svenserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SvenCoop/svenserver b/SvenCoop/svenserver index c89ffb88d..a27645c02 100644 --- a/SvenCoop/svenserver +++ b/SvenCoop/svenserver @@ -81,6 +81,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 6c0dbdbd1b3de79725d89f10e02531f3a740cf56 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:43 +0200 Subject: [PATCH 171/246] backupdays --- TeamFortress2/tf2server | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeamFortress2/tf2server b/TeamFortress2/tf2server index 972e60903..1255ad0b5 100644 --- a/TeamFortress2/tf2server +++ b/TeamFortress2/tf2server @@ -87,6 +87,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From d0d31d4ed3d4b7f78db52981b264264836b67f08 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:45 +0200 Subject: [PATCH 172/246] backupdays --- TeamFortressClassic/tfcserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeamFortressClassic/tfcserver b/TeamFortressClassic/tfcserver index 4a9496d35..5cbb7dcb4 100644 --- a/TeamFortressClassic/tfcserver +++ b/TeamFortressClassic/tfcserver @@ -77,6 +77,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From bedc7e048a8e7446913131e1efd8091db624c965 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:46 +0200 Subject: [PATCH 173/246] backupdays --- TeamSpeak3/ts3server | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeamSpeak3/ts3server b/TeamSpeak3/ts3server index 2c0af6bd5..fb8d4e24b 100644 --- a/TeamSpeak3/ts3server +++ b/TeamSpeak3/ts3server @@ -50,6 +50,9 @@ servercfg="${servicename}.ini" servercfgdefault="ts3server.ini" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 9e9b9b026ffe5ddad97fdbba3b538f41e75a82b7 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:48 +0200 Subject: [PATCH 174/246] backupdays --- Teeworlds/twserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Teeworlds/twserver b/Teeworlds/twserver index 8ab31bbcb..4010ea6b3 100644 --- a/Teeworlds/twserver +++ b/Teeworlds/twserver @@ -72,6 +72,9 @@ servercfg="${servicename}.cfg" # Teeworlds can also auto load any config if an a servercfgdefault="server.cfg" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 8ffda2dc7ba04a90d944f298968d19f84aab10af Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:50 +0200 Subject: [PATCH 175/246] backupdays --- Terraria/terrariaserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Terraria/terrariaserver b/Terraria/terrariaserver index fba75083f..d0564fb87 100644 --- a/Terraria/terrariaserver +++ b/Terraria/terrariaserver @@ -72,6 +72,9 @@ servercfg="${servicename}.txt" servercfgdefault="serverconfig.txt" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From 54009dbf97722887c508fbc7f17ec477014a58a4 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:52 +0200 Subject: [PATCH 176/246] backupdays --- UnrealTournament/utserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/UnrealTournament/utserver b/UnrealTournament/utserver index a5ff70a61..fd20b128a 100644 --- a/UnrealTournament/utserver +++ b/UnrealTournament/utserver @@ -68,6 +68,9 @@ executable="./UE4Server-Linux-Shipping" servercfg="Game.ini" servercfgdir="${systemdir}/UnrealTournament/Saved/Config/LinuxServer" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From cb79093598de58ae16f827bf453abc96a93cfa34 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:53 +0200 Subject: [PATCH 177/246] backupdays --- UnrealTournament2004/ut2k4server | 3 +++ 1 file changed, 3 insertions(+) diff --git a/UnrealTournament2004/ut2k4server b/UnrealTournament2004/ut2k4server index 3c82b7e7b..c86b2f824 100644 --- a/UnrealTournament2004/ut2k4server +++ b/UnrealTournament2004/ut2k4server @@ -56,6 +56,9 @@ servercfgdefault="UT2004.ini" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" compressedmapsdir="${rootdir}/Maps-Compressed" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From f1307331c99b5abc56e3dacdb878ed863e875588 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:55 +0200 Subject: [PATCH 178/246] backupdays --- UnrealTournament3/ut3server | 3 +++ 1 file changed, 3 insertions(+) diff --git a/UnrealTournament3/ut3server b/UnrealTournament3/ut3server index 780da1fb8..21e8ba06f 100644 --- a/UnrealTournament3/ut3server +++ b/UnrealTournament3/ut3server @@ -76,6 +76,9 @@ servercfg="${servicename}.ini" servercfgdefault="UTGame.ini" servercfgdir="${systemdir}/UTGame/Config" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From e43e8349d606d0404f5d64792202502d2977dae6 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:57 +0200 Subject: [PATCH 179/246] backupdays --- UnrealTournament99/ut99server | 3 +++ 1 file changed, 3 insertions(+) diff --git a/UnrealTournament99/ut99server b/UnrealTournament99/ut99server index 771882279..388b03e25 100644 --- a/UnrealTournament99/ut99server +++ b/UnrealTournament99/ut99server @@ -65,6 +65,9 @@ servercfgdefault="Default.ini" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" compressedmapsdir="${rootdir}/Maps-Compressed" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From f7f8c7f536fb3dc8d9f57b4f53026454147a86c4 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:35:59 +0200 Subject: [PATCH 180/246] backupdays --- WolfensteinEnemyTerritory/wetserver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/WolfensteinEnemyTerritory/wetserver b/WolfensteinEnemyTerritory/wetserver index 35642cdd6..16358debe 100644 --- a/WolfensteinEnemyTerritory/wetserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -62,6 +62,9 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/etmain" servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backup +backupdays="30" backupdir="${rootdir}/backups" # Logging From ea8fede3e8e736018f5580b1d9f6ba43de8da97e Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 17:49:21 +0200 Subject: [PATCH 181/246] fn_check_cfgdir for Rust fixes #1141 --- 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 5c241aec5..4a036eabc 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -307,6 +307,7 @@ elif [ "${gamename}" == "Ricochet" ]; then fn_set_config_vars elif [ "${gamename}" == "Rust" ]; then gamedirname="Rust" + fn_check_cfgdir array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote @@ -390,4 +391,3 @@ elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fn_default_config_remote fn_set_config_vars fi - From 1752d79d197ba8896e3b7a462a1f6f97d2c5dacb Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 18:03:25 +0200 Subject: [PATCH 182/246] fn_set_config_vars is not for every game removing some games i know don't use it --- lgsm/functions/install_config.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 4a036eabc..a94183499 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -274,7 +274,6 @@ elif [ "${gamename}" == "Mumble" ]; then array_configs+=( murmur.ini ) fn_fetch_default_config fn_default_config_remote - fn_set_config_vars elif [ "${gamename}" == "Natural Selection 2" ]; then : elif [ "${gamename}" == "NS2: Combat" ]; then @@ -311,7 +310,6 @@ elif [ "${gamename}" == "Rust" ]; then array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_set_config_vars elif [ "${gamename}" == "Serious Sam 3: BFE" ]; then gamedirname="SeriousSam3BFE" array_configs+=( server.ini ) @@ -347,7 +345,6 @@ elif [ "${gamename}" == "TeamSpeak 3" ]; then array_configs+=( ts3server.ini ) fn_fetch_default_config fn_default_config_remote - fn_set_config_vars elif [ "${gamename}" == "Teeworlds" ]; then gamedirname="Teeworlds" array_configs+=( server.cfg ctf.cfg dm.cfg duel.cfg tdm.cfg ) From 63a040cf83f64fb56e9efb12ae686987c528f7d9 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 18:12:33 +0200 Subject: [PATCH 183/246] Install config if missing fixes #1142 --- lgsm/functions/check_config.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/check_config.sh b/lgsm/functions/check_config.sh index 9ad4c7baa..72ea95c5c 100644 --- a/lgsm/functions/check_config.sh +++ b/lgsm/functions/check_config.sh @@ -15,7 +15,8 @@ if [ ! -e "${servercfgfullpath}" ]; then echo "${servercfgfullpath}" fn_script_log_warn "Configuration file missing!" fn_script_log_warn "${servercfgfullpath}" - sleep 2 + sleep 1 + install_config.sh fi fi From c0b3fc2a0221b48cc7ec9d402bb3bddc6e0d815d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 19:44:55 +0200 Subject: [PATCH 184/246] Clear more logs #1137 --- lgsm/functions/logs.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/lgsm/functions/logs.sh b/lgsm/functions/logs.sh index 4bf9ab903..32ad0deae 100644 --- a/lgsm/functions/logs.sh +++ b/lgsm/functions/logs.sh @@ -29,6 +29,9 @@ fi # Log manager will start the cleanup if it finds logs older than "${logdays}" if [ $(find "${scriptlogdir}"/ -type f -mtime +"${logdays}"|wc -l) -ne "0" ]; then fn_print_dots "Starting" + # Set common logs directories + commonlogs="${systemdir}/logs" + commonsourcelogs="${systemdir}/*/logs" # Set addon logs directories sourcemodlogdir="${systemdir}/addons/sourcemod/logs" ulxlogdir="${systemdir}/data/ulx_logs" @@ -57,6 +60,17 @@ if [ $(find "${scriptlogdir}"/ -type f -mtime +"${logdays}"|wc -l) -ne "0" ]; th consolecount=$(find "${consolelogdir}"/ -type f -mtime +"${logdays}"|wc -l) find "${consolelogdir}"/ -mtime +"${logdays}" -type f -exec rm -f {} \; fi + # Common logfiles + if [ -d ${commonlogs} ]; then + find "${commonlogs}"/ -type f -mtime +"${logdays}"| tee >> "${scriptlog}" + smcount=$(find "${commonlogs}"/ -type f -mtime +"${logdays}"|wc -l) + find "${commonlogs}"/ -mtime +"${logdays}" -type f -exec rm -f {} \; + fi + if [ -d ${commonsourcelogs} ]; then + find "${commonsourcelogs}"/* -type f -mtime +"${logdays}"| tee >> "${scriptlog}" + smcount=$(find "${commonsourcelogs}"/* -type f -mtime +"${logdays}"|wc -l) + find "${commonsourcelogs}"/* -mtime +"${logdays}" -type f -exec rm -f {} \; + fi # Source addons logfiles if [ "${engine}" == "source" ]; then # SourceMod logfiles From 3ed59a5dfa0a023e12d9922b01db6996cd7885a8 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 20 Oct 2016 20:24:56 +0100 Subject: [PATCH 185/246] Natural Selection 2 requires 1GB ram minimum --- lgsm/functions/check_system_requirements.sh | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/lgsm/functions/check_system_requirements.sh b/lgsm/functions/check_system_requirements.sh index a46c3d0e3..3040a8406 100644 --- a/lgsm/functions/check_system_requirements.sh +++ b/lgsm/functions/check_system_requirements.sh @@ -14,14 +14,13 @@ info_distro.sh if [ "${gamename}" == "Rust" ]; then ramrequirementmb="4000" ramrequirementgb="4" -fi - -if [ "${gamename}" == "ARMA 3" ]; then +elif [ "${gamename}" == "ARMA 3" ]; then ramrequirementmb="1000" ramrequirementgb="1" -fi - -if [ "${gamename}" == "Minecraft" ]; then +elif [ "${gamename}" == "Minecraft" ]; then + ramrequirementmb="1000" + ramrequirementgb="1" +elif [ "${gamename}" == "Natural Selection 2" ]||[ "${gamename}" == "NS2: Combat" ]; then ramrequirementmb="1000" ramrequirementgb="1" fi From 11f4a303565671d57446905966d4b0ce2d2f2896 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 20 Oct 2016 20:30:08 +0100 Subject: [PATCH 186/246] added servercfgfullpath dir check for NS2 --- lgsm/functions/command_details.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 2ae4632f0..f488f3ea8 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -227,6 +227,8 @@ fn_details_script(){ if [ -n "${servercfgfullpath}" ]; then if [ -f "${servercfgfullpath}" ]; then echo -e "${blue}Config file:\t${default}${servercfgfullpath}" + elif [ -d "${servercfgfullpath}" ]; then + echo -e "${blue}Config dir:\t${default}${servercfgfullpath}" else echo -e "${blue}Config file:\t${default}${red}${servercfgfullpath}${default} (${red}FILE MISSING${default})" fi From e808d04b035d43067530ef9fc2047759e26741b4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 20 Oct 2016 20:55:22 +0100 Subject: [PATCH 187/246] tab --- lgsm/functions/command_details.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index f488f3ea8..9cf79be84 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -428,7 +428,7 @@ fn_details_source(){ echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" echo -e "> Game/RCON\tINBOUND\t${port}\ttcp/udp" if [ -n "${sourcetvport}" ]; then - echo -e "> SourceTV\tINBOUND\t${sourcetvport}\tudp" + echo -e "> SourceTV\tINBOUND\t${sourcetvport}\tudp" fi echo -e "< Client\tOUTBOUND\t${clientport}\tudp" } | column -s $'\t' -t From d202f0d7964229de39ccc1d20ca630f8c37b61c4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 20 Oct 2016 20:57:08 +0100 Subject: [PATCH 188/246] added spark --- lgsm/functions/info_parms.sh | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/lgsm/functions/info_parms.sh b/lgsm/functions/info_parms.sh index 7be827c7b..7cfdd8b8b 100644 --- a/lgsm/functions/info_parms.sh +++ b/lgsm/functions/info_parms.sh @@ -26,17 +26,6 @@ fn_info_config_quakelive(){ rconpassword=${rconpassword:-"NOT SET"} } -fn_info_config_realvirtuality(){ - port=$(grep "^serverport=" "${servercfgfullpath}" | tr -cd '[:digit:]') - queryport=$(grep "^steamqueryport=" "${servercfgfullpath}" | tr -cd '[:digit:]') - masterport=$(grep "^steamport=" "${servercfgfullpath}" | tr -cd '[:digit:]') - - # Not Set - port=${port:-"2302"} - queryport=${queryport:-"2303"} - masterport=${masterport:-"2304"} -} - fn_info_config_source(){ defaultmap=${defaultmap:-"NOT SET"} maxplayers=${maxplayers:-"0"} @@ -44,6 +33,16 @@ fn_info_config_source(){ clientport=${clientport:-"0"} } +fn_info_config_spark(){ + # Not Set + port=${port:-"0"} + queryport=$((port + 1)) + maxplayers=${maxplayers:-"0"} + webadminuser=${webadminuser:-"NOT SET"} + webadminpass=${webadminpass:-"NOT SET"} + webadminport=${webadminport:-"0"} +} + fn_info_config_teeworlds(){ if [ ! -f "${servercfgfullpath}" ]; then servername="unnamed server" @@ -139,6 +138,9 @@ elif [ "${engine}" == "seriousengine35" ]; then # Source Engine Games elif [ "${engine}" == "source" ]||[ "${engine}" == "goldsource" ]; then fn_info_config_source +# Spark +elif [ "${engine}" == "spark" ]; then + fn_info_config_spark # Teeworlds elif [ "${engine}" == "teeworlds" ]; then fn_info_config_teeworlds From bde812f8baa459525e5988fd7af0a157436c2f1e Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 20 Oct 2016 21:45:00 +0100 Subject: [PATCH 189/246] Renamed to Quake 3 --- Quake3/q3server | 4 ++-- lgsm/functions/command_install.sh | 2 +- lgsm/functions/install_server_files.sh | 8 ++------ 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/Quake3/q3server b/Quake3/q3server index 4e722b08e..5e4b69c28 100644 --- a/Quake3/q3server +++ b/Quake3/q3server @@ -1,5 +1,5 @@ #!/bin/bash -# Quake 3: Team Arena +# Quake 3 # Server Management Script # Author: Daniel Gibbs # Website: https://gameservermanagers.com @@ -45,7 +45,7 @@ githubbranch="master" # Server Details servicename="quake3-server" -gamename="Quake 3: Team Arena" +gamename="Quake 3" engine="idtech3" # Directories diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index 23a20defd..99f8d696f 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}" == "Battlefield: 1942" ]||[ "${gamename}" == "Minecraft" ]||[ "${gamename}" == "Quake 3: Team Arena" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament 3" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Mumble" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then +elif [ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Minecraft" ]||[ "${gamename}" == "Quake 3" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament 3" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Mumble" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then installer=1 install_server_files.sh elif [ -n "${appid}" ]; then diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index d4bc66d12..1a23ef6e5 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -22,13 +22,9 @@ fn_install_server_files(){ elif [ "${gamename}" == "Unreal Tournament" ]; then fileurl="http://files.gameservermanagers.com/UnrealTournament/UnrealTournament-Server-XAN-3045522-Linux.zip"; filedir="${tmpdir}"; filename="UnrealTournament-Server-XAN-3045522-Linux.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="553fed5645a9fc623e92563049bf79f6" elif [ "${gamename}" == "GoldenEye: Source" ]; then -<<<<<<< HEAD - fileurl="http://files.gameservermanagers.com/GoldenEyeSource/GoldenEye_Source_v5.0.1_full_server_linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="GoldenEye_Source_v5.0.1_server_full_Linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="254533d4643ad2fe6f1f3ecc4f6b5e5f" - elif [ "${gamename}" == "Quake 3: Team Arena" ]; then - fileurl="https://s3.amazonaws.com/linuxgsm/quake3-1.32b-x86-full-linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="quake3-1.32b-x86-full-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="8fe61809ade4f9cce24e520043afe91b" -======= fileurl="http://files.gameservermanagers.com/GoldenEyeSource/GoldenEye_Source_v5.0.1_full_server_linux.tar.bz2"; filedir="${tmpdir}"; filename="GoldenEye_Source_v5.0.1_server_full_Linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="ea227a150300abe346e757380325f84c" ->>>>>>> refs/remotes/origin/master + elif [ "${gamename}" == "Quake 3" ]; then + fileurl="http://files.gameservermanagers.com/Quake3/quake3-1.32b-x86-full-linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="quake3-1.32b-x86-full-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="8fe61809ade4f9cce24e520043afe91b" fi fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" fn_dl_extract "${filedir}" "${filename}" "${filesdir}" From 64643b3dd6e0e3da70fa730c008acf1867b2876b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 20 Oct 2016 22:02:49 +0100 Subject: [PATCH 190/246] Glibc version for Quake 3 --- 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 655402584..b61fe21d8 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -41,6 +41,9 @@ elif [ "${gamename}" == "Mumble" ]; then elif [ "${gamename}" == "No More Room in Hell" ]; then glibcrequired="2.15" glibcfix="yes" +elif [ "${gamename}" == "Quake 3" ]; then + glibcrequired="2.1" + glibcfix="no" elif [ "${gamename}" == "Quake Live" ]; then glibcrequired="2.15" glibcfix="no" From d47037d78276065fc5836ff92236f84d57c96564 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 23:09:43 +0200 Subject: [PATCH 191/246] Putting all this into functions & prepare noprompt --- lgsm/functions/command_backup.sh | 193 +++++++++++++++++++++---------- 1 file changed, 133 insertions(+), 60 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 44cf937a3..01a6c3d03 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -11,56 +11,86 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh fn_print_header fn_script_log "Entering backup" + # Check if a backup is pending or has been aborted using .backup.lock -if [ -f "${tmpdir}/.backup.lock" ]; then - fn_print_warning_nl "A backup is currently running or has been aborted." - fn_script_log_warn "A backup is currently running or has been aborted" - while true; do - read -e -i "y" -p "Continue anyway? [Y/N]" yn - case $yn in - [Yy]* ) fn_script_log "User continues anyway"; break;; - [Nn]* ) echo Exiting; fn_script_log "User aborted"; return;; - * ) echo "Please answer yes or no.";; - esac - done -echo "" -fi -fn_print_dots "" -sleep 0.5 -# Prepare backup file name with servicename current date -backupname="${servicename}-$(date '+%Y-%m-%d-%H%M%S')" -# Tells how much will be compressed using rootdirduexbackup value from info_distro and prompt for continue -info_distro.sh -fn_print_info_nl "A total of ${rootdirduexbackup} will be compressed into the following backup:" -fn_script_log "A total of ${rootdirduexbackup} will be compressed into the following backup: ${backupdir}/${backupname}.tar.gz" -echo "${backupdir}/${backupname}.tar.gz" -echo "" -while true; do - read -e -i "y" -p "Continue? [Y/n]" yn - case $yn in - [Yy]* ) fn_script_log "User validates"; break;; - [Nn]* ) echo "Exiting"; fn_script_log "User aborted"; return;; - * ) echo "Please answer yes or no.";; -esac -done +fn_check_pending_backup(){ + if [ -f "${tmpdir}/.backup.lock" ]; then + fn_print_warning_nl "A backup is currently running or has been aborted." + fn_script_log_warn "A backup is currently running or has been aborted" + if [ "${backupnoprompt}" == "1" ]; then + # Exit if is in noprompt mode + fn_print_error "Backup already in progress" + fn_script_log_fatal "Backup already in progress" + core_exit.sh + else + # Prompts user if in regular mode + while true; do + read -e -i "y" -p "Continue anyway? [Y/N]" yn + case $yn in + [Yy]* ) fn_script_log "User continues anyway"; break;; + [Nn]* ) echo Exiting; fn_script_log "User aborted"; return;; + * ) echo "Please answer yes or no.";; + esac + done + echo "" + fi + fi +} -# Check if server is started -check_status.sh -if [ "${status}" != "0" ]; then - echo "" - fn_print_warning_nl "${servicename} is currently running." - fn_script_log_warn "${servicename} is currently running" +# Initialization +fn_backup_init(){ + fn_print_dots "" sleep 0.5 - while true; do - read -e -i "n" -p "Stop ${servicename} while running the backup? [y/N]" yn - case $yn in - [Yy]* ) exitbypass=1; fn_script_log "User choose to stop the server"; command_stop.sh; serverstopped="yes"; break;; - [Nn]* ) fn_script_log "User choose to not stop the server"; serverstopped="no"; break;; - * ) echo "Please answer yes or no.";; - esac - done -fi + # Prepare backup file name with servicename current date + backupname="${servicename}-$(date '+%Y-%m-%d-%H%M%S')" + # Tells how much will be compressed using rootdirduexbackup value from info_distro and prompt for continue + info_distro.sh + fn_print_info_nl "A total of ${rootdirduexbackup} will be compressed into the following backup:" + fn_script_log "A total of ${rootdirduexbackup} will be compressed into the following backup: ${backupdir}/${backupname}.tar.gz" + echo "${backupdir}/${backupname}.tar.gz" + echo "" + # Prompt to start the backup if not in noprompt mode + if [ "${backupnoprompt}" != "1" ]; then + while true; do + read -e -i "y" -p "Continue? [Y/n]" yn + case $yn in + [Yy]* ) fn_script_log "User validates"; break;; + [Nn]* ) echo "Exiting"; fn_script_log "User aborted"; return;; + * ) echo "Please answer yes or no.";; + esac + done + echo "" + fi +} + + +# Check if server is started +fn_backup_stop_server(){ + check_status.sh + if [ "${status}" != "0" ]; then + echo "" + fn_print_warning_nl "${servicename} is currently running." + fn_script_log_warn "${servicename} is currently running" + sleep 0.5 + if [ "${backupnoprompt}" == "1" ]; then + # Don't stop the server in noprompt mode + serverstopped="no" + else + # Otherwise ask the user if it should be stopped or not + while true; do + read -e -i "n" -p "Stop ${servicename} while running the backup? [y/N]" yn + case $yn in + [Yy]* ) exitbypass=1; fn_script_log "User choose to stop the server"; command_stop.sh; serverstopped="yes"; break;; + [Nn]* ) fn_script_log "User choose to not stop the server"; serverstopped="no"; break;; + * ) echo "Please answer yes or no.";; + esac + done + fi + fi +} +# Create required folders +fn_backup_directories(){ fn_print_dots "Backup in progress, please wait..." fn_script_log_info "Initiating backup" sleep 0.5 @@ -78,30 +108,60 @@ if [ -n "${tmpdir}" ]&&[ ! -d "${tmpdir}" ]; then fn_script_log "Creating ${tmpdir}" mkdir -p "${tmpdir}" fi +} + # Create lockfile +fn_backup_create_lockfile(){ if [ -d "${tmpdir}" ]; then touch "${tmpdir}/.backup.lock" fn_script_log "Lockfile created" fi +} # Compressing files +fn_backup_compression(){ fn_script_log "Compressing ${rootdirduexbackup}" tar -czf "${backupdir}/${backupname}.tar.gz" -C "${rootdir}" --exclude "backups" ./* fn_script_log "Compression over" +} + +# Check tar exit code and set the result +fn_check_tar_exit(){ + if [ $? == 0 ]; then + backupresult="FAIL" + else + backupresult="PASS" + fi +} # Remove lockfile -if [ -d "${tmpdir}" ]; then +fn_backup_remove_lockfile(){ +if [ -d "${tmpdir}" ]&&[ -f "${tmpdir}/.backup.lock" ]; then rm "${tmpdir}/.backup.lock" fn_script_log "Lockfile removed" fi +} + +fn_backup_summary(){ + # when backupresult="PASS" + if [ "${backupresult}" == "PASS" ]; then + fn_print_ok_nl "Backup created: ${backupname}.tar.gz is $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}') size" + fn_script_log_pass "Backup created: ${backupdir}/${backupname}.tar.gz is $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}') size" + # When backupresult="FAIL" + elif [ "${backupresult}" == "PASS" ]; then + fn_print_error_nl "Backup failed: ${backupname}.tar.gz" + fn_script_log_error "Backup failed: ${backupname}.tar.gz" + core_exit.sh + else + fn_print_error_nl "Could not determine compression result." + fn_script_log_error "Could not determine compression result." + core_exit.sh + fi +} -# Check tar exit code and act accordingly -if [ $? == 0 ]; then - # Exit code doesn't report any error - fn_print_ok_nl "Backup created: ${backupname}.tar.gz is $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}') size" - fn_script_log_pass "Backup created: ${backupdir}/${backupname}.tar.gz is $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}') size" - - # Clear old backups if backupdays variable exists + +# Clear old backups according to maxbackups and maxbackupdays variables +fn_backup_clearing(){ if [ -n "${backupdays}" ]; then # Count how many backups can be cleared backupclearcount=$(find "${backupdir}"/ -type f -mtime +"${backupdays}"|wc -l) @@ -129,15 +189,28 @@ if [ $? == 0 ]; then else fn_script_log "No backups to clear since backupdays variable is empty" fi - # Restart the server if it was stopped for the backup +} + +# Restart the server if it was stopped for the backup +fn_backup_start_back(){ if [ "${serverstopped}" == "yes" ]; then exitbypass=1 command_start.sh fi -else - # Exit code reports an error - fn_print_error_nl "Backup failed: ${backupname}.tar.gz" - fn_script_log_error "Backup failed: ${backupname}.tar.gz" -fi +} + +# Run functions +fn_check_pending_backup +fn_backup_init +fn_backup_stop_server +fn_backup_directories +fn_backup_create_lockfile +fn_backup_compression +fn_check_tar_exit +fn_backup_remove_lockfile +fn_backup_summary +fn_backup_clearing +fn_backup_start_back + sleep 0.5 core_exit.sh From e9216cf0c4b3138d2883599a3002be24f9cea58c Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 23:12:28 +0200 Subject: [PATCH 192/246] noprompt again --- lgsm/functions/command_backup.sh | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 01a6c3d03..8f3548ab8 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -169,15 +169,19 @@ fn_backup_clearing(){ if [ "${backupclearcount}" -ne "0" ]; then fn_print_info_nl "${backupclearcount} backups older than ${backupdays} days can be cleared." fn_script_log "${backupclearcount} backups older than ${backupdays} days can be cleared" - while true; do - read -p -e"Clear older backups? [Y/N]" yn - case $yn in - [Yy]* ) clearoldbackups="yes"; break;; - [Nn]* ) clearoldbackups="no"; fn_script_log "Not clearing backups"; break;; - * ) echo "Please answer yes or no.";; - esac - done - # If user wants to clear backups + if [ "${backupnoprompt}" != "1" ]; then + while true; do + read -p -e"Clear older backups? [Y/N]" yn + case $yn in + [Yy]* ) clearoldbackups="yes"; break;; + [Nn]* ) clearoldbackups="no"; fn_script_log "Not clearing backups"; break;; + * ) echo "Please answer yes or no.";; + esac + done + else + clearoldbackups="yes" + fi + # If user wants to clear backups or if noprompt if [ "${clearoldbackups}" == "yes" ]; then find "${backupdir}"/ -mtime +"${backupdays}" -type f -exec rm -f {} \; fn_print_ok_nl "Cleared ${backupclearcount} backups." From 18b06485415e1010c61a33ae39296f7ae4d8ea55 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 23:19:04 +0200 Subject: [PATCH 193/246] PASS vs FAIL --- lgsm/functions/command_backup.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 8f3548ab8..2e3aefd9a 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -127,11 +127,11 @@ fn_script_log "Compression over" # Check tar exit code and set the result fn_check_tar_exit(){ - if [ $? == 0 ]; then - backupresult="FAIL" - else - backupresult="PASS" - fi +if [ $? == 0 ]; then + backupresult="PASS" +else + backupresult="FAIL" +fi } # Remove lockfile @@ -148,7 +148,7 @@ fn_backup_summary(){ fn_print_ok_nl "Backup created: ${backupname}.tar.gz is $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}') size" fn_script_log_pass "Backup created: ${backupdir}/${backupname}.tar.gz is $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}') size" # When backupresult="FAIL" - elif [ "${backupresult}" == "PASS" ]; then + elif [ "${backupresult}" == "FAIL" ]; then fn_print_error_nl "Backup failed: ${backupname}.tar.gz" fn_script_log_error "Backup failed: ${backupname}.tar.gz" core_exit.sh From a4dcf379ee0e3764d072dce1eff1fdf8f50b3d38 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 20 Oct 2016 22:23:07 +0100 Subject: [PATCH 194/246] Renamed to Quake 3: Arena --- Quake3/q3server | 4 ++-- lgsm/functions/command_install.sh | 2 +- lgsm/functions/info_glibc.sh | 2 +- lgsm/functions/install_server_files.sh | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Quake3/q3server b/Quake3/q3server index 5e4b69c28..8aff1501e 100644 --- a/Quake3/q3server +++ b/Quake3/q3server @@ -1,5 +1,5 @@ #!/bin/bash -# Quake 3 +# Quake 3: Arena # Server Management Script # Author: Daniel Gibbs # Website: https://gameservermanagers.com @@ -45,7 +45,7 @@ githubbranch="master" # Server Details servicename="quake3-server" -gamename="Quake 3" +gamename="Quake 3: Arena" engine="idtech3" # Directories diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index 99f8d696f..2a2037daf 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}" == "Battlefield: 1942" ]||[ "${gamename}" == "Minecraft" ]||[ "${gamename}" == "Quake 3" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament 3" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Mumble" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then +elif [ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Minecraft" ]||[ "${gamename}" == "Quake 3: Arena" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament 3" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Mumble" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then installer=1 install_server_files.sh elif [ -n "${appid}" ]; then diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index b61fe21d8..c1d7cb1cf 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -41,7 +41,7 @@ elif [ "${gamename}" == "Mumble" ]; then elif [ "${gamename}" == "No More Room in Hell" ]; then glibcrequired="2.15" glibcfix="yes" -elif [ "${gamename}" == "Quake 3" ]; then +elif [ "${gamename}" == "Quake 3: Arena" ]; then glibcrequired="2.1" glibcfix="no" elif [ "${gamename}" == "Quake Live" ]; then diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 1a23ef6e5..e14a0521a 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -23,7 +23,7 @@ fn_install_server_files(){ fileurl="http://files.gameservermanagers.com/UnrealTournament/UnrealTournament-Server-XAN-3045522-Linux.zip"; filedir="${tmpdir}"; filename="UnrealTournament-Server-XAN-3045522-Linux.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="553fed5645a9fc623e92563049bf79f6" elif [ "${gamename}" == "GoldenEye: Source" ]; then fileurl="http://files.gameservermanagers.com/GoldenEyeSource/GoldenEye_Source_v5.0.1_full_server_linux.tar.bz2"; filedir="${tmpdir}"; filename="GoldenEye_Source_v5.0.1_server_full_Linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="ea227a150300abe346e757380325f84c" - elif [ "${gamename}" == "Quake 3" ]; then + elif [ "${gamename}" == "Quake 3: Arena" ]; then fileurl="http://files.gameservermanagers.com/Quake3/quake3-1.32b-x86-full-linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="quake3-1.32b-x86-full-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="8fe61809ade4f9cce24e520043afe91b" fi fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" From ba8d4a1c9eb222e4d7551fe716e7246305feb763 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 20 Oct 2016 22:23:22 +0100 Subject: [PATCH 195/246] added Quake 3 Arena Config --- lgsm/functions/install_config.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 13db1215b..e61496414 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -291,6 +291,12 @@ elif [ "${gamename}" == "Project Zomboid" ]; then fn_fetch_default_config fn_default_config_remote fn_set_config_vars +elif [ "${gamename}" == "Quake 3: Arena" ]; then + gamedirname="QuakeLive" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Quake Live" ]; then gamedirname="QuakeLive" array_configs+=( server.cfg ) From 6bee0b423cbbbb52283c51878a2808740590044f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 20 Oct 2016 22:24:30 +0100 Subject: [PATCH 196/246] Added quake 3 arena details --- lgsm/functions/command_details.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 9cf79be84..fe37083df 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -386,6 +386,15 @@ fn_details_refractor(){ } | column -s $'\t' -t } +fn_details_quake3(){ + echo -e "netstat -atunp | grep q3ded" + echo -e "" + { + echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" + echo -e "> Game\tINBOUND\t${port}\tudp" + } | column -s $'\t' -t +} + fn_details_quakelive(){ echo -e "netstat -atunp | grep qzeroded" echo -e "" @@ -665,6 +674,8 @@ fn_display_details() { fn_details_ark elif [ "${gamename}" == "Hurtworld" ]; then fn_details_hurtworld + elif [ "${gamename}" == "Quake 3: Arena" ]; then + fn_details_quake3 elif [ "${gamename}" == "Quake Live" ]; then fn_details_quakelive elif [ "${gamename}" == "TeamSpeak 3" ]; then From 53862daa9c1ac04c86ab0a1834405d00c890b095 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 23:27:08 +0200 Subject: [PATCH 197/246] fix prompt & contrib --- lgsm/functions/command_backup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 2e3aefd9a..71c54efd1 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -1,6 +1,7 @@ #!/bin/bash # LGSM command_backup.sh function # Author: Daniel Gibbs +# Contributor: UltimateByte # Website: https://gameservermanagers.com # Description: Creates a .tar.gz file in the backup directory. @@ -171,7 +172,7 @@ fn_backup_clearing(){ fn_script_log "${backupclearcount} backups older than ${backupdays} days can be cleared" if [ "${backupnoprompt}" != "1" ]; then while true; do - read -p -e"Clear older backups? [Y/N]" yn + read -e -p "Clear older backups? [Y/N]" yn case $yn in [Yy]* ) clearoldbackups="yes"; break;; [Nn]* ) clearoldbackups="no"; fn_script_log "Not clearing backups"; break;; From 61d846b985d055e6de421d3cfa3c12eab15c3031 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 20 Oct 2016 23:07:02 +0100 Subject: [PATCH 198/246] Updated config info --- Quake3/q3server | 3 ++- lgsm/functions/install_config.sh | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Quake3/q3server b/Quake3/q3server index 8aff1501e..6c2e4d844 100644 --- a/Quake3/q3server +++ b/Quake3/q3server @@ -55,14 +55,15 @@ lockselfname=".${servicename}.lock" lgsmdir="${rootdir}/lgsm" functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" +tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" systemdir="${filesdir}/baseq3" executabledir="${filesdir}" executable="./q3ded" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index e61496414..d3828a5eb 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -292,7 +292,7 @@ elif [ "${gamename}" == "Project Zomboid" ]; then fn_default_config_remote fn_set_config_vars elif [ "${gamename}" == "Quake 3: Arena" ]; then - gamedirname="QuakeLive" + gamedirname="Quake3Arena" array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote From 5a5ca5769cc1058cb07be25dbad7b4b18d4aa2b6 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 21 Oct 2016 00:35:06 +0200 Subject: [PATCH 199/246] noprompt & shutdownonbackup #1098 variable renaming as well, maxbackupdays --- lgsm/functions/command_backup.sh | 101 +++++++++---------------------- 1 file changed, 30 insertions(+), 71 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 71c54efd1..e4a0a7949 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -18,24 +18,10 @@ fn_check_pending_backup(){ if [ -f "${tmpdir}/.backup.lock" ]; then fn_print_warning_nl "A backup is currently running or has been aborted." fn_script_log_warn "A backup is currently running or has been aborted" - if [ "${backupnoprompt}" == "1" ]; then # Exit if is in noprompt mode - fn_print_error "Backup already in progress" + fn_print_error "Backup already in progress." fn_script_log_fatal "Backup already in progress" core_exit.sh - else - # Prompts user if in regular mode - while true; do - read -e -i "y" -p "Continue anyway? [Y/N]" yn - case $yn in - [Yy]* ) fn_script_log "User continues anyway"; break;; - [Nn]* ) echo Exiting; fn_script_log "User aborted"; return;; - * ) echo "Please answer yes or no.";; - esac - done - echo "" - fi - fi } # Initialization @@ -50,43 +36,31 @@ fn_backup_init(){ fn_script_log "A total of ${rootdirduexbackup} will be compressed into the following backup: ${backupdir}/${backupname}.tar.gz" echo "${backupdir}/${backupname}.tar.gz" echo "" - # Prompt to start the backup if not in noprompt mode - if [ "${backupnoprompt}" != "1" ]; then - while true; do - read -e -i "y" -p "Continue? [Y/n]" yn - case $yn in - [Yy]* ) fn_script_log "User validates"; break;; - [Nn]* ) echo "Exiting"; fn_script_log "User aborted"; return;; - * ) echo "Please answer yes or no.";; - esac - done - echo "" - fi } -# Check if server is started +# Check if server is started and wether to shut it down fn_backup_stop_server(){ check_status.sh - if [ "${status}" != "0" ]; then - echo "" - fn_print_warning_nl "${servicename} is currently running." - fn_script_log_warn "${servicename} is currently running" - sleep 0.5 - if [ "${backupnoprompt}" == "1" ]; then - # Don't stop the server in noprompt mode - serverstopped="no" - else - # Otherwise ask the user if it should be stopped or not - while true; do - read -e -i "n" -p "Stop ${servicename} while running the backup? [y/N]" yn - case $yn in - [Yy]* ) exitbypass=1; fn_script_log "User choose to stop the server"; command_stop.sh; serverstopped="yes"; break;; - [Nn]* ) fn_script_log "User choose to not stop the server"; serverstopped="no"; break;; - * ) echo "Please answer yes or no.";; - esac - done - fi + echo "" + # Server is shut down + if [ "${status}" == "0" ]; then + serverstopped="no" + # Server is up and shutdownonbackup is off + elif [ "${shutdownonbackup}" == "off" ]; then + serverstopped="no" + fn_print_warning_nl "${servicename} is started and will not be stopped." + fn_print_info_nl "It is advised to shutdown the server to prevent a file change during compression resulting in a tar error." + fn_script_log_warn "${servicename} is started during the backup" + fn_script_log_info "It is advised to shutdown the server to prevent a file change during compression resulting in a tar error." + # Server is up and will be stopped if shutdownonbackup has no value or anything else than "off" + else + fn_print_warning_nl "${servicename} will be stopped during the backup." + fn_script_log_warn "${servicename} will be stopped during the backup" + sleep 4 + serverstopped="yes" + exitbypass=1 + command_stop.sh fi } @@ -163,36 +137,21 @@ fn_backup_summary(){ # Clear old backups according to maxbackups and maxbackupdays variables fn_backup_clearing(){ - if [ -n "${backupdays}" ]; then + if [ -n "${maxbackupdays}" ]; then # Count how many backups can be cleared - backupclearcount=$(find "${backupdir}"/ -type f -mtime +"${backupdays}"|wc -l) + backupclearcount=$(find "${backupdir}"/ -type f -mtime +"${maxbackupdays}"|wc -l) # Check if there is any backup to clear if [ "${backupclearcount}" -ne "0" ]; then - fn_print_info_nl "${backupclearcount} backups older than ${backupdays} days can be cleared." - fn_script_log "${backupclearcount} backups older than ${backupdays} days can be cleared" - if [ "${backupnoprompt}" != "1" ]; then - while true; do - read -e -p "Clear older backups? [Y/N]" yn - case $yn in - [Yy]* ) clearoldbackups="yes"; break;; - [Nn]* ) clearoldbackups="no"; fn_script_log "Not clearing backups"; break;; - * ) echo "Please answer yes or no.";; - esac - done - else - clearoldbackups="yes" - fi - # If user wants to clear backups or if noprompt - if [ "${clearoldbackups}" == "yes" ]; then - find "${backupdir}"/ -mtime +"${backupdays}" -type f -exec rm -f {} \; - fn_print_ok_nl "Cleared ${backupclearcount} backups." - fn_script_log_pass "Cleared ${backupclearcount} backups" - fi + fn_print_info_nl "${backupclearcount} backups older than ${maxbackupdays} days can be cleared." + fn_script_log "${backupclearcount} backups older than ${maxbackupdays} days can be cleared" + find "${backupdir}"/ -mtime +"${maxbackupdays}" -type f -exec rm -f {} \; + fn_print_ok_nl "Cleared ${backupclearcount} backups." + fn_script_log_pass "Cleared ${backupclearcount} backups" else - fn_script_log "No backups older than ${backupdays} days were found" + fn_script_log "No backups older than ${maxbackupdays} days were found" fi else - fn_script_log "No backups to clear since backupdays variable is empty" + fn_script_log "No backups to clear since maxbackupdays variable is empty" fi } From 026ddcdd52519cbea6dc2573c1916b1bc16657d2 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 21 Oct 2016 00:42:17 +0200 Subject: [PATCH 200/246] fix syntax & messages #1098 --- lgsm/functions/command_backup.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index e4a0a7949..0dae1117d 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -16,12 +16,13 @@ fn_script_log "Entering backup" # Check if a backup is pending or has been aborted using .backup.lock fn_check_pending_backup(){ if [ -f "${tmpdir}/.backup.lock" ]; then - fn_print_warning_nl "A backup is currently running or has been aborted." - fn_script_log_warn "A backup is currently running or has been aborted" - # Exit if is in noprompt mode - fn_print_error "Backup already in progress." - fn_script_log_fatal "Backup already in progress" - core_exit.sh + fn_print_error "A backup is currently running or has been aborted." + fn_print_info_nl "If you keep seing this message, remove the following file:" + echo "${tmpdir}/.backup.lock" + fn_script_log_fatal "A backup is currently running or has been aborted." + fin_script_log_info "If you keep seing this message, remove the following file: ${tmpdir}/.backup.lock" + core_exit.sh + fi } # Initialization From 8d1167c596f5f49354443f979b1346d5998dd3ec Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 21 Oct 2016 00:49:36 +0200 Subject: [PATCH 201/246] messages and echos --- lgsm/functions/command_backup.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 0dae1117d..5669b66e4 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -36,14 +36,12 @@ fn_backup_init(){ fn_print_info_nl "A total of ${rootdirduexbackup} will be compressed into the following backup:" fn_script_log "A total of ${rootdirduexbackup} will be compressed into the following backup: ${backupdir}/${backupname}.tar.gz" echo "${backupdir}/${backupname}.tar.gz" - echo "" } # Check if server is started and wether to shut it down fn_backup_stop_server(){ check_status.sh - echo "" # Server is shut down if [ "${status}" == "0" ]; then serverstopped="no" @@ -149,6 +147,7 @@ fn_backup_clearing(){ fn_print_ok_nl "Cleared ${backupclearcount} backups." fn_script_log_pass "Cleared ${backupclearcount} backups" else + fn_print_info_nl "No backups older than ${maxbackupdays} days were found." fn_script_log "No backups older than ${maxbackupdays} days were found" fi else From 14188268f7627ffcc092c10a15802168b7f85a0b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 21 Oct 2016 01:04:23 +0200 Subject: [PATCH 202/246] messages that make more sense #1098 --- lgsm/functions/command_backup.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 5669b66e4..3182f5ea5 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -48,10 +48,10 @@ fn_backup_stop_server(){ # Server is up and shutdownonbackup is off elif [ "${shutdownonbackup}" == "off" ]; then serverstopped="no" - fn_print_warning_nl "${servicename} is started and will not be stopped." - fn_print_info_nl "It is advised to shutdown the server to prevent a file change during compression resulting in a tar error." - fn_script_log_warn "${servicename} is started during the backup" - fn_script_log_info "It is advised to shutdown the server to prevent a file change during compression resulting in a tar error." + fn_print_info_nl "${servicename} is started and will not be stopped." + fn_print_information_nl "It is advised to stop the server to prevent a file changes and tar errors." + fn_script_log_info "${servicename} is started during the backup" + fn_script_log_info "It is advised to stop the server to prevent a file changes and tar errors." # Server is up and will be stopped if shutdownonbackup has no value or anything else than "off" else fn_print_warning_nl "${servicename} will be stopped during the backup." From 430fbe9d7d8275aa911a7d970e6c1c18c615945b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 21 Oct 2016 03:40:09 +0200 Subject: [PATCH 203/246] preparing maxbackups some work in fn_backup_clearing is needed for this to work properly --- lgsm/functions/command_backup.sh | 43 +++++++++++++++++++++----------- 1 file changed, 29 insertions(+), 14 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 3182f5ea5..5abb78ed8 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -10,7 +10,6 @@ local commandaction="Backup" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh -fn_print_header fn_script_log "Entering backup" # Check if a backup is pending or has been aborted using .backup.lock @@ -136,23 +135,39 @@ fn_backup_summary(){ # Clear old backups according to maxbackups and maxbackupdays variables fn_backup_clearing(){ - if [ -n "${maxbackupdays}" ]; then - # Count how many backups can be cleared - backupclearcount=$(find "${backupdir}"/ -type f -mtime +"${maxbackupdays}"|wc -l) - # Check if there is any backup to clear - if [ "${backupclearcount}" -ne "0" ]; then - fn_print_info_nl "${backupclearcount} backups older than ${maxbackupdays} days can be cleared." - fn_script_log "${backupclearcount} backups older than ${maxbackupdays} days can be cleared" +# How many backups there are +backupscount=$(find "${backupdir}/" -type f -name "*.tar.gz"|wc -l) +# How many backups exceed maxbackups +backupquotadiff=$((backupscount-maxbackups)) +#backupquotadiff=$(find ${backupdir}"/ -type f -printf '%T@ %p\n' | sort -rn | tail -n +"${maxbackups}" | cut -f2- -d" " | wc -l) +backupsoudatedcount=$(find "${backupdir}"/ -type f -name "*.tar.gz" -mtime +"${maxbackupdays}"|wc -l) +# If backup variables are set +if [ -n "${maxbackupdays}" ]&&{ -n "${maxbackups}" ]; then + # If anything can be cleared + if [ "${backupquotadiff}" -gt "0" ]||[ "${backupsoudatedcount}" -gt "0" ]; then + # If maxbackups is used over maxbackupdays + if [ "${backupquotadiff}" -gt "${backupsoudatedcount}" ]||[ "${backupquotadiff}" -eq "${backupsoudatedcount}" ]; then + # Display how many backups will be cleared + echo "${backupquotadiff} backups will be clearned" + fn_print_info_nl "${backupquotadiff} backups than max ${maxbackups} will be cleared." + fn_script_log "${backupquotadiff} backups than max ${maxbackups} will be cleared" + echo "... Once this update is over" + # Clear over quota backups + #find "${backupdir}"/ -type f -printf '%T@ %p\n' | sort -rn | tail "${backupquotadiff}" | cut -f2- -d" " + # If maxbackupdays is used over maxbackups + elif [ "${backupquotadiff}" -gt "${backupsoudatedcount}" ]; then + # Display how many backups will be cleared + fn_print_info_nl "${backupsoudatedcount} backups older than ${maxbackupdays} days will be cleared." + fn_script_log "${backupsoudatedcount} backups older than ${maxbackupdays} days will be cleared" find "${backupdir}"/ -mtime +"${maxbackupdays}" -type f -exec rm -f {} \; - fn_print_ok_nl "Cleared ${backupclearcount} backups." - fn_script_log_pass "Cleared ${backupclearcount} backups" + fn_print_ok_nl "Cleared ${backupsoudatedcount} backups." + fn_script_log_pass "Cleared ${backupsoudatedcount} backups" else - fn_print_info_nl "No backups older than ${maxbackupdays} days were found." fn_script_log "No backups older than ${maxbackupdays} days were found" - fi - else - fn_script_log "No backups to clear since maxbackupdays variable is empty" fi +else + fn_script_log "No backups to clear since maxbackupdays variable is empty" +fi } # Restart the server if it was stopped for the backup From f54f546830e257c4cb209902d0a036cf96a40081 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 21 Oct 2016 03:45:40 +0200 Subject: [PATCH 204/246] typos --- lgsm/functions/command_backup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 5abb78ed8..d45f11434 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -142,7 +142,7 @@ backupquotadiff=$((backupscount-maxbackups)) #backupquotadiff=$(find ${backupdir}"/ -type f -printf '%T@ %p\n' | sort -rn | tail -n +"${maxbackups}" | cut -f2- -d" " | wc -l) backupsoudatedcount=$(find "${backupdir}"/ -type f -name "*.tar.gz" -mtime +"${maxbackupdays}"|wc -l) # If backup variables are set -if [ -n "${maxbackupdays}" ]&&{ -n "${maxbackups}" ]; then +if [ -n "${maxbackupdays}" ]&&[ -n "${maxbackups}" ]; then # If anything can be cleared if [ "${backupquotadiff}" -gt "0" ]||[ "${backupsoudatedcount}" -gt "0" ]; then # If maxbackups is used over maxbackupdays @@ -164,6 +164,7 @@ if [ -n "${maxbackupdays}" ]&&{ -n "${maxbackups}" ]; then fn_script_log_pass "Cleared ${backupsoudatedcount} backups" else fn_script_log "No backups older than ${maxbackupdays} days were found" + fi fi else fn_script_log "No backups to clear since maxbackupdays variable is empty" From fc3abd0db56b37112d2fb2511795e354dad8d202 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 21 Oct 2016 03:48:34 +0200 Subject: [PATCH 205/246] stoponbackup --- lgsm/functions/command_backup.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index d45f11434..623191bf6 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -38,20 +38,20 @@ fn_backup_init(){ } -# Check if server is started and wether to shut it down +# Check if server is started and wether to stop it fn_backup_stop_server(){ check_status.sh - # Server is shut down + # Server is stopped if [ "${status}" == "0" ]; then serverstopped="no" - # Server is up and shutdownonbackup is off - elif [ "${shutdownonbackup}" == "off" ]; then + # Server is up and stoponbackup is off + elif [ "${stoponbackup}" == "off" ]; then serverstopped="no" fn_print_info_nl "${servicename} is started and will not be stopped." fn_print_information_nl "It is advised to stop the server to prevent a file changes and tar errors." fn_script_log_info "${servicename} is started during the backup" fn_script_log_info "It is advised to stop the server to prevent a file changes and tar errors." - # Server is up and will be stopped if shutdownonbackup has no value or anything else than "off" + # Server is up and will be stopped if stoponbackup has no value or anything else than "off" else fn_print_warning_nl "${servicename} will be stopped during the backup." fn_script_log_warn "${servicename} will be stopped during the backup" From 0eee074edb4c33ec1da0a3b61d6d5227d9cc3647 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 21 Oct 2016 03:51:30 +0200 Subject: [PATCH 206/246] less than --- lgsm/functions/command_backup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 623191bf6..83f9204aa 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -155,7 +155,7 @@ if [ -n "${maxbackupdays}" ]&&[ -n "${maxbackups}" ]; then # Clear over quota backups #find "${backupdir}"/ -type f -printf '%T@ %p\n' | sort -rn | tail "${backupquotadiff}" | cut -f2- -d" " # If maxbackupdays is used over maxbackups - elif [ "${backupquotadiff}" -gt "${backupsoudatedcount}" ]; then + elif [ "${backupquotadiff}" -lt "${backupsoudatedcount}" ]; then # Display how many backups will be cleared fn_print_info_nl "${backupsoudatedcount} backups older than ${maxbackupdays} days will be cleared." fn_script_log "${backupsoudatedcount} backups older than ${maxbackupdays} days will be cleared" From 0d986a99cd56254222d43ae1712fa5cdd0c59894 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 21 Oct 2016 04:03:14 +0200 Subject: [PATCH 207/246] should work, to be tested --- lgsm/functions/command_backup.sh | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 83f9204aa..b198278b3 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -139,21 +139,20 @@ fn_backup_clearing(){ backupscount=$(find "${backupdir}/" -type f -name "*.tar.gz"|wc -l) # How many backups exceed maxbackups backupquotadiff=$((backupscount-maxbackups)) -#backupquotadiff=$(find ${backupdir}"/ -type f -printf '%T@ %p\n' | sort -rn | tail -n +"${maxbackups}" | cut -f2- -d" " | wc -l) backupsoudatedcount=$(find "${backupdir}"/ -type f -name "*.tar.gz" -mtime +"${maxbackupdays}"|wc -l) # If backup variables are set if [ -n "${maxbackupdays}" ]&&[ -n "${maxbackups}" ]; then # If anything can be cleared if [ "${backupquotadiff}" -gt "0" ]||[ "${backupsoudatedcount}" -gt "0" ]; then - # If maxbackups is used over maxbackupdays + # If maxbackups greater or equal than backupsoutdatedcount, then it is used over maxbackupdays if [ "${backupquotadiff}" -gt "${backupsoudatedcount}" ]||[ "${backupquotadiff}" -eq "${backupsoudatedcount}" ]; then # Display how many backups will be cleared echo "${backupquotadiff} backups will be clearned" - fn_print_info_nl "${backupquotadiff} backups than max ${maxbackups} will be cleared." - fn_script_log "${backupquotadiff} backups than max ${maxbackups} will be cleared" - echo "... Once this update is over" + fn_print_info_nl "${backupquotadiff} backups exceed max ${maxbackups} and will be cleared." + fn_script_log "${backupquotadiff} backups exceed max ${maxbackups} and will be cleared" + sleep 2 # Clear over quota backups - #find "${backupdir}"/ -type f -printf '%T@ %p\n' | sort -rn | tail "${backupquotadiff}" | cut -f2- -d" " + find "${backupdir}"/ -type f -name "*.tar.gz" -printf '%T@ %p\n' | sort -rn | tail -${backupquotadiff} | cut -f2- -d" " | xargs rm # If maxbackupdays is used over maxbackups elif [ "${backupquotadiff}" -lt "${backupsoudatedcount}" ]; then # Display how many backups will be cleared From f4026704bb96e18abc23ad2641cbd6eb4e4baca3 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 21 Oct 2016 04:08:04 +0200 Subject: [PATCH 208/246] output and logging --- lgsm/functions/command_backup.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index b198278b3..2862859f4 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -153,6 +153,8 @@ if [ -n "${maxbackupdays}" ]&&[ -n "${maxbackups}" ]; then sleep 2 # Clear over quota backups find "${backupdir}"/ -type f -name "*.tar.gz" -printf '%T@ %p\n' | sort -rn | tail -${backupquotadiff} | cut -f2- -d" " | xargs rm + fn_print_ok_nl "Cleared ${backupquotadiff} backups." + fn_script_log "Cleared ${backupquotadiff} backups" # If maxbackupdays is used over maxbackups elif [ "${backupquotadiff}" -lt "${backupsoudatedcount}" ]; then # Display how many backups will be cleared From b68ebd8d1c910057d4e0028a04d88b0e6e7d49b3 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 21 Oct 2016 12:58:45 +0200 Subject: [PATCH 209/246] messages --- lgsm/functions/command_backup.sh | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 2862859f4..199226ba9 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -147,28 +147,27 @@ if [ -n "${maxbackupdays}" ]&&[ -n "${maxbackups}" ]; then # If maxbackups greater or equal than backupsoutdatedcount, then it is used over maxbackupdays if [ "${backupquotadiff}" -gt "${backupsoudatedcount}" ]||[ "${backupquotadiff}" -eq "${backupsoudatedcount}" ]; then # Display how many backups will be cleared - echo "${backupquotadiff} backups will be clearned" - fn_print_info_nl "${backupquotadiff} backups exceed max ${maxbackups} and will be cleared." - fn_script_log "${backupquotadiff} backups exceed max ${maxbackups} and will be cleared" + fn_print_info_nl "${backupquotadiff} backup(s) exceed max ${maxbackups} and will be cleared." + fn_script_log "${backupquotadiff} backup(s) exceed max ${maxbackups} and will be cleared" sleep 2 # Clear over quota backups find "${backupdir}"/ -type f -name "*.tar.gz" -printf '%T@ %p\n' | sort -rn | tail -${backupquotadiff} | cut -f2- -d" " | xargs rm - fn_print_ok_nl "Cleared ${backupquotadiff} backups." - fn_script_log "Cleared ${backupquotadiff} backups" + fn_print_ok_nl "Cleared ${backupquotadiff} backup(s)." + fn_script_log "Cleared ${backupquotadiff} backup(s)" # If maxbackupdays is used over maxbackups elif [ "${backupquotadiff}" -lt "${backupsoudatedcount}" ]; then # Display how many backups will be cleared - fn_print_info_nl "${backupsoudatedcount} backups older than ${maxbackupdays} days will be cleared." - fn_script_log "${backupsoudatedcount} backups older than ${maxbackupdays} days will be cleared" + fn_print_info_nl "${backupsoudatedcount} backup(s) older than ${maxbackupdays} days will be cleared." + fn_script_log "${backupsoudatedcount} backup(s) older than ${maxbackupdays} days will be cleared" find "${backupdir}"/ -mtime +"${maxbackupdays}" -type f -exec rm -f {} \; - fn_print_ok_nl "Cleared ${backupsoudatedcount} backups." - fn_script_log_pass "Cleared ${backupsoudatedcount} backups" + fn_print_ok_nl "Cleared ${backupsoudatedcount} backup(s)." + fn_script_log_pass "Cleared ${backupsoudatedcount} backup(s)" else fn_script_log "No backups older than ${maxbackupdays} days were found" fi fi else - fn_script_log "No backups to clear since maxbackupdays variable is empty" + fn_script_log "No backups to clear since maxbackupdays and maxbackups variables are not set" fi } From 7c157a8edc1235a7049488bb2a2a68993949e01d Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Fri, 21 Oct 2016 07:31:29 -0400 Subject: [PATCH 210/246] updating to quake3-1.32c --- 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 e14a0521a..0bcdcc90c 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -24,7 +24,7 @@ fn_install_server_files(){ elif [ "${gamename}" == "GoldenEye: Source" ]; then fileurl="http://files.gameservermanagers.com/GoldenEyeSource/GoldenEye_Source_v5.0.1_full_server_linux.tar.bz2"; filedir="${tmpdir}"; filename="GoldenEye_Source_v5.0.1_server_full_Linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="ea227a150300abe346e757380325f84c" elif [ "${gamename}" == "Quake 3: Arena" ]; then - fileurl="http://files.gameservermanagers.com/Quake3/quake3-1.32b-x86-full-linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="quake3-1.32b-x86-full-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="8fe61809ade4f9cce24e520043afe91b" + fileurl="https://s3.amazonaws.com/linuxgsm/quake3-1.32c-x86-full-linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="quake3-1.32c-x86-full-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="fd7258d827474f67663dda297bff4306" fi fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" fn_dl_extract "${filedir}" "${filename}" "${filesdir}" From 31ff13993c12629d3a09b8676e49cda16dd81ebc Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 20 Oct 2016 23:43:10 +0100 Subject: [PATCH 211/246] Added Quake 3 --- lgsm/functions/info_config.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index d5f283404..846dec349 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -154,6 +154,26 @@ fn_info_config_projectzomboid(){ fi } +fn_info_config_quake3(){ + if [ ! -f "${servercfgfullpath}" ]; then + rconpassword="${unavailable}" + servername="${unavailable}" + serverpassword="${unavailable}" + slots="${zero}" + else + rconpassword=$(grep "zmq_rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set zmq_rcon_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + servername=$(grep "sv_hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + serverpassword=$(grep "rconpassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set rconpassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + slots=$(grep "sv_maxclients" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + + # Not Set + rconpassword=${rconpassword:-"NOT SET"} + servername=${servername:-"NOT SET"} + serverpassword=${serverpassword:-"NOT SET"} + slots=${slots:-"0"} + fi +} + fn_info_config_quakelive(){ if [ ! -f "${servercfgfullpath}" ]; then rconpassword="${unavailable}" @@ -475,6 +495,9 @@ elif [ "${gamename}" == "Battlefield: 1942" ]; then # Dont Starve Together elif [ "${engine}" == "dontstarve" ]; then fn_info_config_dontstarve +# Quake 3 +elif [ "${gamename}" == "Quake 3: Arena" ]; then + fn_info_config_quake3 # Quake Live elif [ "${gamename}" == "Quake Live" ]; then fn_info_config_quakelive From ea0c6973fb17863888de4440b70bbc53418f1c21 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 21 Oct 2016 14:44:11 +0100 Subject: [PATCH 212/246] Updated Quake 3 location --- 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 0bcdcc90c..d9f6cad5c 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -24,7 +24,7 @@ fn_install_server_files(){ elif [ "${gamename}" == "GoldenEye: Source" ]; then fileurl="http://files.gameservermanagers.com/GoldenEyeSource/GoldenEye_Source_v5.0.1_full_server_linux.tar.bz2"; filedir="${tmpdir}"; filename="GoldenEye_Source_v5.0.1_server_full_Linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="ea227a150300abe346e757380325f84c" elif [ "${gamename}" == "Quake 3: Arena" ]; then - fileurl="https://s3.amazonaws.com/linuxgsm/quake3-1.32c-x86-full-linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="quake3-1.32c-x86-full-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="fd7258d827474f67663dda297bff4306" + fileurl="http://files.gameservermanagers.com/Quake3/quake3-1.32c-x86-full-linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="quake3-1.32c-x86-full-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="fd7258d827474f67663dda297bff4306" fi fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" fn_dl_extract "${filedir}" "${filename}" "${filesdir}" From b3f8b29a06f57ba70a752adffabaf40d84484e3f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 21 Oct 2016 15:11:38 +0100 Subject: [PATCH 213/246] Added Quake 3 to correct getopt --- lgsm/functions/core_getopt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index 217650dbc..da5a0d710 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -622,7 +622,7 @@ case "${getopt}" in if [ "${gamename}" == "Mumble" ]; then fn_getopt_mumble -elif [ "${gamename}" == "Battlefield: 1942" ]|| [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then +elif [ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Quake 3: Arena" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fn_getopt_generic_no_update elif [ "${engine}" == "lwjgl2" ]; then fn_getopt_minecraft From c3f671f23709396cf07908b940ad5f49d9d6ccd8 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 21 Oct 2016 15:30:26 +0100 Subject: [PATCH 214/246] Updated version numbers --- ARKSurvivalEvolved/arkserver | 2 +- Arma3/arma3server | 2 +- Battlefield1942/bf1942server | 2 +- BlackMesa/bmdmserver | 2 +- BladeSymphony/bsserver | 2 +- BrainBread2/bb2server | 2 +- CodenameCURE/ccserver | 2 +- CounterStrike/csserver | 2 +- CounterStrikeConditionZero/csczserver | 2 +- CounterStrikeGlobalOffensive/csgoserver | 2 +- CounterStrikeSource/cssserver | 2 +- DayOfDefeat/dodserver | 2 +- DayOfDefeatSource/dodsserver | 2 +- DayOfInfamy/doiserver | 2 +- DeathmatchClassic/dmcserver | 2 +- DontStarveTogether/dstserver | 2 +- DoubleActionBoogaloo/dabserver | 2 +- EmpiresMod/emserver | 2 +- FistfulOfFrags/fofserver | 2 +- GarrysMod/gmodserver | 2 +- GoldenEyeSource/gesserver | 2 +- HalfLife2Deathmatch/hl2dmserver | 2 +- HalfLifeDeathmatch/hldmserver | 2 +- HalfLifeDeathmatchSource/hldmsserver | 2 +- Hurtworld/hwserver | 2 +- Insurgency/insserver | 2 +- JustCause2/jc2server | 2 +- KillingFloor/kfserver | 2 +- Left4Dead/l4dserver | 2 +- Left4Dead2/l4d2server | 2 +- Minecraft/mcserver | 68 ++++++++++++------------- Mumble/mumbleserver | 2 +- NS2Combat/ns2cserver | 2 +- NaturalSelection2/ns2server | 2 +- NoMoreRoomInHell/nmrihserver | 2 +- OpposingForce/opforserver | 2 +- PiratesVikingandKnightsII/pvkiiserver | 2 +- ProjectZomboid/pzserver | 2 +- QuakeLive/qlserver | 2 +- RedOrchestra/roserver | 2 +- Ricochet/ricochetserver | 2 +- Rust/rustserver | 2 +- SeriousSam3BFE/ss3sserver | 2 +- Starbound/sbserver | 2 +- SvenCoop/svenserver | 2 +- TeamFortress2/tf2server | 2 +- TeamFortressClassic/tfcserver | 2 +- TeamSpeak3/ts3server | 2 +- Teeworlds/twserver | 2 +- Terraria/terrariaserver | 2 +- UnrealTournament/utserver | 2 +- UnrealTournament2004/ut2k4server | 2 +- UnrealTournament3/ut3server | 2 +- UnrealTournament99/ut99server | 2 +- WolfensteinEnemyTerritory/wetserver | 2 +- lgsm/functions/fn_functions | 2 +- lgsm/functions/fn_getopt | 2 +- lgsm/functions/fn_update_functions | 2 +- 58 files changed, 91 insertions(+), 91 deletions(-) diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index efba11b51..bcabf3e27 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/Arma3/arma3server b/Arma3/arma3server index 62a760104..82484e3e4 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -10,7 +10,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/Battlefield1942/bf1942server b/Battlefield1942/bf1942server index 14995f4cf..5aca78b93 100644 --- a/Battlefield1942/bf1942server +++ b/Battlefield1942/bf1942server @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210516" +version="211016" #### Variables #### diff --git a/BlackMesa/bmdmserver b/BlackMesa/bmdmserver index 91fe6bb56..5026662a4 100644 --- a/BlackMesa/bmdmserver +++ b/BlackMesa/bmdmserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/BladeSymphony/bsserver b/BladeSymphony/bsserver index e5e071271..946e6c2d9 100644 --- a/BladeSymphony/bsserver +++ b/BladeSymphony/bsserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/BrainBread2/bb2server b/BrainBread2/bb2server index 8ff2d159c..8348aafd2 100644 --- a/BrainBread2/bb2server +++ b/BrainBread2/bb2server @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/CodenameCURE/ccserver b/CodenameCURE/ccserver index 3473eed80..3f08a563f 100644 --- a/CodenameCURE/ccserver +++ b/CodenameCURE/ccserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/CounterStrike/csserver b/CounterStrike/csserver index e2cdde7fc..ae04a04d6 100644 --- a/CounterStrike/csserver +++ b/CounterStrike/csserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="060816" +version="211016" #### Variables #### diff --git a/CounterStrikeConditionZero/csczserver b/CounterStrikeConditionZero/csczserver index 895ec1583..fb6971bbc 100644 --- a/CounterStrikeConditionZero/csczserver +++ b/CounterStrikeConditionZero/csczserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210516" +version="211016" #### Variables #### diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index 87425d00a..b5e93a15e 100755 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210516" +version="211016" #### Variables #### diff --git a/CounterStrikeSource/cssserver b/CounterStrikeSource/cssserver index e6994789e..8faed4600 100644 --- a/CounterStrikeSource/cssserver +++ b/CounterStrikeSource/cssserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/DayOfDefeat/dodserver b/DayOfDefeat/dodserver index f6cd2b34e..092374517 100644 --- a/DayOfDefeat/dodserver +++ b/DayOfDefeat/dodserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210516" +version="211016" #### Variables #### diff --git a/DayOfDefeatSource/dodsserver b/DayOfDefeatSource/dodsserver index 342ccc97a..f147c480d 100644 --- a/DayOfDefeatSource/dodsserver +++ b/DayOfDefeatSource/dodsserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/DayOfInfamy/doiserver b/DayOfInfamy/doiserver index 7440b369f..c5baebe29 100644 --- a/DayOfInfamy/doiserver +++ b/DayOfInfamy/doiserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/DeathmatchClassic/dmcserver b/DeathmatchClassic/dmcserver index b987c9685..8c90086d0 100644 --- a/DeathmatchClassic/dmcserver +++ b/DeathmatchClassic/dmcserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210516" +version="211016" #### Variables #### diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index e96d304b8..2b6805c38 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/DoubleActionBoogaloo/dabserver b/DoubleActionBoogaloo/dabserver index 4b8b531e9..ad9232079 100644 --- a/DoubleActionBoogaloo/dabserver +++ b/DoubleActionBoogaloo/dabserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/EmpiresMod/emserver b/EmpiresMod/emserver index 20e28b2d4..4251c1093 100644 --- a/EmpiresMod/emserver +++ b/EmpiresMod/emserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/FistfulOfFrags/fofserver b/FistfulOfFrags/fofserver index 8a9fa69c5..d96a076c0 100644 --- a/FistfulOfFrags/fofserver +++ b/FistfulOfFrags/fofserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index edc225016..571600dc7 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/GoldenEyeSource/gesserver b/GoldenEyeSource/gesserver index 081362d2a..9b53028ae 100644 --- a/GoldenEyeSource/gesserver +++ b/GoldenEyeSource/gesserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="300816" +version="211016" #### Variables #### diff --git a/HalfLife2Deathmatch/hl2dmserver b/HalfLife2Deathmatch/hl2dmserver index ff324c434..3e3ac1001 100644 --- a/HalfLife2Deathmatch/hl2dmserver +++ b/HalfLife2Deathmatch/hl2dmserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210516" +version="211016" #### Variables #### diff --git a/HalfLifeDeathmatch/hldmserver b/HalfLifeDeathmatch/hldmserver index 2716a27e9..bbdcd7d2f 100644 --- a/HalfLifeDeathmatch/hldmserver +++ b/HalfLifeDeathmatch/hldmserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210516" +version="211016" #### Variables #### diff --git a/HalfLifeDeathmatchSource/hldmsserver b/HalfLifeDeathmatchSource/hldmsserver index 0a45df162..b51756a58 100644 --- a/HalfLifeDeathmatchSource/hldmsserver +++ b/HalfLifeDeathmatchSource/hldmsserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210516" +version="211016" #### Variables #### diff --git a/Hurtworld/hwserver b/Hurtworld/hwserver index 2e28481b6..90c88c882 100644 --- a/Hurtworld/hwserver +++ b/Hurtworld/hwserver @@ -10,7 +10,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/Insurgency/insserver b/Insurgency/insserver index ba49fb494..bf25a1e16 100644 --- a/Insurgency/insserver +++ b/Insurgency/insserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161001" +version="211016" #### Variables #### diff --git a/JustCause2/jc2server b/JustCause2/jc2server index af5e1e0af..069d8d5cd 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/KillingFloor/kfserver b/KillingFloor/kfserver index 09ad60899..43fb5a3bf 100644 --- a/KillingFloor/kfserver +++ b/KillingFloor/kfserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/Left4Dead/l4dserver b/Left4Dead/l4dserver index d05cd9a79..937d5eb3a 100644 --- a/Left4Dead/l4dserver +++ b/Left4Dead/l4dserver @@ -10,7 +10,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/Left4Dead2/l4d2server b/Left4Dead2/l4d2server index bddcaae9e..3a26a1442 100644 --- a/Left4Dead2/l4d2server +++ b/Left4Dead2/l4d2server @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/Minecraft/mcserver b/Minecraft/mcserver index 6317fb9bc..859d1f9dd 100644 --- a/Minecraft/mcserver +++ b/Minecraft/mcserver @@ -4,12 +4,12 @@ # Author: Daniel Gibbs # Website: https://gameservermanagers.com if [ -f ".dev-debug" ]; then - exec 5>dev-debug.log - BASH_XTRACEFD="5" - set -x + exec 5>dev-debug.log + BASH_XTRACEFD="5" + set -x fi -version="210816" +version="211016" #### Variables #### @@ -91,36 +91,36 @@ 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}" + 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}" } diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index 9e2b022ec..7decb653e 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -10,7 +10,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="290716" +version="211016" #### Variables #### diff --git a/NS2Combat/ns2cserver b/NS2Combat/ns2cserver index 4dbc1e276..923858313 100644 --- a/NS2Combat/ns2cserver +++ b/NS2Combat/ns2cserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index 54b6ed226..76ca3ae37 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210916" +version="211016" #### Variables #### diff --git a/NoMoreRoomInHell/nmrihserver b/NoMoreRoomInHell/nmrihserver index be02bfc0e..abdba83e3 100644 --- a/NoMoreRoomInHell/nmrihserver +++ b/NoMoreRoomInHell/nmrihserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/OpposingForce/opforserver b/OpposingForce/opforserver index 5013110e2..913248223 100644 --- a/OpposingForce/opforserver +++ b/OpposingForce/opforserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210516" +version="211016" #### Variables #### diff --git a/PiratesVikingandKnightsII/pvkiiserver b/PiratesVikingandKnightsII/pvkiiserver index 5074af33e..870cd4e50 100644 --- a/PiratesVikingandKnightsII/pvkiiserver +++ b/PiratesVikingandKnightsII/pvkiiserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/ProjectZomboid/pzserver b/ProjectZomboid/pzserver index 143c382c6..d0af5d50f 100644 --- a/ProjectZomboid/pzserver +++ b/ProjectZomboid/pzserver @@ -10,7 +10,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/QuakeLive/qlserver b/QuakeLive/qlserver index accf6aadf..ed96114f4 100755 --- a/QuakeLive/qlserver +++ b/QuakeLive/qlserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/RedOrchestra/roserver b/RedOrchestra/roserver index 66b85d98e..6d4082ec6 100644 --- a/RedOrchestra/roserver +++ b/RedOrchestra/roserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210516" +version="211016" #### Variables #### diff --git a/Ricochet/ricochetserver b/Ricochet/ricochetserver index ff5862808..c80e188e9 100644 --- a/Ricochet/ricochetserver +++ b/Ricochet/ricochetserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210516" +version="211016" #### Variables #### diff --git a/Rust/rustserver b/Rust/rustserver index 6e5f8f76a..9196c1ec0 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -10,7 +10,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/SeriousSam3BFE/ss3sserver b/SeriousSam3BFE/ss3sserver index 35b78d831..21dfeb281 100644 --- a/SeriousSam3BFE/ss3sserver +++ b/SeriousSam3BFE/ss3sserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/Starbound/sbserver b/Starbound/sbserver index 197d93ee3..5b572669d 100644 --- a/Starbound/sbserver +++ b/Starbound/sbserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/SvenCoop/svenserver b/SvenCoop/svenserver index c89ffb88d..59b9c750e 100644 --- a/SvenCoop/svenserver +++ b/SvenCoop/svenserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/TeamFortress2/tf2server b/TeamFortress2/tf2server index 972e60903..b16193239 100644 --- a/TeamFortress2/tf2server +++ b/TeamFortress2/tf2server @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### diff --git a/TeamFortressClassic/tfcserver b/TeamFortressClassic/tfcserver index 4a9496d35..cf754b700 100644 --- a/TeamFortressClassic/tfcserver +++ b/TeamFortressClassic/tfcserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210516" +version="211016" #### Variables #### diff --git a/TeamSpeak3/ts3server b/TeamSpeak3/ts3server index 2c0af6bd5..527b7324e 100644 --- a/TeamSpeak3/ts3server +++ b/TeamSpeak3/ts3server @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="290716" +version="211016" #### Variables #### diff --git a/Teeworlds/twserver b/Teeworlds/twserver index 8ab31bbcb..a16daae1e 100644 --- a/Teeworlds/twserver +++ b/Teeworlds/twserver @@ -10,7 +10,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210516" +version="211016" #### Variables #### diff --git a/Terraria/terrariaserver b/Terraria/terrariaserver index fba75083f..7811110cf 100644 --- a/Terraria/terrariaserver +++ b/Terraria/terrariaserver @@ -10,7 +10,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210516" +version="211016" #### Variables #### diff --git a/UnrealTournament/utserver b/UnrealTournament/utserver index a5ff70a61..ff84f9979 100644 --- a/UnrealTournament/utserver +++ b/UnrealTournament/utserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210516" +version="211016" #### Variables #### diff --git a/UnrealTournament2004/ut2k4server b/UnrealTournament2004/ut2k4server index 3c82b7e7b..3c6b76cc6 100644 --- a/UnrealTournament2004/ut2k4server +++ b/UnrealTournament2004/ut2k4server @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210516" +version="211016" #### Variables #### diff --git a/UnrealTournament3/ut3server b/UnrealTournament3/ut3server index 780da1fb8..5788b40ef 100644 --- a/UnrealTournament3/ut3server +++ b/UnrealTournament3/ut3server @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210516" +version="211016" #### Variables #### diff --git a/UnrealTournament99/ut99server b/UnrealTournament99/ut99server index 771882279..652ac3772 100644 --- a/UnrealTournament99/ut99server +++ b/UnrealTournament99/ut99server @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210516" +version="211016" #### Variables #### diff --git a/WolfensteinEnemyTerritory/wetserver b/WolfensteinEnemyTerritory/wetserver index 35642cdd6..f400c20e6 100644 --- a/WolfensteinEnemyTerritory/wetserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210516" +version="211016" #### Variables #### diff --git a/lgsm/functions/fn_functions b/lgsm/functions/fn_functions index 0d024beb1..758af3dbc 100644 --- a/lgsm/functions/fn_functions +++ b/lgsm/functions/fn_functions @@ -2,7 +2,7 @@ # LGSM fn_functions function # Author: Daniel Gibbs # Website: https://gameservermanagers.com -lgsm_version="210516" +lgsm_version="211016" # Description: Redirects to new core_functions.sh diff --git a/lgsm/functions/fn_getopt b/lgsm/functions/fn_getopt index cec7b51b4..0302cf1d5 100644 --- a/lgsm/functions/fn_getopt +++ b/lgsm/functions/fn_getopt @@ -2,7 +2,7 @@ # LGSM fn_getopt function # Author: Daniel Gibbs # Website: https://gameservermanagers.com -lgsm_version="210516" +lgsm_version="211016" # Description: Redirect to new core_getopt.sh diff --git a/lgsm/functions/fn_update_functions b/lgsm/functions/fn_update_functions index 7c3be31e6..a424d3352 100644 --- a/lgsm/functions/fn_update_functions +++ b/lgsm/functions/fn_update_functions @@ -2,7 +2,7 @@ # LGSM fn_update_functions function # Author: Daniel Gibbs # Website: https://gameservermanagers.com -lgsm_version="210516" +lgsm_version="211016" # Description: LEGACY FUNCTION Deletes the functions dir to allow re-downloading of functions from GitHub. From 9cd4095122aac437d3a2fa1c3fd67eb430ff6988 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 21 Oct 2016 15:30:34 +0100 Subject: [PATCH 215/246] updated version numbers --- 7DaysToDie/sdtdserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index 07f7d555d..7ec533282 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="160916" +version="211016" #### Variables #### From 2b2ba030a6384d3a2d2af5cef704648c380fc16a Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 21 Oct 2016 16:53:10 +0200 Subject: [PATCH 216/246] comment --- lgsm/functions/command_backup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 199226ba9..3082c563e 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -139,6 +139,7 @@ fn_backup_clearing(){ backupscount=$(find "${backupdir}/" -type f -name "*.tar.gz"|wc -l) # How many backups exceed maxbackups backupquotadiff=$((backupscount-maxbackups)) +# How many backups exceed maxbackupdays backupsoudatedcount=$(find "${backupdir}"/ -type f -name "*.tar.gz" -mtime +"${maxbackupdays}"|wc -l) # If backup variables are set if [ -n "${maxbackupdays}" ]&&[ -n "${maxbackups}" ]; then From 240766b7c4e97c1bea2d3e1c88f6f7c2572d29d2 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 21 Oct 2016 16:50:06 +0200 Subject: [PATCH 217/246] New backup functionnalities # Backup maxbackups="4" maxbackupdays="30" stoponbackup="on" --- 7DaysToDie/sdtdserver | 4 +++- ARKSurvivalEvolved/arkserver | 4 +++- Arma3/arma3server | 4 +++- Battlefield1942/bf1942server | 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 +++- 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 +++- Minecraft/mcserver | 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 +++- RedOrchestra/roserver | 4 +++- Ricochet/ricochetserver | 4 +++- Rust/rustserver | 4 +++- SeriousSam3BFE/ss3sserver | 4 +++- Starbound/sbserver | 4 +++- SvenCoop/svenserver | 4 +++- TeamFortress2/tf2server | 4 +++- TeamFortressClassic/tfcserver | 4 +++- TeamSpeak3/ts3server | 4 +++- Teeworlds/twserver | 4 +++- Terraria/terrariaserver | 4 +++- UnrealTournament/utserver | 4 +++- UnrealTournament2004/ut2k4server | 4 +++- UnrealTournament3/ut3server | 4 +++- UnrealTournament99/ut99server | 4 +++- WolfensteinEnemyTerritory/wetserver | 4 +++- 56 files changed, 168 insertions(+), 56 deletions(-) diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index b6b6566b9..9eeb62a99 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -79,7 +79,9 @@ servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index 5c3cf7756..6263c51e0 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -84,7 +84,9 @@ servercfgfullpath="${servercfgdir}/${servercfg}" servercfgdefault="${servercfgdir}/GameUserSettings.ini" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/Arma3/arma3server b/Arma3/arma3server index c7ec8d559..3d727f5f1 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -98,7 +98,9 @@ servercfgfullpath="${servercfgdir}/${servercfg}" networkcfgfullpath="${servercfgdir}/${networkcfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/Battlefield1942/bf1942server b/Battlefield1942/bf1942server index fbcf44b1d..46ebcceee 100644 --- a/Battlefield1942/bf1942server +++ b/Battlefield1942/bf1942server @@ -64,7 +64,9 @@ servercfgdir="${systemdir}/mods/bf1942/settings" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/BlackMesa/bmdmserver b/BlackMesa/bmdmserver index 3fa69a53b..a61821b1d 100644 --- a/BlackMesa/bmdmserver +++ b/BlackMesa/bmdmserver @@ -89,7 +89,9 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/BladeSymphony/bsserver b/BladeSymphony/bsserver index e2eb22b59..c1b4a24a6 100644 --- a/BladeSymphony/bsserver +++ b/BladeSymphony/bsserver @@ -84,7 +84,9 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/BrainBread2/bb2server b/BrainBread2/bb2server index 41e46fa83..891cf2499 100644 --- a/BrainBread2/bb2server +++ b/BrainBread2/bb2server @@ -89,7 +89,9 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/CodenameCURE/ccserver b/CodenameCURE/ccserver index 91450d6c2..c888ea234 100644 --- a/CodenameCURE/ccserver +++ b/CodenameCURE/ccserver @@ -84,7 +84,9 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/CounterStrike/csserver b/CounterStrike/csserver index 3bb94ac05..c2be066c6 100644 --- a/CounterStrike/csserver +++ b/CounterStrike/csserver @@ -79,7 +79,9 @@ servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/CounterStrikeConditionZero/csczserver b/CounterStrikeConditionZero/csczserver index 57cd67cca..c40692742 100644 --- a/CounterStrikeConditionZero/csczserver +++ b/CounterStrikeConditionZero/csczserver @@ -79,7 +79,9 @@ servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index 58940d70d..8e4148493 100755 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -107,7 +107,9 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/CounterStrikeSource/cssserver b/CounterStrikeSource/cssserver index 847f7051a..f88670455 100644 --- a/CounterStrikeSource/cssserver +++ b/CounterStrikeSource/cssserver @@ -89,7 +89,9 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/DayOfDefeat/dodserver b/DayOfDefeat/dodserver index 726cef2d4..77c7ba3d7 100644 --- a/DayOfDefeat/dodserver +++ b/DayOfDefeat/dodserver @@ -79,7 +79,9 @@ servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/DayOfDefeatSource/dodsserver b/DayOfDefeatSource/dodsserver index c2f093202..0c6453d89 100644 --- a/DayOfDefeatSource/dodsserver +++ b/DayOfDefeatSource/dodsserver @@ -84,7 +84,9 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/DayOfInfamy/doiserver b/DayOfInfamy/doiserver index bec8d423f..e3f2d2d82 100644 --- a/DayOfInfamy/doiserver +++ b/DayOfInfamy/doiserver @@ -86,7 +86,9 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/DeathmatchClassic/dmcserver b/DeathmatchClassic/dmcserver index 6d2304e78..72049d7f1 100644 --- a/DeathmatchClassic/dmcserver +++ b/DeathmatchClassic/dmcserver @@ -79,7 +79,9 @@ servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index 2066df512..9de0307c3 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -83,7 +83,9 @@ servercfgfullpath="${servercfgdir}/${servercfg}" servercfgdefault="${servercfgdir}/lgsm-default.ini" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/DoubleActionBoogaloo/dabserver b/DoubleActionBoogaloo/dabserver index a7e753897..4918d70e6 100644 --- a/DoubleActionBoogaloo/dabserver +++ b/DoubleActionBoogaloo/dabserver @@ -84,7 +84,9 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/EmpiresMod/emserver b/EmpiresMod/emserver index 37b746012..e923651da 100644 --- a/EmpiresMod/emserver +++ b/EmpiresMod/emserver @@ -89,7 +89,9 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/FistfulOfFrags/fofserver b/FistfulOfFrags/fofserver index 9d89c5975..c57cb963f 100644 --- a/FistfulOfFrags/fofserver +++ b/FistfulOfFrags/fofserver @@ -84,7 +84,9 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index 257643966..ce9ee4494 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -106,7 +106,9 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/GoldenEyeSource/gesserver b/GoldenEyeSource/gesserver index c1e12f2ce..ecd664093 100644 --- a/GoldenEyeSource/gesserver +++ b/GoldenEyeSource/gesserver @@ -79,7 +79,9 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/HalfLife2Deathmatch/hl2dmserver b/HalfLife2Deathmatch/hl2dmserver index 77ff51fe5..56c57d6c9 100644 --- a/HalfLife2Deathmatch/hl2dmserver +++ b/HalfLife2Deathmatch/hl2dmserver @@ -79,7 +79,9 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/HalfLifeDeathmatch/hldmserver b/HalfLifeDeathmatch/hldmserver index 8138ba5c3..e29839462 100644 --- a/HalfLifeDeathmatch/hldmserver +++ b/HalfLifeDeathmatch/hldmserver @@ -78,7 +78,9 @@ servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/HalfLifeDeathmatchSource/hldmsserver b/HalfLifeDeathmatchSource/hldmsserver index e8c0fdaac..69ed525ee 100644 --- a/HalfLifeDeathmatchSource/hldmsserver +++ b/HalfLifeDeathmatchSource/hldmsserver @@ -79,7 +79,9 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/Hurtworld/hwserver b/Hurtworld/hwserver index 64d6c70f9..d6497b83d 100644 --- a/Hurtworld/hwserver +++ b/Hurtworld/hwserver @@ -98,7 +98,9 @@ else fi # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/Insurgency/insserver b/Insurgency/insserver index 67069ed4e..424b559ad 100644 --- a/Insurgency/insserver +++ b/Insurgency/insserver @@ -86,7 +86,9 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/JustCause2/jc2server b/JustCause2/jc2server index e23bd6340..95ca86cb5 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -77,7 +77,9 @@ servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/KillingFloor/kfserver b/KillingFloor/kfserver index 1bcc2d721..a2e9e3f9a 100644 --- a/KillingFloor/kfserver +++ b/KillingFloor/kfserver @@ -84,7 +84,9 @@ servercfgfullpath="${servercfgdir}/${servercfg}" compressedmapsdir="${rootdir}/Maps-Compressed" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/Left4Dead/l4dserver b/Left4Dead/l4dserver index bcf389a35..ef8e2e4b9 100644 --- a/Left4Dead/l4dserver +++ b/Left4Dead/l4dserver @@ -84,7 +84,9 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/Left4Dead2/l4d2server b/Left4Dead2/l4d2server index e5066d86b..41a0e9ac9 100644 --- a/Left4Dead2/l4d2server +++ b/Left4Dead2/l4d2server @@ -83,7 +83,9 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/Minecraft/mcserver b/Minecraft/mcserver index cbf68024f..c086b0d4b 100644 --- a/Minecraft/mcserver +++ b/Minecraft/mcserver @@ -65,7 +65,9 @@ servercfgfullpath="${servercfgdir}/${servercfg}" servercfgdefault="${servercfgdir}/lgsm-default.ini" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index e774cea7d..c298d90a3 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -65,7 +65,9 @@ servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/NS2Combat/ns2cserver b/NS2Combat/ns2cserver index 772522815..283182a26 100644 --- a/NS2Combat/ns2cserver +++ b/NS2Combat/ns2cserver @@ -90,7 +90,9 @@ servercfgfullpath="${servercfgdir}" modstoragedir="${servercfgdir}/Workshop" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index 967a4715f..91464bd2c 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -90,7 +90,9 @@ servercfgfullpath="${servercfgdir}" modstoragedir="${servercfgdir}/Workshop" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/NoMoreRoomInHell/nmrihserver b/NoMoreRoomInHell/nmrihserver index 4c9f3044e..0e795cd0d 100644 --- a/NoMoreRoomInHell/nmrihserver +++ b/NoMoreRoomInHell/nmrihserver @@ -89,7 +89,9 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/OpposingForce/opforserver b/OpposingForce/opforserver index 597f82a69..aa41c633d 100644 --- a/OpposingForce/opforserver +++ b/OpposingForce/opforserver @@ -79,7 +79,9 @@ servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/PiratesVikingandKnightsII/pvkiiserver b/PiratesVikingandKnightsII/pvkiiserver index 5192f77a2..b953b98e9 100644 --- a/PiratesVikingandKnightsII/pvkiiserver +++ b/PiratesVikingandKnightsII/pvkiiserver @@ -84,7 +84,9 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/ProjectZomboid/pzserver b/ProjectZomboid/pzserver index 2e898f041..17a8b1a6a 100644 --- a/ProjectZomboid/pzserver +++ b/ProjectZomboid/pzserver @@ -80,7 +80,9 @@ servercfgdir="${HOME}/Zomboid/Server" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/QuakeLive/qlserver b/QuakeLive/qlserver index 44246a67f..f3e9e01ae 100755 --- a/QuakeLive/qlserver +++ b/QuakeLive/qlserver @@ -87,7 +87,9 @@ servercfgdir="${filesdir}/baseq3" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/RedOrchestra/roserver b/RedOrchestra/roserver index c2c4eaa4f..c168b403d 100644 --- a/RedOrchestra/roserver +++ b/RedOrchestra/roserver @@ -75,7 +75,9 @@ servercfgfullpath="${servercfgdir}/${servercfg}" compressedmapsdir="${rootdir}/Maps-Compressed" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/Ricochet/ricochetserver b/Ricochet/ricochetserver index ee538a8e2..cce21777f 100644 --- a/Ricochet/ricochetserver +++ b/Ricochet/ricochetserver @@ -79,7 +79,9 @@ servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/Rust/rustserver b/Rust/rustserver index 7d515b1f0..ec4cbcf47 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -102,7 +102,9 @@ servercfgdir="${serveridentitydir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/SeriousSam3BFE/ss3sserver b/SeriousSam3BFE/ss3sserver index 56f7f5bd9..e72fc8af7 100644 --- a/SeriousSam3BFE/ss3sserver +++ b/SeriousSam3BFE/ss3sserver @@ -79,7 +79,9 @@ servercfgdir="${filesdir}/Content/SeriousSam3/Config" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/Starbound/sbserver b/Starbound/sbserver index cc6a1f462..412666137 100644 --- a/Starbound/sbserver +++ b/Starbound/sbserver @@ -78,7 +78,9 @@ servercfgdir="${filesdir}/storage" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/SvenCoop/svenserver b/SvenCoop/svenserver index a27645c02..cd0183f8d 100644 --- a/SvenCoop/svenserver +++ b/SvenCoop/svenserver @@ -83,7 +83,9 @@ servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/TeamFortress2/tf2server b/TeamFortress2/tf2server index 1255ad0b5..9f668e6e9 100644 --- a/TeamFortress2/tf2server +++ b/TeamFortress2/tf2server @@ -89,7 +89,9 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/TeamFortressClassic/tfcserver b/TeamFortressClassic/tfcserver index 5cbb7dcb4..0358fb3a3 100644 --- a/TeamFortressClassic/tfcserver +++ b/TeamFortressClassic/tfcserver @@ -79,7 +79,9 @@ servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/TeamSpeak3/ts3server b/TeamSpeak3/ts3server index fb8d4e24b..1ccb6dac5 100644 --- a/TeamSpeak3/ts3server +++ b/TeamSpeak3/ts3server @@ -52,7 +52,9 @@ servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/Teeworlds/twserver b/Teeworlds/twserver index 4010ea6b3..ded4d5a65 100644 --- a/Teeworlds/twserver +++ b/Teeworlds/twserver @@ -74,7 +74,9 @@ servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/Terraria/terrariaserver b/Terraria/terrariaserver index d0564fb87..39a52b54a 100644 --- a/Terraria/terrariaserver +++ b/Terraria/terrariaserver @@ -74,7 +74,9 @@ servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/UnrealTournament/utserver b/UnrealTournament/utserver index fd20b128a..aaa9d69af 100644 --- a/UnrealTournament/utserver +++ b/UnrealTournament/utserver @@ -70,7 +70,9 @@ servercfgdir="${systemdir}/UnrealTournament/Saved/Config/LinuxServer" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/UnrealTournament2004/ut2k4server b/UnrealTournament2004/ut2k4server index c86b2f824..7f50fdb97 100644 --- a/UnrealTournament2004/ut2k4server +++ b/UnrealTournament2004/ut2k4server @@ -58,7 +58,9 @@ servercfgfullpath="${servercfgdir}/${servercfg}" compressedmapsdir="${rootdir}/Maps-Compressed" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/UnrealTournament3/ut3server b/UnrealTournament3/ut3server index 21e8ba06f..85179800d 100644 --- a/UnrealTournament3/ut3server +++ b/UnrealTournament3/ut3server @@ -78,7 +78,9 @@ servercfgdir="${systemdir}/UTGame/Config" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/UnrealTournament99/ut99server b/UnrealTournament99/ut99server index 388b03e25..fe9e1965f 100644 --- a/UnrealTournament99/ut99server +++ b/UnrealTournament99/ut99server @@ -67,7 +67,9 @@ servercfgfullpath="${servercfgdir}/${servercfg}" compressedmapsdir="${rootdir}/Maps-Compressed" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging diff --git a/WolfensteinEnemyTerritory/wetserver b/WolfensteinEnemyTerritory/wetserver index 16358debe..087fd5561 100644 --- a/WolfensteinEnemyTerritory/wetserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -64,7 +64,9 @@ servercfgdir="${systemdir}/etmain" servercfgfullpath="${servercfgdir}/${servercfg}" # Backup -backupdays="30" +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" backupdir="${rootdir}/backups" # Logging From 530fcd2686c4b783454f3bc3f109ad1975f16cc2 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 21 Oct 2016 15:54:04 +0100 Subject: [PATCH 218/246] Removing very old functions for legacy code If you havnt updated your scripts by now you really need to. --- functions/command_update_functions.sh | 38 -------------- functions/core_functions.sh | 72 --------------------------- functions/core_getopt.sh | 14 ------ functions/fn_functions | 15 ------ functions/fn_getopt | 14 ------ functions/fn_update_functions | 15 ------ functions/update_functions.sh | 15 ------ 7 files changed, 183 deletions(-) delete mode 100644 functions/command_update_functions.sh delete mode 100644 functions/core_functions.sh delete mode 100644 functions/core_getopt.sh delete mode 100644 functions/fn_functions delete mode 100644 functions/fn_getopt delete mode 100644 functions/fn_update_functions delete mode 100644 functions/update_functions.sh diff --git a/functions/command_update_functions.sh b/functions/command_update_functions.sh deleted file mode 100644 index 0c35eb1f0..000000000 --- a/functions/command_update_functions.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash -# LGSM command_update_functions.sh function -# Author: Daniel Gibbs -# Website: https://gameservermanagers.com -lgsm_version="210516" - -# Description: Deletes the functions dir to allow re-downloading of functions from GitHub. - -local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -check.sh -fn_print_dots "Updating functions" -fn_script_log "Updating functions" -sleep 1 -echo -ne "\n" - -# Removed legecy functions dir -if [ -n "${rootdir}" ]; then - if [ -d "${rootdir}/functions/" ]; then - rm -rfv "${rootdir}/functions/" - exitcode=$? - fi -fi - -if [ -n "${functionsdir}" ]; then - if [ -d "${functionsdir}" ]; then - rm -rfv "${functionsdir}/"* - exitcode=$? - fi -fi - -if [ "${exitcode}" == "0" ]; then - fn_print_ok "Updating functions" - fn_script_log "Success! Updating functions" -else - fn_print_fail "Updating functions" - fn_script_log "Failure! Updating functions" -fi -echo -ne "\n" \ No newline at end of file diff --git a/functions/core_functions.sh b/functions/core_functions.sh deleted file mode 100644 index 287a50897..000000000 --- a/functions/core_functions.sh +++ /dev/null @@ -1,72 +0,0 @@ -#!/bin/bash -# LGSM core_functions.sh function -# Author: Daniel Gibbs -# Website: https://gameservermanagers.com -lgsm_version="210516" - -# Description: REDIRECT FUNCTION to new location for core_functions.sh - -# fn_fetch_core_dl also placed here to allow legecy servers to still download core functions -if [ -z "${lgsmdir}" ]; then - lgsmdir="${rootdir}/lgsm" - functionsdir="${lgsmdir}/functions" - libdir="${lgsmdir}/lib" -fi - -fn_fetch_core_dl(){ -if [ -z "${githubuser}" ]; then - githubuser="GameServerManagers" -fi -if [ -z "${githubrepo}" ]; then - githubrepo="LinuxGSM" -fi -if [ -z "${githubbranch}" ]; then - githubbranch="master" -fi -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 "${red}FAIL${default}\n" - echo "${curlfetch}" - echo -e "${githuburl}\n" - exit 1 - else - echo -e "${green}OK${default}" - fi - else - echo -e "${red}FAIL${default}\n" - echo "Curl is not installed!" - echo -e "" - exit 1 - fi - chmod +x "${filedir}/${filename}" -fi -source "${filedir}/${filename}" -} - -core_functions.sh(){ -functionfile="${FUNCNAME}" -fn_fetch_core_dl -} - -core_functions.sh diff --git a/functions/core_getopt.sh b/functions/core_getopt.sh deleted file mode 100644 index f6032fae6..000000000 --- a/functions/core_getopt.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash -# LGSM core_getopt.sh function -# Author: Daniel Gibbs -# Website: https://gameservermanagers.com -lgsm_version="210516" - -# Description: REDIRECT FUNCTION to new location for core_getopt.sh - -core_getopt.sh(){ -functionfile="${FUNCNAME}" -fn_fetch_core_dl -} - -core_getopt.sh \ No newline at end of file diff --git a/functions/fn_functions b/functions/fn_functions deleted file mode 100644 index 2ae012923..000000000 --- a/functions/fn_functions +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash -# LGSM fn_functions function -# Author: Daniel Gibbs -# Website: https://gameservermanagers.com -lgsm_version="210516" - -# Description: REDIRECT FUNCTION to new core_functions.sh - -core_functions.sh(){ -# Functions are defined in core_functions.sh. -functionfile="${FUNCNAME}" -fn_runfunction -} - -core_functions.sh \ No newline at end of file diff --git a/functions/fn_getopt b/functions/fn_getopt deleted file mode 100644 index 0b0e3713d..000000000 --- a/functions/fn_getopt +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash -# LGSM fn_getopt.sh function -# Author: Daniel Gibbs -# Website: https://gameservermanagers.com -lgsm_version="210516" - -# Description: REDIRECT FUNCTION to new core_getopt.sh - -core_getopt.sh(){ -functionfile="${FUNCNAME}" -fn_fetch_core_dl -} - -core_getopt.sh \ No newline at end of file diff --git a/functions/fn_update_functions b/functions/fn_update_functions deleted file mode 100644 index 5513d5d20..000000000 --- a/functions/fn_update_functions +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash -# LGSM fn_update_functions function -# Author: Daniel Gibbs -# Website: https://gameservermanagers.com -lgsm_version="210516" - -# Description: REDIRECT FUNCTION to new command_update_functions.sh - -command_update_functions.sh(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -command_update_functions.sh - diff --git a/functions/update_functions.sh b/functions/update_functions.sh deleted file mode 100644 index 5513d5d20..000000000 --- a/functions/update_functions.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash -# LGSM fn_update_functions function -# Author: Daniel Gibbs -# Website: https://gameservermanagers.com -lgsm_version="210516" - -# Description: REDIRECT FUNCTION to new command_update_functions.sh - -command_update_functions.sh(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -command_update_functions.sh - From 639dcb4dbeed6084715b298c4f86fb1e7748c844 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 21 Oct 2016 16:04:39 +0100 Subject: [PATCH 219/246] Removed appmanifest files as no longer required --- appmanifest/appmanifest_10.acf | 22 -------------------- appmanifest/appmanifest_70.acf | 22 -------------------- appmanifest/appmanifest_90.acf | 28 ------------------------- appmanifest/czero/appmanifest_90.acf | 31 ---------------------------- appmanifest/dod/appmanifest_90.acf | 31 ---------------------------- appmanifest/tfc/appmanifest_90.acf | 31 ---------------------------- 6 files changed, 165 deletions(-) delete mode 100644 appmanifest/appmanifest_10.acf delete mode 100644 appmanifest/appmanifest_70.acf delete mode 100644 appmanifest/appmanifest_90.acf delete mode 100644 appmanifest/czero/appmanifest_90.acf delete mode 100644 appmanifest/dod/appmanifest_90.acf delete mode 100644 appmanifest/tfc/appmanifest_90.acf diff --git a/appmanifest/appmanifest_10.acf b/appmanifest/appmanifest_10.acf deleted file mode 100644 index 9217b6129..000000000 --- a/appmanifest/appmanifest_10.acf +++ /dev/null @@ -1,22 +0,0 @@ -"AppState" -{ - "AppID" "10" - "Universe" "1" - "StateFlags" "1090" - "installdir" "Half-Life" - "LastUpdated" "0" - "UpdateResult" "0" - "SizeOnDisk" "0" - "buildid" "0" - "LastOwner" "0" - "BytesToDownload" "0" - "BytesDownloaded" "0" - "AutoUpdateBehavior" "0" - "AllowOtherDownloadsWhileRunning" "0" - "UserConfig" - { - } - "MountedDepots" - { - } -} diff --git a/appmanifest/appmanifest_70.acf b/appmanifest/appmanifest_70.acf deleted file mode 100644 index e5d6f2807..000000000 --- a/appmanifest/appmanifest_70.acf +++ /dev/null @@ -1,22 +0,0 @@ -"AppState" -{ - "AppID" "70" - "Universe" "1" - "StateFlags" "1090" - "installdir" "Half-Life" - "LastUpdated" "0" - "UpdateResult" "0" - "SizeOnDisk" "0" - "buildid" "0" - "LastOwner" "0" - "BytesToDownload" "0" - "BytesDownloaded" "0" - "AutoUpdateBehavior" "0" - "AllowOtherDownloadsWhileRunning" "0" - "UserConfig" - { - } - "MountedDepots" - { - } -} diff --git a/appmanifest/appmanifest_90.acf b/appmanifest/appmanifest_90.acf deleted file mode 100644 index 7de939d34..000000000 --- a/appmanifest/appmanifest_90.acf +++ /dev/null @@ -1,28 +0,0 @@ -"AppState" -{ - "AppID" "90" - "Universe" "1" - "StateFlags" "1026" - "installdir" "Half-Life" - "LastUpdated" "0" - "UpdateResult" "0" - "SizeOnDisk" "0" - "buildid" "0" - "LastOwner" "0" - "BytesToDownload" "0" - "BytesDownloaded" "0" - "AutoUpdateBehavior" "0" - "AllowOtherDownloadsWhileRunning" "0" - "UserConfig" - { - } - "MountedDepots" - { - } - "SharedDepots" - { - "1" "70" - "11" "10" - "71" "70" - } -} diff --git a/appmanifest/czero/appmanifest_90.acf b/appmanifest/czero/appmanifest_90.acf deleted file mode 100644 index 2373e5421..000000000 --- a/appmanifest/czero/appmanifest_90.acf +++ /dev/null @@ -1,31 +0,0 @@ -"AppState" -{ - "appid" "90" - "Universe" "1" - "StateFlags" "4" - "installdir" "Half-Life" - "LastUpdated" "1390662869" - "UpdateResult" "0" - "SizeOnDisk" "41586625" - "buildid" "63549" - "LastOwner" "76561199609699388" - "BytesToDownload" "224501136" - "BytesDownloaded" "224501136" - "AutoUpdateBehavior" "0" - "AllowOtherDownloadsWhileRunning" "0" - "UserConfig" - { - "mod" "czero" - } - "MountedDepots" - { - "4" "3196956435784640171" - } - "SharedDepots" - { - "1" "70" - "11" "10" - "71" "70" - "81" "80" - } -} diff --git a/appmanifest/dod/appmanifest_90.acf b/appmanifest/dod/appmanifest_90.acf deleted file mode 100644 index 704e4d1f0..000000000 --- a/appmanifest/dod/appmanifest_90.acf +++ /dev/null @@ -1,31 +0,0 @@ -"AppState" -{ - "AppID" "90" - "Universe" "1" - "StateFlags" "1030" - "installdir" "Half-Life" - "LastUpdated" "1390652241" - "UpdateResult" "0" - "SizeOnDisk" "41586625" - "buildid" "63549" - "LastOwner" "76561201453793332" - "BytesToDownload" "236411088" - "BytesDownloaded" "0" - "AutoUpdateBehavior" "0" - "AllowOtherDownloadsWhileRunning" "0" - "UserConfig" - { - "mod" "dod" - } - "MountedDepots" - { - "4" "3196956435784640171" - } - "SharedDepots" - { - "1" "70" - "11" "10" - "71" "70" - "31" "30" - } -} diff --git a/appmanifest/tfc/appmanifest_90.acf b/appmanifest/tfc/appmanifest_90.acf deleted file mode 100644 index aa3f4e2a9..000000000 --- a/appmanifest/tfc/appmanifest_90.acf +++ /dev/null @@ -1,31 +0,0 @@ -"AppState" -{ - "AppID" "90" - "Universe" "1" - "StateFlags" "4" - "installdir" "Half-Life" - "LastUpdated" "1390765182" - "UpdateResult" "0" - "SizeOnDisk" "41586625" - "buildid" "63549" - "LastOwner" "76561198445953036" - "BytesToDownload" "62362560" - "BytesDownloaded" "0" - "AutoUpdateBehavior" "0" - "AllowOtherDownloadsWhileRunning" "0" - "UserConfig" - { - "mod" "tfc" - } - "MountedDepots" - { - "4" "3196956435784640171" - } - "SharedDepots" - { - "1" "70" - "11" "10" - "71" "70" - "21" "20" - } -} From cf83b889e4630f8bb97e925d6479e5739603b200 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 22 Oct 2016 00:00:09 +0100 Subject: [PATCH 220/246] Updated directories --- QuakeWorld/qwserver | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/QuakeWorld/qwserver b/QuakeWorld/qwserver index 7a43b4b56..78449e81f 100644 --- a/QuakeWorld/qwserver +++ b/QuakeWorld/qwserver @@ -54,14 +54,15 @@ lockselfname=".${servicename}.lock" lgsmdir="${rootdir}/lgsm" functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" +tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" systemdir="${filesdir}/ktx" executabledir="${filesdir}" executable="./mvdsv" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging From f1722339950a685d25488305ddeddd95951546e4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 22 Oct 2016 12:05:33 +0100 Subject: [PATCH 221/246] Added quake 2 details --- lgsm/functions/command_details.sh | 11 +++++++++++ lgsm/functions/info_config.sh | 18 ++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index fe37083df..126dbe3b3 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -386,6 +386,15 @@ fn_details_refractor(){ } | column -s $'\t' -t } +fn_details_quake2(){ + echo -e "netstat -atunp | grep quake2" + echo -e "" + { + echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" + echo -e "> Game\tINBOUND\t${port}\tudp" + } | column -s $'\t' -t +} + fn_details_quake3(){ echo -e "netstat -atunp | grep q3ded" echo -e "" @@ -674,6 +683,8 @@ fn_display_details() { fn_details_ark elif [ "${gamename}" == "Hurtworld" ]; then fn_details_hurtworld + elif [ "${gamename}" == "Quake 2" ]; then + fn_details_quake2 elif [ "${gamename}" == "Quake 3: Arena" ]; then fn_details_quake3 elif [ "${gamename}" == "Quake Live" ]; then diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 846dec349..948e15201 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -154,6 +154,24 @@ fn_info_config_projectzomboid(){ fi } +fn_info_config_quake2(){ + if [ ! -f "${servercfgfullpath}" ]; then + rconpassword="${unavailable}" + servername="${unavailable}" + serverpassword="${unavailable}" + slots="${zero}" + else + rconpassword=$(grep "rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set rcon_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + servername=$(grep "hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set hostname//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + slots=$(grep "maxclients" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + + # Not Set + rconpassword=${rconpassword:-"NOT SET"} + servername=${servername:-"NOT SET"} + slots=${slots:-"0"} + fi +} + fn_info_config_quake3(){ if [ ! -f "${servercfgfullpath}" ]; then rconpassword="${unavailable}" From a0b6c9dc03d1829a29d06b512f35f80a81f84d40 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 22 Oct 2016 12:14:26 +0100 Subject: [PATCH 222/246] Added missing if statements --- lgsm/functions/command_details.sh | 2 +- lgsm/functions/info_config.sh | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 126dbe3b3..af30b9a27 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -292,7 +292,7 @@ fn_details_ports(){ parmslocation="${red}UNKNOWN${default}" # engines that require editing in the config file - local ports_edit_array=( "avalanche" "dontstarve" "idtech3" "lwjgl2" "projectzomboid" "idtech3_ql" "refractor" "realvirtuality" "seriousengine35" "teeworlds" "terraria" "unreal" "unreal2" "unreal3" "TeamSpeak 3" "Mumble" "7 Days To Die" ) + local ports_edit_array=( "avalanche" "dontstarve" "idtech2" "idtech3" "lwjgl2" "projectzomboid" "idtech3_ql" "refractor" "realvirtuality" "seriousengine35" "teeworlds" "terraria" "unreal" "unreal2" "unreal3" "TeamSpeak 3" "Mumble" "7 Days To Die" ) for port_edit in "${ports_edit_array[@]}" do if [ "${engine}" == "${port_edit}" ]||[ "${gamename}" == "${port_edit}" ]; then diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 948e15201..7982ebd69 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -513,6 +513,9 @@ elif [ "${gamename}" == "Battlefield: 1942" ]; then # Dont Starve Together elif [ "${engine}" == "dontstarve" ]; then fn_info_config_dontstarve +# Quake 2 +elif [ "${gamename}" == "Quake 2" ]; then + fn_info_config_quake2 # Quake 3 elif [ "${gamename}" == "Quake 3: Arena" ]; then fn_info_config_quake3 From f7fb1b70637fb669cc1275be24c615569f384458 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 22 Oct 2016 15:39:58 +0100 Subject: [PATCH 223/246] Added Quake 2 to fn_getopt_generic_no_update --- lgsm/functions/core_getopt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index da5a0d710..49acff39a 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -622,7 +622,7 @@ case "${getopt}" in if [ "${gamename}" == "Mumble" ]; then fn_getopt_mumble -elif [ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Quake 3: Arena" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then +elif [ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Quake 2" ]||[ "${gamename}" == "Quake 3: Arena" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fn_getopt_generic_no_update elif [ "${engine}" == "lwjgl2" ]; then fn_getopt_minecraft From 5e737a997a40a337b85d88f4d0a54fdfdc751fdb Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 22 Oct 2016 17:07:46 +0200 Subject: [PATCH 224/246] Should fix missing cached mem #1143 Please, test on ubuntu to confirm it's working --- lgsm/functions/info_distro.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lgsm/functions/info_distro.sh b/lgsm/functions/info_distro.sh index 3416e8133..df079567d 100644 --- a/lgsm/functions/info_distro.sh +++ b/lgsm/functions/info_distro.sh @@ -73,6 +73,9 @@ physmemtotalmb=$(free -m | awk '/Mem:/ {print $2}') physmemused=$(free ${humanreadable} | awk '/Mem:/ {print $3}') physmemfree=$(free ${humanreadable} | awk '/Mem:/ {print $4}') physmemcached=$(free ${humanreadable} | awk '/cache:/ {print $4}') +if [ -z "${physmemcached} ]; then + physmemcached=$(free ${humanreadable} | awk '/Mem:/ {print $5}') +fi swaptotal=$(free ${humanreadable} | awk '/Swap:/ {print $2}') swapused=$(free ${humanreadable} | awk '/Swap:/ {print $3}') swapfree=$(free ${humanreadable} | awk '/Swap:/ {print $4}') From bd77c9fa6892b7d6300b57d204bae3508a93f5bd Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 22 Oct 2016 17:17:04 +0200 Subject: [PATCH 225/246] fix the fix for #1143 (close double quote) --- lgsm/functions/info_distro.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/info_distro.sh b/lgsm/functions/info_distro.sh index df079567d..f526b4328 100644 --- a/lgsm/functions/info_distro.sh +++ b/lgsm/functions/info_distro.sh @@ -73,7 +73,7 @@ physmemtotalmb=$(free -m | awk '/Mem:/ {print $2}') physmemused=$(free ${humanreadable} | awk '/Mem:/ {print $3}') physmemfree=$(free ${humanreadable} | awk '/Mem:/ {print $4}') physmemcached=$(free ${humanreadable} | awk '/cache:/ {print $4}') -if [ -z "${physmemcached} ]; then +if [ -z "${physmemcached}" ]; then physmemcached=$(free ${humanreadable} | awk '/Mem:/ {print $5}') fi swaptotal=$(free ${humanreadable} | awk '/Swap:/ {print $2}') From 01c3f90bb9517a602f5130cb596f03b2ef1dce79 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 22 Oct 2016 17:36:17 +0200 Subject: [PATCH 226/246] move -type f before -mtime --- lgsm/functions/command_backup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 3082c563e..489e0a8f4 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -160,7 +160,7 @@ if [ -n "${maxbackupdays}" ]&&[ -n "${maxbackups}" ]; then # Display how many backups will be cleared fn_print_info_nl "${backupsoudatedcount} backup(s) older than ${maxbackupdays} days will be cleared." fn_script_log "${backupsoudatedcount} backup(s) older than ${maxbackupdays} days will be cleared" - find "${backupdir}"/ -mtime +"${maxbackupdays}" -type f -exec rm -f {} \; + find "${backupdir}"/ -type f -mtime +"${maxbackupdays}" -exec rm -f {} \; fn_print_ok_nl "Cleared ${backupsoudatedcount} backup(s)." fn_script_log_pass "Cleared ${backupsoudatedcount} backup(s)" else From 3029c9b25882261c14db14d3611ece8fc0b3c769 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 23 Oct 2016 15:20:56 +0100 Subject: [PATCH 227/246] GLIBC not required for Quake 2 --- lgsm/functions/info_glibc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index f7f333d63..27e5d6e58 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -42,7 +42,7 @@ elif [ "${gamename}" == "No More Room in Hell" ]; then glibcrequired="2.15" glibcfix="yes" elif [ "${gamename}" == "Quake 2" ]; then - glibcrequired="2.0" + glibcrequired="NOT REQUIRED" glibcfix="no" elif [ "${gamename}" == "Quake 3: Arena" ]; then glibcrequired="2.1" From 345f3456accf2351d8800da893fe251eaa890d27 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 23 Oct 2016 21:18:38 +0100 Subject: [PATCH 228/246] removed # --- lgsm/functions/command_dev_detect_glibc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_dev_detect_glibc.sh b/lgsm/functions/command_dev_detect_glibc.sh index ce27d4875..7703fba34 100644 --- a/lgsm/functions/command_dev_detect_glibc.sh +++ b/lgsm/functions/command_dev_detect_glibc.sh @@ -37,4 +37,4 @@ while IFS= read -r -d $'\0' line; do done echo "" cat "${tmpdir}/detect_glibc.tmp"|sort|uniq|sort -r --version-sort -#rm "${tmpdir}/detect_glibc.tmp" \ No newline at end of file +rm "${tmpdir}/detect_glibc.tmp" \ No newline at end of file From ca7af8f155a55196f182efe2240e719dfa408707 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 23 Oct 2016 21:23:33 +0100 Subject: [PATCH 229/246] added quake engine --- lgsm/functions/gsquery.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/gsquery.py b/lgsm/functions/gsquery.py index a242c89bb..cd46717cd 100644 --- a/lgsm/functions/gsquery.py +++ b/lgsm/functions/gsquery.py @@ -26,6 +26,8 @@ class GameServer: self.query_prompt_string = b'\xff\xff\xff\xffstatus\x00' elif self.option.engine == 'idtech3': self.query_prompt_string = b'\xff\xff\xff\xffgetstatus' + elif self.option.engine == 'quake': + self.query_prompt_string = b'\xff\xff\xff\xffstatus\x00' elif self.option.engine == 'quakelive': self.query_prompt_string = b'\xFF\xFF\xFF\xFFTSource Engine Query\0' elif self.option.engine == 'realvirtuality': @@ -111,7 +113,7 @@ if __name__ == '__main__': action='store', dest='engine', default=False, - help='Engine type: avalanche, goldsource, idtech2, idtech3, idtech3_ql, realvirtuality, quakelive, refractor, spark, source, unity3d, unreal, unreal2.' + help='Engine type: avalanche, goldsource, idtech2, idtech3, realvirtuality, quake, quakelive, refractor, spark, source, unity3d, unreal, unreal2.' ) parser.add_option( '-v', '--verbose', From 41c9ec3ba7e165e3eadbf572362f5522cd3e4589 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 23 Oct 2016 21:24:26 +0100 Subject: [PATCH 230/246] added quake engine to gsquery --- lgsm/functions/command_monitor.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_monitor.sh b/lgsm/functions/command_monitor.sh index 33b86e55d..b11015e40 100644 --- a/lgsm/functions/command_monitor.sh +++ b/lgsm/functions/command_monitor.sh @@ -79,7 +79,7 @@ fn_monitor_tmux(){ fn_print_ok_eol_nl fn_script_log_pass "Checking session: OK" # runs gsquery check on game with specific engines. - local allowed_engines_array=( avalanche goldsource idtech3 idtech3_ql refractor realvirtuality source spark unity3d unreal unreal2 ) + local allowed_engines_array=( avalanche goldsource idtech3 idtech3_ql quake refractor realvirtuality source spark unity3d unreal unreal2 ) for allowed_engine in "${allowed_engines_array[@]}" do if [ "${allowed_engine}" == "${engine}" ]; then From 5de3226e008b639e51b2fe52729722479b606361 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 23 Oct 2016 22:18:04 +0100 Subject: [PATCH 231/246] Added QuakeWorld --- lgsm/functions/command_details.sh | 13 ++++++++++++- lgsm/functions/core_getopt.sh | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index af30b9a27..7b8812f97 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -292,7 +292,7 @@ fn_details_ports(){ parmslocation="${red}UNKNOWN${default}" # engines that require editing in the config file - local ports_edit_array=( "avalanche" "dontstarve" "idtech2" "idtech3" "lwjgl2" "projectzomboid" "idtech3_ql" "refractor" "realvirtuality" "seriousengine35" "teeworlds" "terraria" "unreal" "unreal2" "unreal3" "TeamSpeak 3" "Mumble" "7 Days To Die" ) + local ports_edit_array=( "avalanche" "dontstarve" "idtech2" "idtech3" "idtech3_ql" "lwjgl2" "projectzomboid" "quake" "refractor" "realvirtuality" "seriousengine35" "teeworlds" "terraria" "unreal" "unreal2" "unreal3" "TeamSpeak 3" "Mumble" "7 Days To Die" ) for port_edit in "${ports_edit_array[@]}" do if [ "${engine}" == "${port_edit}" ]||[ "${gamename}" == "${port_edit}" ]; then @@ -404,6 +404,15 @@ fn_details_quake3(){ } | column -s $'\t' -t } +fn_details_quake(){ + echo -e "netstat -atunp | grep mvdsv" + echo -e "" + { + echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" + echo -e "> Game\tINBOUND\t${port}\tudp" + } | column -s $'\t' -t +} + fn_details_quakelive(){ echo -e "netstat -atunp | grep qzeroded" echo -e "" @@ -683,6 +692,8 @@ fn_display_details() { fn_details_ark elif [ "${gamename}" == "Hurtworld" ]; then fn_details_hurtworld + elif [ "${gamename}" == "QuakeWorld" ]; then + fn_details_quake elif [ "${gamename}" == "Quake 2" ]; then fn_details_quake2 elif [ "${gamename}" == "Quake 3: Arena" ]; then diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index 49acff39a..d07f82d04 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -622,7 +622,7 @@ case "${getopt}" in if [ "${gamename}" == "Mumble" ]; then fn_getopt_mumble -elif [ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Quake 2" ]||[ "${gamename}" == "Quake 3: Arena" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then +elif [ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "QuakeWorld" ]||[ "${gamename}" == "Quake 2" ]||[ "${gamename}" == "Quake 3: Arena" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fn_getopt_generic_no_update elif [ "${engine}" == "lwjgl2" ]; then fn_getopt_minecraft From ec4e1907205a2f6f0d5e6ce9103866b87bb8b4f1 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 23 Oct 2016 22:41:22 +0100 Subject: [PATCH 232/246] added check to see if updateonstart var exists --- lgsm/functions/command_details.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 7b8812f97..22f8e2a5f 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -218,7 +218,9 @@ fn_details_script(){ echo -e "${blue}Pushbullet alert:\t${default}${pushbulletalert}" # Update on start - echo -e "${blue}Update on start:\t${default}${updateonstart}" + if [ -n "${updateonstart}" ]; then + echo -e "${blue}Update on start:\t${default}${updateonstart}" + fi # Script location echo -e "${blue}Location:\t${default}${rootdir}" From 111668ce1a4aa261c3c68bfa24be33c39f038b93 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 27 Oct 2016 22:41:10 +0200 Subject: [PATCH 233/246] New gameservers & features (#1158) * Two # is now one block of settings & descriptions * directories comments and logs naming * dgibbs revision and root check * Backup & Layout rework * removed duplicate updateonstart * Fixed missing space on [ERROR ] [ ERROR ] instead of [ERROR ] * Error space wasn't missing Used to fit other comment sizes, i guess * Anonymous login is now an info Since login variable is removed for servers that don't need steam auth, this won't show a failure anymore but a simple info and anonymous login will be used. * update_steamcmd.sh Check is now done out of functions * solves hanging on update if steamuser is not set * New gameserver layout & functionalities * Better way to detect screen As per #1154 and #1156 * Moved to LinuxGSM-DevTools https://github.com/GameServerManagers/LinuxGSM-DevTools/blob/master/GameServer-Template/gameserver --- 7DaysToDie/sdtdserver | 125 +++++++---- ARKSurvivalEvolved/arkserver | 128 ++++++----- ARKSurvivalEvolved/cfg/lgsm-default.ini | 135 ------------ Arma3/arma3server | 147 ++++++++----- Arma3/cfg/lgsm-default.network.cfg | 77 ------- Arma3/cfg/lgsm-default.server.cfg | 133 ------------ Battlefield1942/bf1942server | 97 ++++++--- BlackMesa/bmdmserver | 122 +++++++---- BlackMesa/cfg/lgsm-default.cfg | 24 --- BladeSymphony/bsserver | 119 +++++++---- BladeSymphony/cfg/lgsm-default.cfg | 15 -- BrainBread2/bb2server | 128 +++++++---- BrainBread2/cfg/lgsm-default.cfg | 201 ------------------ CodenameCURE/ccserver | 131 +++++++----- CodenameCURE/cfg/lgsm-default.cfg | 105 --------- CounterStrike/cfg/lgsm-default.cfg | 38 ---- CounterStrike/csserver | 126 +++++++---- .../cfg/lgsm-default.cfg | 38 ---- CounterStrikeConditionZero/csczserver | 128 +++++++---- .../cfg/lgsm-default.cfg | 31 --- CounterStrikeGlobalOffensive/csgoserver | 147 ++++++++----- CounterStrikeSource/cfg/lgsm-default.cfg | 15 -- CounterStrikeSource/cssserver | 132 +++++++----- DayOfDefeat/cfg/lgsm-default.cfg | 38 ---- DayOfDefeat/dodserver | 127 +++++++---- DayOfDefeatSource/cfg/lgsm-default.cfg | 38 ---- DayOfDefeatSource/dodsserver | 131 +++++++----- DayOfInfamy/cfg/lgsm-default.cfg | 16 -- DayOfInfamy/doiserver | 130 ++++++----- DeathmatchClassic/cfg/lgsm-default.cfg | 35 --- DeathmatchClassic/dmcserver | 128 +++++++---- DontStarveTogether/cfg/lgsm-default.ini | 39 ---- DontStarveTogether/dstserver | 131 +++++++----- DoubleActionBoogaloo/cfg/lgsm-default.cfg | 15 -- DoubleActionBoogaloo/dabserver | 131 +++++++----- EmpiresMod/emserver | 130 +++++------ FistfulOfFrags/cfg/lgsm-default.cfg | 126 ----------- FistfulOfFrags/fofserver | 131 +++++++----- GarrysMod/cfg/lgsm-default.cfg | 86 -------- GarrysMod/gmodserver | 143 ++++++++----- GoldenEyeSource/cfg/lgsm-default.cfg | 126 ----------- GoldenEyeSource/gesserver | 124 +++++++---- HalfLife2Deathmatch/cfg/lgsm-default.cfg | 15 -- HalfLife2Deathmatch/hl2dmserver | 126 +++++++---- HalfLifeDeathmatch/cfg/lgsm-default.cfg | 35 --- HalfLifeDeathmatch/hldmserver | 126 +++++++---- HalfLifeDeathmatchSource/cfg/lgsm-default.cfg | 15 -- HalfLifeDeathmatchSource/hldmsserver | 125 +++++++---- Hurtworld/hwserver | 143 ++++++++----- Insurgency/insserver | 130 ++++++----- JustCause2/cfg/config.lua | 180 ---------------- JustCause2/jc2server | 122 +++++++---- KillingFloor/kfserver | 128 +++++++---- Left4Dead/cfg/lgsm-default.cfg | 15 -- Left4Dead/l4dserver | 132 +++++++----- Left4Dead2/cfg/lgsm-default.cfg | 15 -- Left4Dead2/l4d2server | 131 +++++++----- Minecraft/cfg/lgsm-default.ini | 40 ---- Minecraft/mcserver | 105 ++++++--- Mumble/mumbleserver | 102 ++++++--- NS2Combat/ns2cserver | 129 +++++++---- NaturalSelection2/ns2server | 129 +++++++---- NoMoreRoomInHell/cfg/lgsm-default.cfg | 121 ----------- NoMoreRoomInHell/nmrihserver | 133 +++++++----- OpposingForce/cfg/lgsm-default.cfg | 35 --- OpposingForce/opforserver | 128 +++++++---- .../cfg/lgsm-default.cfg | 119 ----------- PiratesVikingandKnightsII/pvkiiserver | 131 +++++++----- ProjectZomboid/cfg/lgsm-default.ini | 66 ------ ProjectZomboid/pzserver | 127 ++++++----- Quake2/cfg/lgsm-default.cfg | 15 -- Quake2/q2server | 100 ++++++--- Quake3/cfg/lgsm-default.cfg | 36 ---- Quake3/q3server | 99 ++++++--- QuakeLive/cfg/lgsm-default.cfg | 103 --------- QuakeLive/qlserver | 131 +++++++----- RedOrchestra/roserver | 123 +++++++---- Ricochet/cfg/lgsm-default.cfg | 35 --- Ricochet/ricochetserver | 150 +++++++++---- Rust/cfg/lgsm-default.cfg | 48 ----- Rust/rustserver | 137 +++++++----- SeriousSam3BFE/cfg/lgsm-default.ini | 49 ----- .../help/DedicatedServer_Readme.txt | 139 ------------ SeriousSam3BFE/ss3sserver | 129 ++++++----- Starbound/cfg/lgsm-default.config | 49 ----- Starbound/sbserver | 128 +++++++---- SvenCoop/cfg/lgsm-default.cfg | 36 ---- SvenCoop/svenserver | 131 +++++++----- TeamFortress2/cfg/lgsm-default.cfg | 15 -- TeamFortress2/tf2server | 131 +++++++----- TeamFortressClassic/cfg/lgsm-default.cfg | 38 ---- TeamFortressClassic/tfcserver | 128 +++++++---- TeamSpeak3/cfg/lgsm-default.ini | 20 -- TeamSpeak3/ts3server | 102 ++++++--- Teeworlds/cfg/ctf.cfg | 7 - Teeworlds/cfg/dm.cfg | 7 - Teeworlds/cfg/duel.cfg | 7 - Teeworlds/cfg/lgsm-default.cfg | 26 --- Teeworlds/cfg/tdm.cfg | 14 -- Teeworlds/twserver | 124 +++++++---- Terraria/cfg/lgsm-default.txt | 68 ------ Terraria/terrariaserver | 124 +++++++---- UnrealTournament/cfg/Engine.ini | 3 - UnrealTournament/cfg/Game.ini | 4 - UnrealTournament/utserver | 108 ++++++---- UnrealTournament2004/ut2k4server | 120 +++++++---- UnrealTournament3/ut3server | 109 ++++++---- UnrealTournament99/ut99server | 106 +++++---- .../cfg/lgsm-default.cfg | 125 ----------- WolfensteinEnemyTerritory/wetserver | 106 ++++++--- lgsm/functions/check_steamcmd.sh | 8 +- lgsm/functions/check_tmuxception.sh | 2 +- lgsm/functions/core_messages.sh | 2 +- lgsm/functions/update_steamcmd.sh | 5 +- 114 files changed, 4622 insertions(+), 5495 deletions(-) delete mode 100644 ARKSurvivalEvolved/cfg/lgsm-default.ini delete mode 100644 Arma3/cfg/lgsm-default.network.cfg delete mode 100644 Arma3/cfg/lgsm-default.server.cfg delete mode 100644 BlackMesa/cfg/lgsm-default.cfg delete mode 100644 BladeSymphony/cfg/lgsm-default.cfg delete mode 100644 BrainBread2/cfg/lgsm-default.cfg delete mode 100644 CodenameCURE/cfg/lgsm-default.cfg delete mode 100644 CounterStrike/cfg/lgsm-default.cfg delete mode 100644 CounterStrikeConditionZero/cfg/lgsm-default.cfg delete mode 100644 CounterStrikeGlobalOffensive/cfg/lgsm-default.cfg delete mode 100644 CounterStrikeSource/cfg/lgsm-default.cfg delete mode 100644 DayOfDefeat/cfg/lgsm-default.cfg delete mode 100644 DayOfDefeatSource/cfg/lgsm-default.cfg delete mode 100644 DayOfInfamy/cfg/lgsm-default.cfg delete mode 100644 DeathmatchClassic/cfg/lgsm-default.cfg delete mode 100644 DontStarveTogether/cfg/lgsm-default.ini delete mode 100644 DoubleActionBoogaloo/cfg/lgsm-default.cfg delete mode 100644 FistfulOfFrags/cfg/lgsm-default.cfg delete mode 100644 GarrysMod/cfg/lgsm-default.cfg delete mode 100644 GoldenEyeSource/cfg/lgsm-default.cfg delete mode 100644 HalfLife2Deathmatch/cfg/lgsm-default.cfg delete mode 100644 HalfLifeDeathmatch/cfg/lgsm-default.cfg delete mode 100644 HalfLifeDeathmatchSource/cfg/lgsm-default.cfg delete mode 100644 JustCause2/cfg/config.lua delete mode 100644 Left4Dead/cfg/lgsm-default.cfg delete mode 100644 Left4Dead2/cfg/lgsm-default.cfg delete mode 100644 Minecraft/cfg/lgsm-default.ini delete mode 100644 NoMoreRoomInHell/cfg/lgsm-default.cfg delete mode 100644 OpposingForce/cfg/lgsm-default.cfg delete mode 100644 PiratesVikingandKnightsII/cfg/lgsm-default.cfg delete mode 100644 ProjectZomboid/cfg/lgsm-default.ini delete mode 100644 Quake2/cfg/lgsm-default.cfg delete mode 100644 Quake3/cfg/lgsm-default.cfg delete mode 100644 QuakeLive/cfg/lgsm-default.cfg delete mode 100644 Ricochet/cfg/lgsm-default.cfg delete mode 100644 Rust/cfg/lgsm-default.cfg delete mode 100644 SeriousSam3BFE/cfg/lgsm-default.ini delete mode 100644 SeriousSam3BFE/help/DedicatedServer_Readme.txt delete mode 100644 Starbound/cfg/lgsm-default.config delete mode 100644 SvenCoop/cfg/lgsm-default.cfg delete mode 100644 TeamFortress2/cfg/lgsm-default.cfg delete mode 100644 TeamFortressClassic/cfg/lgsm-default.cfg delete mode 100644 TeamSpeak3/cfg/lgsm-default.ini delete mode 100644 Teeworlds/cfg/ctf.cfg delete mode 100644 Teeworlds/cfg/dm.cfg delete mode 100644 Teeworlds/cfg/duel.cfg delete mode 100644 Teeworlds/cfg/lgsm-default.cfg delete mode 100644 Teeworlds/cfg/tdm.cfg delete mode 100644 Terraria/cfg/lgsm-default.txt delete mode 100644 UnrealTournament/cfg/Engine.ini delete mode 100644 UnrealTournament/cfg/Game.ini delete mode 100644 WolfensteinEnemyTerritory/cfg/lgsm-default.cfg diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index 3a2f62064..fe8f3d210 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -1,67 +1,93 @@ #!/bin/bash -# 7 Days To Die -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: 7 Days To Die | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161026" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +#### Server Settings #### -# Steam login +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters ip="0.0.0.0" -updateonstart="off" -# http://7daystodie.gamepedia.com/Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | http://7daystodie.gamepedia.com/Server fn_parms(){ parms="-logfile ${gamelogdir}/output_log__`date +%Y-%m-%d__%H-%M-%S`.txt -quit -batchmode -nographics -dedicated -configfile=${servercfgfullpath}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="294420" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="294420" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". # Example: "-beta latest_experimental" branch="" -# Server Details -servicename="sdtd-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="7 Days To Die" engine="unity3d" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="sdtd-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +96,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./7DaysToDieServer.x86" @@ -78,29 +106,26 @@ servercfgdefault="serverconfig.xml" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log/server" scriptlogdir="${rootdir}/log/script" consolelogdir="${rootdir}/log/console" -consolelogging="on" - gamelog="${gamelogdir}/${servicename}-game.log" 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -157,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 core_getopt.sh diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index 940ffee80..cdda3b2f9 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -1,36 +1,28 @@ #!/bin/bash -# ARK: Survivial Evolved -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: ARK: Survival Evolved | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161026" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters servername="ark-server" port="7778" queryport="27015" @@ -38,35 +30,66 @@ rconport="32330" rconpassword="" # Set to enable rcon maxplayers="50" ip="0.0.0.0" -updateonstart="off" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care fn_parms(){ parms="\"TheIsland?listen?MultiHome=${ip}?SessionName=${servername}?MaxPlayers=${maxplayers}?QueryPort=${queryport}?RCONPort=${rconport}?Port=${port}?ServerAdminPassword=${rconpassword}\"" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="376030" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### +## SteamCMD Settings +# Server appid +appid="376030" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="ark-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="ARK: Survivial Evolved" engine="unreal4" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ark-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -75,6 +98,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/ShooterGame" executabledir="${systemdir}/Binaries/Linux" executable="./ShooterGameServer" @@ -83,28 +108,25 @@ servercfg="GameUserSettings.ini" servercfgfullpath="${servercfgdir}/${servercfg}" servercfgdefault="${servercfgdir}/GameUserSettings.ini" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -161,8 +183,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 core_getopt.sh diff --git a/ARKSurvivalEvolved/cfg/lgsm-default.ini b/ARKSurvivalEvolved/cfg/lgsm-default.ini deleted file mode 100644 index e14a10c6f..000000000 --- a/ARKSurvivalEvolved/cfg/lgsm-default.ini +++ /dev/null @@ -1,135 +0,0 @@ -[ServerSettings] -AllowFlyerCarryPvE=False -AllowThirdPersonPlayer=False -AlwaysNotifyPlayerLeft=False -AutoSavePeriodMinutes=15.000000 -ClampResourceHarvestDamage=False -DayCycleSpeedScale=1.000000 -DayTimeSpeedScale=1.000000 -DifficultyOffset=0.200000 -DinoCharacterFoodDrainMultiplier=1.000000 -DinoCharacterHealthRecoveryMultiplier=1.000000 -DinoCharacterStaminaDrainMultiplier=1.000000 -DinoCountMultiplier=1.000000 -DinoDamageMultiplier=1.000000 -DinoResistanceMultiplier=1.000000 -DisableStructureDecayPvE=False -DontAlwaysNotifyPlayerJoined=False -EnablePvPGamma=False -GlobalVoiceChat=False -HarvestAmountMultiplier=1.000000 -HarvestHealthMultiplier=1.000000 -KickIdlePlayersPeriod=2400.000000 -NewMaxStructuresInRange=6000.000000 -NightTimeSpeedScale=1.000000 -NoTributeDownloads=False -PlayerCharacterFoodDrainMultiplier=1.000000 -PlayerCharacterHealthRecoveryMultiplier=1.000000 -PlayerCharacterStaminaDrainMultiplier=1.000000 -PlayerCharacterWaterDrainMultiplier=1.000000 -PlayerDamageMultiplier=1.000000 -PlayerResistanceMultiplier=1.000000 -ProximityChat=False -ProximityVoiceChat=False -PvEStructureDecayDestructionPeriod=0.000000 -PvEStructureDecayPeriodMultiplier=1.000000 -RCONEnabled=True -RCONPort=32330 -ResourcesRespawnPeriodMultiplier=1.000000 -ServerAdminPassword=adminpassword -ServerCrosshair=False -ServerForceNoHUD=False -ServerHardcore=False -ServerPassword= -ServerPVE=False -ShowMapPlayerLocation=False -StructureDamageMultiplier=1.000000 -StructureResistanceMultiplier=1.000000 -TamedDinoDamageMultiplier=1.000000 -TamedDinoResistanceMultiplier=1.000000 -TamingSpeedMultiplier=1.000000 -XPMultiplier=1.000000 - -[/Script/ShooterGame.ShooterGameUserSettings] -MasterAudioVolume=1.000000 -MusicAudioVolume=1.000000 -SFXAudioVolume=1.000000 -VoiceAudioVolume=1.000000 -CameraShakeScale=1.000000 -bFirstPersonRiding=False -bThirdPersonPlayer=False -bShowStatusNotificationMessages=True -TrueSkyQuality=0.270000 -FOVMultiplier=1.000000 -GroundClutterDensity=1.000000 -bFilmGrain=False -bMotionBlur=True -bUseDFAO=True -bUseSSAO=True -bShowChatBox=True -bCameraViewBob=True -bInvertLookY=False -bFloatingNames=True -bChatBubbles=True -bHideServerInfo=False -bJoinNotifications=False -bCraftablesShowAllItems=True -LookLeftRightSensitivity=1.000000 -LookUpDownSensitivity=1.000000 -GraphicsQuality=2 -ActiveLingeringWorldTiles=10 -ClientNetQuality=3 -LastServerSearchType=0 -LastServerSearchHideFull=False -LastServerSearchProtected=False -HideItemTextOverlay=False -bDistanceFieldShadowing=True -LODScalar=1.000000 -HighQualityMaterials=True -HighQualitySurfaces=True -bTemperatureF=False -bDisableTorporEffect=False -bChatShowSteamName=False -bChatShowTribeName=True -EmoteKeyBind1=0 -EmoteKeyBind2=0 -bUseVSync=False -ResolutionSizeX=1280 -ResolutionSizeY=720 -LastUserConfirmedResolutionSizeX=1280 -LastUserConfirmedResolutionSizeY=720 -WindowPosX=-1 -WindowPosY=-1 -bUseDesktopResolutionForFullscreen=False -FullscreenMode=2 -LastConfirmedFullscreenMode=2 -Version=5 - -[ScalabilityGroups] -sg.ResolutionQuality=100 -sg.ViewDistanceQuality=3 -sg.AntiAliasingQuality=3 -sg.ShadowQuality=3 -sg.PostProcessQuality=3 -sg.TextureQuality=3 -sg.EffectsQuality=3 -sg.TrueSkyQuality=3 -sg.GroundClutterQuality=3 -sg.IBLQuality=1 -sg.HeightFieldShadowQuality=3 - -[SessionSettings] -SessionName=arkserver -QueryPort=27015 -Port=7777 -;MultiHome=INSERT_IPv4_HERE ;Example:192.168.0.9. If not just remove any line containing MultiHome. - -[/Script/Engine.GameSession] -MaxPlayers=127 - -[MultiHome] -;MultiHome=True ;If MultiHome=IPv4 is filled in. If not just remove any line containing MultiHome. - -[MessageOfTheDay] -Message=Welcome to ARK Server -Duration=5 diff --git a/Arma3/arma3server b/Arma3/arma3server index e09959ef7..fe41a5cf4 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -1,83 +1,109 @@ #!/bin/bash -# ARMA 3 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs -# Contributor: Scarsz +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: ARMA 3 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) +version="161026" -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +########################## +######## Settings ######## +########################## -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +#### Server Settings #### -# Steam login +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters ip="0.0.0.0" port="2302" -updateonstart="off" - -fn_parms(){ -parms="-netlog -ip=${ip} -port=${port} -cfg=${networkcfgfullpath} -config=${servercfgfullpath} -mod=${mods} -servermod=${servermods} -bepath=${bepath} -autoinit -loadmissiontomemory" -} -# ARMA 3 Modules -# add mods with relative paths: +## ARMA 3 Modules +# Add mods with relative paths: # mods/@cba_a3 -# to load the "Community Base Addons v3" module found in the +# To load the "Community Base Addons v3" module found in the # directory serverfiles/mods/@cba_a3. Load several mods as: # mods="mods/@ace\;mods/@acex\;mods/@cba_a3" mods="" -# Server-side Mods +## Server-side Mods servermods="" -# Path to BattlEye -# leave empty for default +## Path to BattlEye +# Leave empty for default bepath="" -#### Advanced Variables #### +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care +fn_parms(){ +parms="-netlog -ip=${ip} -port=${port} -cfg=${networkcfgfullpath} -config=${servercfgfullpath} -mod=${mods} -servermod=${servermods} -bepath=${bepath} -autoinit -loadmissiontomemory" +} + +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="233780" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="233780" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta development" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="arma3-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="ARMA 3" engine="realvirtuality" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="arma3-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -86,6 +112,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./arma3server" @@ -97,28 +125,25 @@ servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" networkcfgfullpath="${servercfgdir}/${networkcfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories #gamelogdir="" # No server logs available 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -175,8 +200,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 core_getopt.sh diff --git a/Arma3/cfg/lgsm-default.network.cfg b/Arma3/cfg/lgsm-default.network.cfg deleted file mode 100644 index 5bba89f8d..000000000 --- a/Arma3/cfg/lgsm-default.network.cfg +++ /dev/null @@ -1,77 +0,0 @@ -// -// network.cfg - Defines network tuning parameters -// -// This file is to be passed to the -cfg parameter on the command line for the server -// See http://community.bistudio.com/wiki/basic.cfg -// The following settings are the suggested settings - -// BANDWIDTH SETTINGS - -// Bandwidth the server is guaranteed to have (in bps) -// General guideline is NumberOfPlayers * 256kb -// Default: 131072 -MinBandwidth=5120000; -// Bandwidth the server can never go above (in bps) -// For a single server, use full network speed; decrease when running multiple servers -MaxBandwidth=10240000; - -// PACKET SETTINGS - -// Maximum number of packets per frame. -// Increasing the value potentially decreases lag, but increases desync -// Default: 128 -MaxMsgSend=2048; -// Maximum payload of guaranteed packet (in b) -// Small messages are packed to larger packets -// Guaranteed packets are used for non-repetitive events, like shooting -// Lower value means more packets are sent, so less events will get combined -// Default: 512 -MaxSizeGuaranteed=512; -// Maximum payload of non-guaranteed packet (in b) -// Increasing this value may improve bandwidth requirement, but may also increase lag -// Largest factor in desync -// Guidance is half of MaxSizeGuaranteed -// Default: 256 -MaxSizeNonguaranteed=256; -// Maximal size of a packet sent over the network -// Only necessary if ISP forces lower packet size and there are connectivity issues -// Default: 1400 -// class sockets{maxPacketSize=1400}; - -// SMOOTHNESS SETTINGS - -// Minimal error required to send network updates for far units -// Smaller values will make for smoother movement at long ranges, but will increase network traffic -// Default: 0.003 -MinErrorToSend=0.01; -// Minimal error required to send network updates for near units -// Using larger value can reduce traffic sent for near units -// Also controls client to server traffic -// Default: 0.01 -MinErrorToSendNear=0.02; - -// GEOLOCATION SETTINGS - -// Server latitude -serverLatitude=52; -serverLatitudeAuto=52; - -// Server Longitude -serverLongitude=0; -serverLongitudeAuto=0; -// MISC -// View Distance (not sure if this actually works) -viewDistance=10000; - -// Maximum size (in b) for custom face or sound files -// Default: 0 -MaxCustomFileSize=0; -// Server language -language="English"; -steamLanguage="English"; -// Adapter -adapter=-1; -// Windowed mode -Windowed=0; - -3D_Performance=1.000000; \ No newline at end of file diff --git a/Arma3/cfg/lgsm-default.server.cfg b/Arma3/cfg/lgsm-default.server.cfg deleted file mode 100644 index 51b2c26e6..000000000 --- a/Arma3/cfg/lgsm-default.server.cfg +++ /dev/null @@ -1,133 +0,0 @@ -// ArmA 3 Server Config File -// -// More info about parameters: -// https://community.bistudio.com/wiki/server.cfg - - -// PORTS -// please specify the serverport as a parameter in arma3server executable -// it will automatically use the serverport including the next 3 for steam query & steam master. -// the fourth port ist not documented in https://community.bistudio.com/wiki/Arma_3_Dedicated_Server#Port_Forwarding -// Server Port -// default: 2302. -// serverport=2302; - -// Steam Master Port -// default: 2304. -// steamport=2304; - -// Steam Query Port -// default: 2303. -//steamqueryport=2303; - - -// GENERAL SETTINGS - -// Server Name -hostname = "arma3server"; - -// Server Password -//password = "arma3pass"; - -// Admin Password -passwordAdmin = "arma3adminpass"; - -// Server Slots -maxPlayers = 32; - -// Logfile -logFile = "arma3server.log"; - -// Minimum Required Client Build -//requiredBuild = 95691 - -// Message of the Day (MOTD) -motd[]={ - "Welcome to My Arma 3 Server", - "TS3 Server: teamspeak.somewhere.com", - "Web: www.example.com" -}; - -// MOTD Interval (Seconds) -motdInterval = 30; - - -// VOTING - -// Server Mission Start -// minimum number of clients before server starts mission -voteMissionPlayers = 1; - -// Accepted Vote Threshold -// 0.33 = 33% clients. -voteThreshold = 0.33; - -// INGAME SETTINGS - -// Disable Voice over Net (VoN) -// 0 = voice enabled. -// 1 = voice disabled. -disableVoN = 0; - -// VoN Codec Quality -// 0-10 = 8kHz (narrowband). -// 11-20 = 16kHz (wideband). -// 21-30 = 32kHz (ultrawideband). -vonCodecQuality = 3; - -//Persistent Battlefield -// 0 = disable. -// 1 = enable. -persistent = 1; - -// Time Stamp Format -// none, short, full -timeStampFormat = "short"; - - -// SERVER SECURITY/ANTI HACK - -// Verify Signitures for Client Addons -// 0 = off. -// 1 = weak protection (depricated). -// 2 = full protection. -verifySignatures = 2; - -// Secure Player ID -// 1 = Server warning message. -// 2 = Kick client. -requiredSecureId = 2; - -// Kick Duplicate Player IDs -kickDuplicate = 1; - -// BattlEye Anti-Cheat -// 0 = disable -// 1 = enable -BattlEye = 1; - -// Allowed File Extentions -allowedLoadFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"}; -allowedPreprocessFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"}; -allowedHTMLLoadExtensions[] = {"htm","html","xml","txt"}; - -// SCRIPTING ISSUES -onUserConnected = ""; // -onUserDisconnected = ""; // -doubleIdDetected = ""; // - -// SIGNATURE VERIFICATION -// kick = kick (_this select 0) -// ban = ban (_this select 0) -onUnsignedData = "kick (_this select 0)"; -onHackedData = "kick (_this select 0)"; -onDifferentData = ""; - -// HEADLESS CLIENT SUPPORT -// specify ip-adresses of allowed headless clients -// if more than one: -// headlessClients[]={"127.0.0.1", "192.168.0.1"}; -// localClient[]={"127.0.0.1", "192.168.0.1"}; -headlessClients[]={"127.0.0.1"}; -localClient[]={"127.0.0.1"}; -battleyeLicense=1; diff --git a/Battlefield1942/bf1942server b/Battlefield1942/bf1942server index 07dfccc4b..7e10aa02e 100644 --- a/Battlefield1942/bf1942server +++ b/Battlefield1942/bf1942server @@ -1,36 +1,56 @@ #!/bin/bash -# Battlefield: 1942 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Battlefield: 1942 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161026" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### + +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +fn_parms(){ +parms="+hostServer 1 +dedicated 1" +} + +#### LinuxGSM Settings #### -# Email +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email emailalert="off" email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Start Variables +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -fn_parms(){ -parms="+hostServer 1 +dedicated 1" -} #### Advanced Variables #### @@ -41,12 +61,18 @@ githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Server Details -servicename="bf1942-server" +## LinuxGSM Server Details +# Do not edit gamename="Battlefield: 1942" engine="refractor" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="bf1942-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -55,6 +81,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${systemdir}" executable="./start.sh" @@ -63,28 +91,25 @@ servercfgdefault="serversettings.con" servercfgdir="${systemdir}/mods/bf1942/settings" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -141,8 +166,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 core_getopt.sh diff --git a/BlackMesa/bmdmserver b/BlackMesa/bmdmserver index 9f458c29b..3f540c12c 100644 --- a/BlackMesa/bmdmserver +++ b/BlackMesa/bmdmserver @@ -1,77 +1,99 @@ #!/bin/bash -# Black Mesa: Deathmatch -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Black Mesa: Deathmatch | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161026" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="dm_bounce" maxplayers="16" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# Optional: Game Server Login Token +## Optional: Game Server Login Token # GSLT can be used for running a public server. # More info: https://gameservermanagers.com/gslt gslt="" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game bms -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +sv_setsteamaccount ${gslt} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" -# Github Branch Select +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam +## SteamCMD Settings +# Server appid appid="346680" - # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta public-beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="bmdm-server" +## LinuxGSM Server Details +# Do not edit gamename="Black Mesa: Deathmatch" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="bmdm-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -80,6 +102,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/bms" executabledir="${filesdir}" executable="./srcds_run" @@ -88,28 +112,26 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directorie gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -166,8 +188,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 core_getopt.sh diff --git a/BlackMesa/cfg/lgsm-default.cfg b/BlackMesa/cfg/lgsm-default.cfg deleted file mode 100644 index 9a047db15..000000000 --- a/BlackMesa/cfg/lgsm-default.cfg +++ /dev/null @@ -1,24 +0,0 @@ -// Black Mesa server.cfg file -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -mp_timelimit 900 -mp_warmup_time 30 -// sv_lan 0 -// mp_flashlight 1 -// mp_forcerespawn 0 -// mp_friendlyfire 0 -// mp_fraglimit 45 \ No newline at end of file diff --git a/BladeSymphony/bsserver b/BladeSymphony/bsserver index 67c3f5f1f..21444e0c9 100644 --- a/BladeSymphony/bsserver +++ b/BladeSymphony/bsserver @@ -1,72 +1,91 @@ #!/bin/bash -# Blade Symphony -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Blade Symphony | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161026" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +#### Server Settings #### -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="duel_winter" maxplayers="16" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-autoupdate -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" -# Steam -appid="228780" +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### +## SteamCMD Settings +# Server appid +appid="228780" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta nightly -betapassword winteriscoming" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="bs-server" +## LinuxGSM Server Details +# Do not edit gamename="Blade Symphony" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="bs-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -75,6 +94,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/berimbau" executabledir="${filesdir}" executable="./srcds_run.sh" @@ -83,28 +104,24 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -161,8 +178,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 core_getopt.sh diff --git a/BladeSymphony/cfg/lgsm-default.cfg b/BladeSymphony/cfg/lgsm-default.cfg deleted file mode 100644 index c2b66dcbc..000000000 --- a/BladeSymphony/cfg/lgsm-default.cfg +++ /dev/null @@ -1,15 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 \ No newline at end of file diff --git a/BrainBread2/bb2server b/BrainBread2/bb2server index b2c7c49b1..8900e978a 100644 --- a/BrainBread2/bb2server +++ b/BrainBread2/bb2server @@ -1,77 +1,102 @@ #!/bin/bash -# BrainBread 2 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: BrainBread 2 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161026" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login # Steam login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="bba_barracks" maxplayers="20" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# Optional: Game Server Login Token +## Optional: Game Server Login Token # GSLT can be used for running a public server. # More info: https://gameservermanagers.com/gslt gslt="" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game brainbread2 -insecure -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +sv_setsteamaccount ${gslt} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="475370" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### +## SteamCMD Settings +# Server appid +appid="475370" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta_branch" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="bb2-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="BrainBread 2" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="bb2-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -80,6 +105,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/brainbread2" executabledir="${filesdir}" executable="./srcds_run" @@ -88,28 +115,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -166,8 +190,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 core_getopt.sh diff --git a/BrainBread2/cfg/lgsm-default.cfg b/BrainBread2/cfg/lgsm-default.cfg deleted file mode 100644 index e016e66fb..000000000 --- a/BrainBread2/cfg/lgsm-default.cfg +++ /dev/null @@ -1,201 +0,0 @@ -// **************************************************************************** -// * -// BrainBread 2 - server.cfg * -// Version 080116 * -// * -// **************************************************************************** - -// ............................. Basic Settings ............................. // - -// Hostname for server. -hostname "" - -// RCON - remote console password. -rcon_password "" - -// Server password - for private servers. -sv_password "" - -// Contact email for server sysop. -sv_contact "email@example.com" - -// LAN Mode - If set the server will not show on the internet. -// Default: sv_lan 0 -sv_lan 0 - -// Cheats - Allows cheats on the server. Steam achievements and stats are disabled. -// Default: 0 -sv_cheats 0 - -// Friendly Fire - Allows team members to injure other members of their team. -// 0 = Friendly fire off. -// 1 = Friendly fire on. -// Default: 0 -mp_friendlyfire 0 - -// ........................ Game Specific Commands ........................ // -// info: any commands that only apply to this game. - - -// Mercy Value - Sets how many deaths until the players become human once again. -// Default: bb2_allow_mercy 0 -bb2_allow_mercy 3 - -// Late Joining - Allows players to spawn late. -// default bb2_allow_latejoin 0 -bb2_allow_latejoin 1 - -// Player Spawn Protection - Time in seconds after Spawn. -// default bb2_spawn_protection 1 -bb2_spawn_protection 15 - -// Profile System - Allow players to save and load there skills. -// 0 = Disabled, skills are not saved. -// 1 = Global, players can load there global skills. -// 2 = Server, players save there skills to the server. Steam achievements and stats are disabled. -// Default 1 -bb2_allow_profile_system 1 - -// Allow NPC to score - Allow friendly npcs to affect scoring. For example for quests. -// Default 1 -bb2_allow_npc_to_score 0 - -// Vote Settings - -// Voting: Passing Votes - Percentage of players that are required to pass a vote. -// Minimum: 0 -// Maximum: 100 -// Default 50 -bb2_votes_required 50 - -// Voting: Ban Time - Number of minutes a player be banned if a vaote ban passes. -// minimum: 0 (permanent) -// default 30 -bb2_ban_time 30 - - -// Arena Settings - -// Arena: Respawn Interval Time (Seconds). -// Minimum: 20 -// Default 40 -bb2_arena_respawn_time 25 - -// Arena: Number of Reinforcements. -// Minimum: 0 -// Maximum: 100 -// Default 14 -bb2_arena_reinforcement_count 14 - - -// Classic Mode Settings - -// Classic: Zombie No Team Change. -// 0 = Players can become zombies. -// 1 = Players cannot become zombies. -// Default 0 -bb2_classic_zombie_noteamchange 1 - - -// Elimination Settings - -// Elimination: Team Fraglimit - Number of frags for a team to win a game. -// Minimum: 10 -// Default 200 -bb2_elimination_fraglimit 200 - -// Elimination: Respawn Time (Seconds). -// Minimum: 1 -// Maximum: 30 -// Default 4 -bb2_elimination_respawn_time 5 - -// Elimination: Respawn Time Scale - Increase the respawn timer in seconds when a player joins. -// Example: respawn_timer + (joined_players x time_scale) = new_respawn_timer. 14 + (20 x 2) = 54. -// Minimum: 0 -// Maximum: 10 -// Default 1 -bb2_elimination_respawn_time_scale 1 - -// Elimination: Extermination Score - The score a team should be awarded for exterminating (kill everyone before respawn) the other team. -// Minimum: 0 -// Maximum: 50 -// Default 25 -bb2_elimination_score_from_extermination 25 - -// Elimination: Zombie Score - Number of point a zombie gets for a kill. -// Minimum: 2 -// Maximum: 10 -// Default 5 -bb2_elimination_score_zombies 5 - -// Elimination: Team Perk Duration - Number of seconds a team perk lasts. -// Minimum: 5 -// Maximum: 60 -// Default 30 -bb2_elimination_teamperk_duration 30 - -// Elimination: Team Perk Required Kills - Number of kills a team need to get in order to activate a team perk. -// Minimum: 25 -// Maximum: 500 -// Default 50 -bb2_elimination_teamperk_kills_required 50 - - -// Zombie Settings - -// Zombie Lifespan - Number of minutes a regular zombie will last before dying. -// Minimum: 1 -// Default 5 -bb2_zombie_lifespan 2 - -// Max Zombies - Maximum number of zombies allowed in the game. -// Minimum: 1 -// Maximum: 128 -// Default 50 -bb2_zombie_max 45 - - -// M1A1 Abrams Settings - -// M1A1 Abrams: Main Cannon Damage. -// Minimum: 100 -// Maximum: 10000 -// Default 3000 -bb2_m1a1_damage 200 - -// M1A1 Abrams: Machinegun Damage. -// Minimum: 25 -// Maximum: 1000 -// Default 30 -bb2_m1a1_damage_machinegun 25 - -// M1A1 Abrams: Friendly Fire (Including NPC's). -// Minimum: 0 -// Maximum: 1 -// Default 1 -bb2_m1a1_friendly 1 - -// M1A1 Abrams: Machinegun Rate of Fire. -// Minimum: 0.01 -// Maximum: 1 -// Default 0.08 -bb2_m1a1_machinegun_firerate 1 - -// M1A1 Abrams: Explosion Radius. -// Minimum: 200 -// Maximum: 10000 -// Default 500 -bb2_m1a1_radius 500 - -// M1A1 Abrams: Max Sight Range. -// Minimum: 500 -// Maximum: 10000 -// Default 2000 -bb2_m1a1_range_max 1000 - -// M1A1 Abrams: Min Sight Range. -// Minimum: 250 -// Maximum: 5000 -// Default 400 -bb2_m1a1_range_min 250 \ No newline at end of file diff --git a/CodenameCURE/ccserver b/CodenameCURE/ccserver index 43b726b6a..5120d11d0 100644 --- a/CodenameCURE/ccserver +++ b/CodenameCURE/ccserver @@ -1,72 +1,92 @@ #!/bin/bash -# Codename CURE -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Codename CURE | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) +version="161026" -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +########################## +######## Settings ######## +########################## -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="cbe_bunker" maxplayers="6" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game cure -insecure -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="383410" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="383410" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="cc-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Codename CURE" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="cc-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -75,6 +95,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/cure" executabledir="${filesdir}" executable="./srcds_run" @@ -83,28 +105,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -161,8 +180,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/CodenameCURE/cfg/lgsm-default.cfg b/CodenameCURE/cfg/lgsm-default.cfg deleted file mode 100644 index 296c28ec8..000000000 --- a/CodenameCURE/cfg/lgsm-default.cfg +++ /dev/null @@ -1,105 +0,0 @@ -// **************************************************************************** -// * -// CodenameCURE - server.cfg * -// Version 100216 * -// * -// **************************************************************************** - -// ............................. Basic Settings ............................. // - -// Hostname for server. -hostname "" - -// RCON - remote console password. -rcon_password "" - -// Server password - for private servers. -sv_password "" - -// Contact email for server sysop. -sv_contact "email@example.com" - -// LAN Mode - If set the server will not show on the internet. -// Default: sv_lan 0 -sv_lan 0 - -// ............................... Map Cycles ............................... // -// info: There are several predefined mapcycles available that are listed below. -// You can also create your own custom mapcycle. - -// "mapcycle.txt" - all maps -mapcyclefile "mapcycle.txt" - -// ........................ Game Specific Commands ........................ // -// info: any commands that only apply to this game. - -// Difficulty -// 0 - Easy -// 1 - Average -// 2 - Skilled -// 3 - Insane -sv_difficulty "1" - -// Server tags - Tags show up on the in-game server browser. This helps -// users filter servers. -// vanilla - he server runs the default settings. -// custom - the server runs custom gameplay settings or mods. -// example: sv_tags "custom, fastdl" -sv_tags "" - -// ............................. Communication ............................. // - -// Enable communication over voice via microphone. -// Default: sv_voiceenable 1 -sv_voiceenable 1 - -// Players can hear all other players, no team restrictions. -// Default: sv_alltalk 0 -sv_alltalk 1 - -// ............................. Fast Download .............................. // -// info: Allows custom maps to be downloaded to the client. - -// Allows clients to download custom maps and textures etc. from the server at 20 kbps. -// Default: sv_allowdownload 1 -sv_allowdownload 1 - -// Allows clients to download custom maps, textures etc. from a web server with no transfer limit. -// Example: -// server location: maps/custommap.bsp -// web server location: http://example.com/custom/maps/custommap.bsp -// sv_downloadurl "http://example.com/custom" -// Default: sv_downloadurl "" -sv_downloadurl "" - -// ................................ Ban List ............................... // - -// personal banlist based on user IDs. -exec banned_user.cfg - -// personal banlist based on user IPs. -exec banned_ip.cfg - -writeid -writeip - -// ............................. Server Logging ............................. // - -//Enables logging to file, console, and udp < on | off >. -log on - -// Log server bans in the server logs. -// Default: sv_logbans 1 -sv_logbans 1 - -// Echo log information to the console. -// Default: sv_logecho 1 -sv_logecho 1 - -// Log server information in the log file. -// Default: sv_logfile 1 -sv_logfile 1 - -// Log server information to only one file. -// Default: sv_log_onefile 0 -sv_log_onefile 0 diff --git a/CounterStrike/cfg/lgsm-default.cfg b/CounterStrike/cfg/lgsm-default.cfg deleted file mode 100644 index ceb8f9374..000000000 --- a/CounterStrike/cfg/lgsm-default.cfg +++ /dev/null @@ -1,38 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -// disable autoaim -sv_aim 0 - -// disable clients' ability to pause the server -pausable 0 - -// maximum client movement speed -sv_maxspeed 320 - -// 20 minute timelimit -mp_timelimit 20 - -// cheats off -sv_cheats 0 - -// load ban files -exec listip.cfg -exec banned.cfg - - - - diff --git a/CounterStrike/csserver b/CounterStrike/csserver index 9c75a6aa6..14ff451f3 100644 --- a/CounterStrike/csserver +++ b/CounterStrike/csserver @@ -1,67 +1,94 @@ #!/bin/bash -# Counter-Strike -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Counter-Strike | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161026" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="de_dust2" maxplayers="16" port="27015" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game cstrike -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + #### Advanced Variables #### -# Github Branch Select +## SteamCMD Settings +# Server appid +appid="90" +appidmod="cstrike" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="90" -appidmod="cstrike" - -# Server Details -servicename="cs-server" +## LinuxGSM Server Details +# Do not edit gamename="Counter-Strike 1.6" engine="goldsource" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="cs-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/cstrike" executabledir="${filesdir}" executable="./hlds_run" @@ -78,28 +107,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -156,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/CounterStrikeConditionZero/cfg/lgsm-default.cfg b/CounterStrikeConditionZero/cfg/lgsm-default.cfg deleted file mode 100644 index ceb8f9374..000000000 --- a/CounterStrikeConditionZero/cfg/lgsm-default.cfg +++ /dev/null @@ -1,38 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -// disable autoaim -sv_aim 0 - -// disable clients' ability to pause the server -pausable 0 - -// maximum client movement speed -sv_maxspeed 320 - -// 20 minute timelimit -mp_timelimit 20 - -// cheats off -sv_cheats 0 - -// load ban files -exec listip.cfg -exec banned.cfg - - - - diff --git a/CounterStrikeConditionZero/csczserver b/CounterStrikeConditionZero/csczserver index 0a6c49e04..5eb1fb83d 100644 --- a/CounterStrikeConditionZero/csczserver +++ b/CounterStrikeConditionZero/csczserver @@ -1,67 +1,94 @@ #!/bin/bash -# Counter-Strike: Condition Zero -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Counter-Strike: Condition Zero | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161026" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="de_dust2" maxplayers="16" port="27015" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game czero -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## SteamCMD Settings +# Server appid +appid="90" +appidmod="czero" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="90" -appidmod="czero" - -# Server Details -servicename="cscz-server" +## LinuxGSM Server Details +# Do not edit gamename="Counter-Strike: Condition Zero" engine="goldsource" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="cscz-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/czero" executabledir="${filesdir}" executable="./hlds_run" @@ -78,28 +107,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -156,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/CounterStrikeGlobalOffensive/cfg/lgsm-default.cfg b/CounterStrikeGlobalOffensive/cfg/lgsm-default.cfg deleted file mode 100644 index d518c8e0d..000000000 --- a/CounterStrikeGlobalOffensive/cfg/lgsm-default.cfg +++ /dev/null @@ -1,31 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -// Server Hibernation -sv_hibernate_when_empty 1 -sv_hibernate_ms 5 - -// Server Query -// More info at: https://www.gametracker.com/games/csgo/forum.php?thread=91691 -host_name_store 1 -host_info_show 1 -host_players_show 2 - - -exec banned_user.cfg -exec banned_ip.cfg -writeid -writeip diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index 36114ccb3..6ce09436b 100755 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -1,43 +1,35 @@ #!/bin/bash -# Counter-Strike: Global Offensive -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Counter-Strike: Global Offensive | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161026" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters # https://developer.valvesoftware.com/wiki/Counter-Strike:_Global_Offensive_Dedicated_Servers#Starting_the_Server -# [Game Modes] gametype gamemode -# Arms Race 1 0 -# Classic Casual 0 0 -# Classic Competitive 0 1 -# Demolition 1 1 -# Deathmatch 1 2 +# [Game Modes] gametype gamemode +# Arms Race 1 0 +# Classic Casual 0 0 +# Classic Competitive 0 1 +# Demolition 1 1 +# Deathmatch 1 2 gametype="0" gamemode="0" defaultmap="de_dust2" @@ -48,48 +40,78 @@ port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# Required: Game Server Login Token +## Required: Game Server Login Token # GSLT is required for running a public server. # More info: https://gameservermanagers.com/gslt gslt="" -# Optional: Workshop Parameters +## Optional: Workshop Parameters # https://developer.valvesoftware.com/wiki/CSGO_Workshop_For_Server_Operators # To get an authkey visit - http://steamcommunity.com/dev/apikey # authkey="" # ws_collection_id="" # ws_start_map="" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game csgo -usercon -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +sv_setsteamaccount ${gslt} -tickrate ${tickrate} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers_override ${maxplayers} +mapgroup ${mapgroup} +game_mode ${gamemode} +game_type ${gametype} +host_workshop_collection ${ws_collection_id} +workshop_start_map ${ws_start_map} -authkey ${authkey}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="740" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### +## SteamCMD Settings +# Server appid +appid="740" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta 1.35.4.4" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="csgo-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Counter-Strike: Global Offensive" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="csgo-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -98,6 +120,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/csgo" executabledir="${filesdir}" executable="./srcds_run" @@ -106,28 +130,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -184,8 +205,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/CounterStrikeSource/cfg/lgsm-default.cfg b/CounterStrikeSource/cfg/lgsm-default.cfg deleted file mode 100644 index c2b66dcbc..000000000 --- a/CounterStrikeSource/cfg/lgsm-default.cfg +++ /dev/null @@ -1,15 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 \ No newline at end of file diff --git a/CounterStrikeSource/cssserver b/CounterStrikeSource/cssserver index 12ff1df51..716c9904d 100644 --- a/CounterStrikeSource/cssserver +++ b/CounterStrikeSource/cssserver @@ -1,36 +1,28 @@ #!/bin/bash -# Counter-Strike: Source -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Counter-Strike: Source | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161026" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="de_dust2" maxplayers="16" port="27015" @@ -39,39 +31,70 @@ clientport="27005" ip="0.0.0.0" updateonstart="off" -# Required: Game Server Login Token +## Required: Game Server Login Token # GSLT is required for running a public server. # More info: https://gameservermanagers.com/gslt gslt="" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game cstrike -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +sv_setsteamaccount ${gslt} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="232330" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="232330" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta prerelease" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="css-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Counter-Strike: Source" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="css-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -80,6 +103,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/cstrike" executabledir="${filesdir}" executable="./srcds_run" @@ -88,28 +113,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -166,8 +188,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/DayOfDefeat/cfg/lgsm-default.cfg b/DayOfDefeat/cfg/lgsm-default.cfg deleted file mode 100644 index ceb8f9374..000000000 --- a/DayOfDefeat/cfg/lgsm-default.cfg +++ /dev/null @@ -1,38 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -// disable autoaim -sv_aim 0 - -// disable clients' ability to pause the server -pausable 0 - -// maximum client movement speed -sv_maxspeed 320 - -// 20 minute timelimit -mp_timelimit 20 - -// cheats off -sv_cheats 0 - -// load ban files -exec listip.cfg -exec banned.cfg - - - - diff --git a/DayOfDefeat/dodserver b/DayOfDefeat/dodserver index c4e2610fa..5f4787861 100644 --- a/DayOfDefeat/dodserver +++ b/DayOfDefeat/dodserver @@ -1,36 +1,28 @@ #!/bin/bash -# Day of Defeat -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Day of Defeat | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161026" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="dod_Anzio" maxplayers="16" port="27015" @@ -38,30 +30,66 @@ clientport="27005" ip="0.0.0.0" updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game dod -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## SteamCMD Settings +# Server appid +appid="90" +appidmod="dod" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="90" -appidmod="dod" - -# Server Details -servicename="dod-server" +## LinuxGSM Server Details +# Do not edit gamename="Day of Defeat" engine="goldsource" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="dod-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +98,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/dod" executabledir="${filesdir}" executable="./hlds_run" @@ -78,28 +108,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -156,8 +183,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/DayOfDefeatSource/cfg/lgsm-default.cfg b/DayOfDefeatSource/cfg/lgsm-default.cfg deleted file mode 100644 index ceb8f9374..000000000 --- a/DayOfDefeatSource/cfg/lgsm-default.cfg +++ /dev/null @@ -1,38 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -// disable autoaim -sv_aim 0 - -// disable clients' ability to pause the server -pausable 0 - -// maximum client movement speed -sv_maxspeed 320 - -// 20 minute timelimit -mp_timelimit 20 - -// cheats off -sv_cheats 0 - -// load ban files -exec listip.cfg -exec banned.cfg - - - - diff --git a/DayOfDefeatSource/dodsserver b/DayOfDefeatSource/dodsserver index f0b8520e0..f212701b9 100644 --- a/DayOfDefeatSource/dodsserver +++ b/DayOfDefeatSource/dodsserver @@ -1,72 +1,94 @@ #!/bin/bash -# Day of Defeat: Source -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Day of Defeat: Source | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161026" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="dod_Anzio" maxplayers="16" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | ttps://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game dod -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="232290" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### +## SteamCMD Settings +# Server appid +appid="232290" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta prerelease" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="dods-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Day of Defeat: Source" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="dods-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -75,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/dod" executabledir="${filesdir}" executable="./srcds_run" @@ -83,28 +107,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -161,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/DayOfInfamy/cfg/lgsm-default.cfg b/DayOfInfamy/cfg/lgsm-default.cfg deleted file mode 100644 index 364cc1420..000000000 --- a/DayOfInfamy/cfg/lgsm-default.cfg +++ /dev/null @@ -1,16 +0,0 @@ -"hostname" "" -"rcon_password" "" -"mapcyclefile" "mapcycle_tactical_operation.txt" // "tactical operation" mapcycle - firefight, vip, search and destroy -"mp_friendlyfire" "1" // friendly fire -"mp_tkpunish" "1" // How to punish team killing ( 0 = none, 1 = warning, 2 = kill ) -"sv_hud_deathmessages" "0" // death messages -"sv_hud_scoreboard_show_kd" "1" // show k:d on scoreboard -"sv_hud_targetindicator" "1" // show friendly player names when looking at them -"mp_timer_pregame" "10" // timer for the pre-game (before the game starts, usually after map change or on mp_restartgame 1) -"mp_timer_preround" "15" // timer for the pre-round (before the round starts, usually after a previous round ends or on mp_restartround 1) -"mp_timer_postround" "15" // timer for the post-round (after the round starts) -"mp_timer_postgame" "21" // timer for the post-game (at the end of a game / map rotation) -"ins_bot_quota" "0" // if set higher than 0, the server will add this many bots to each team -"sv_deadvoice" "0" // enabling this will allow the dead and living to VOIP each other -"sv_deadchat" "0" // enabling this will allow the dead and living to chat text each other -"sv_deadchat_team" "1" // is deadchat limited to just your team? diff --git a/DayOfInfamy/doiserver b/DayOfInfamy/doiserver index 0decebc06..8f4be1a62 100644 --- a/DayOfInfamy/doiserver +++ b/DayOfInfamy/doiserver @@ -1,36 +1,28 @@ #!/bin/bash -# Day of Infamy -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Day of Infamy | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161026" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="bastogne" maxplayers="16" tickrate="64" @@ -38,37 +30,67 @@ port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" workshop="0" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game doi -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} -tickrate ${tickrate} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers} +sv_workshop_enabled ${workshop}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="462310" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="462310" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="doi-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Day of Infamy" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="doi-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -77,6 +99,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/doi" executabledir="${filesdir}" executable="./srcds_run" @@ -85,28 +109,26 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -163,8 +185,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/DeathmatchClassic/cfg/lgsm-default.cfg b/DeathmatchClassic/cfg/lgsm-default.cfg deleted file mode 100644 index 585afb9e2..000000000 --- a/DeathmatchClassic/cfg/lgsm-default.cfg +++ /dev/null @@ -1,35 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -// disable autoaim -sv_aim 0 - -// disable clients' ability to pause the server -pausable 0 - -// maximum client movement speed -sv_maxspeed 320 - -// 20 minute timelimit -mp_timelimit 20 - -// cheats off -sv_cheats 0 - -// load ban files -exec listip.cfg -exec banned.cfg - diff --git a/DeathmatchClassic/dmcserver b/DeathmatchClassic/dmcserver index c4cb47902..31dda30c3 100644 --- a/DeathmatchClassic/dmcserver +++ b/DeathmatchClassic/dmcserver @@ -1,67 +1,94 @@ #!/bin/bash -# Deathmatch Classic -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Deathmatch Classic | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161026" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="dcdm5" maxplayers="16" port="27015" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game dmc -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## SteamCMD Settings +# Server appid +appid="90" +appidmod="dmc" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="90" -appidmod="dmc" - -# Server Details -servicename="dmc-server" +## LinuxGSM Server Details +# Do not edit gamename="Deathmatch Classic" engine="goldsource" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="dmc-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/dmc" executabledir="${filesdir}" executable="./hlds_run" @@ -78,28 +107,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -156,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/DontStarveTogether/cfg/lgsm-default.ini b/DontStarveTogether/cfg/lgsm-default.ini deleted file mode 100644 index 351a1238c..000000000 --- a/DontStarveTogether/cfg/lgsm-default.ini +++ /dev/null @@ -1,39 +0,0 @@ -[network] -default_server_name = dstserver -default_server_description = Welcome to dstserver -server_port = 10999 -server_password = password - -# max_players = 1 .. 64 -max_players = 16 - -# pvp = true | false -pvp = false - -# game_mode = endless | survival | wilderness -game_mode = endless - -# enable_autosaver = true | false -enable_autosaver = true - -# tick_rate = [ 10 | 15 | 30 | 60 ] -tick_rate = 30 - -connection_timeout = 8000 -server_save_slot = 1 - -# enable_vote_kick = true | false -enable_vote_kick = true - -# pause_when_empty = true | false -pause_when_empty = true - -[account] -dedicated_lan_server = false - -[STEAM] -DISABLECLOUD = true - -[MISC] -CONSOLE_ENABLED = true -autocompiler_enabled = true diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index 973f72c16..a2a6a909a 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -1,70 +1,92 @@ #!/bin/bash -# Dont Starve Together -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Dont Starve Together | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161026" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters ip="0.0.0.0" -updateonstart="off" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | http://dont-starve-game.wikia.com/wiki/Guides/Don%E2%80%99t_Starve_Together_Dedicated_Servers # Overworld: -conf_dir DST_Overworld # Cave: -conf_dir DST_Cave -#http://dont-starve-game.wikia.com/wiki/Guides/Don%E2%80%99t_Starve_Together_Dedicated_Servers fn_parms(){ parms="-console -cluster MyDediServer -shard Master" # -console -cluster MyDediServer -shard Master } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="343050" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### +## SteamCMD Settings +# Server appid +appid="343050" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta anewreignbeta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="dst-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Don't Starve Together" engine="dontstarve" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="dst-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -73,6 +95,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}/bin" executable="./dontstarve_dedicated_server_nullrenderer" @@ -82,28 +106,25 @@ servercfgdir="${HOME}/.klei/DoNotStarveTogether" servercfgfullpath="${servercfgdir}/${servercfg}" servercfgdefault="${servercfgdir}/lgsm-default.ini" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -160,8 +181,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/DoubleActionBoogaloo/cfg/lgsm-default.cfg b/DoubleActionBoogaloo/cfg/lgsm-default.cfg deleted file mode 100644 index c2b66dcbc..000000000 --- a/DoubleActionBoogaloo/cfg/lgsm-default.cfg +++ /dev/null @@ -1,15 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 \ No newline at end of file diff --git a/DoubleActionBoogaloo/dabserver b/DoubleActionBoogaloo/dabserver index 4ee289fb8..9f75798a3 100644 --- a/DoubleActionBoogaloo/dabserver +++ b/DoubleActionBoogaloo/dabserver @@ -1,72 +1,94 @@ #!/bin/bash -# Double Action: Boogaloo -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Double Action: Boogaloo | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161026" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="da_rooftops" maxplayers="10" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="317800" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### +## SteamCMD Settings +# Server appid +appid="317800" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="dab-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Double Action: Boogaloo" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="dab-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -75,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/dab" executabledir="${filesdir}" executable="./dabds.sh" @@ -83,28 +107,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -161,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/EmpiresMod/emserver b/EmpiresMod/emserver index 28ccec4e1..6c2fa539c 100644 --- a/EmpiresMod/emserver +++ b/EmpiresMod/emserver @@ -1,77 +1,78 @@ #!/bin/bash # Empires Mod -# 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="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="emp_district" maxplayers="62" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# Optional: Game Server Login Token +## Optional: Game Server Login Token # GSLT can be used for running a public server. # More info: https://gameservermanagers.com/gslt gslt="" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game empires -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="460040" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="460040" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="em-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Empires Mod" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="em-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -80,6 +81,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/empires" executabledir="${filesdir}" executable="./srcds_run" @@ -88,28 +91,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -166,8 +166,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/FistfulOfFrags/cfg/lgsm-default.cfg b/FistfulOfFrags/cfg/lgsm-default.cfg deleted file mode 100644 index 39783e9d8..000000000 --- a/FistfulOfFrags/cfg/lgsm-default.cfg +++ /dev/null @@ -1,126 +0,0 @@ -// **************************************************************************** -// * -// Fistful of Frags - server.cfg * -// Version 240716 * -// * -// **************************************************************************** - -// ............................. Basic Settings ............................. // - -// Hostname for server. -hostname "" - -// RCON - remote console password. -rcon_password "" - -// Server password - for private servers. -sv_password "" - -// Contact email for server sysop. -sv_contact "email@example.com" - -// LAN Mode - If set the server will not show on the internet. -// Default: sv_lan 0 -sv_lan 0 - -// ............................... Map Cycles ............................... // -// info: There are several predefined mapcycles available that are listed below. -// You can also create your own custom mapcycle. - -// "mapcycle.txt" - All Shootout/2 Team Shootout/4 Team Shootout maps -// "mapcycle_12.txt" - All 12 slot maps for Shootout/2 Team Shootout/4 Team Shootout -// "mapcycle_32.txt" - All 32 slot maps for Shootout/2 Team Shootout/4 Team Shootout -// "mapcycle_tp.txt" - All Teamplay maps -// "mapcycle_vs.txt" - All versus mode maps -// "mapcycle_gt.txt" - All Ghost Town maps -mapcyclefile "mapcycle.txt" - -// ....................... Time Limits/Round Settings ....................... // - -// Time spend on a single map (in minutes) before switching to a new one automatically. -// Default: mp_timelimit 0 -mp_timelimit 15 - -// ........................ Game Specific Commands ........................ // -// info: any commands that only apply to this game. - -// Game Modes -// 1 = Shootout/2 Team Shootout/4 Team Shootout/Ghost Town -// 2 = Teamplay -// 3 = Break Bad -// 4 = Elimination -// 5 = Versus -fof_sv_currentmode 1 - -// Teamplay -// 0 = Free-for-all -// 1 = Team Deathmatch or Teamplay mode -mp_teamplay 0 - -// Team numbers -// 2 = Vigilantes & Desperados -// 3 = Vigilantes, Desperados & Bandidos -// 4 = Vigilantes, Desperados, Bandidos & Rangers -fof_sv_maxteams 4 - -// Friendly fire - Allows team members to injure other members of their team. -// 0 = Friendly fire disabled -// 1 = Friendly fire enabled -mp_friendlyfire 0 - -// ............................. Communication ............................. // - -// Enable communication over voice via microphone. -// Default: sv_voiceenable 1 -sv_voiceenable 1 - -// Players can hear all other players, no team restrictions. -// Default: sv_alltalk 0 -sv_alltalk 1 - -// ............................. Fast Download .............................. // -// info: Allows custom maps to be downloaded to the client. - -// Allows clients to download custom maps and textures etc. from the server at 20 kbps. -// Default: sv_allowdownload 1 -sv_allowdownload 1 - -// Allows clients to download custom maps, textures etc. from a web server with no transfer limit. -// Example: -// server location: maps/custommap.bsp -// web server location: http://example.com/custom/maps/custommap.bsp -// sv_downloadurl "http://example.com/custom" -// Default: sv_downloadurl "" -sv_downloadurl "" - -// ................................ Ban List ............................... // - -// personal banlist based on user IDs. -exec banned_user.cfg - -// personal banlist based on user IPs. -exec banned_ip.cfg - -writeid -writeip - -// ............................. Server Logging ............................. // - -//Enables logging to file, console, and udp < on | off >. -log on - -// Log server bans in the server logs. -// Default: sv_logbans 1 -sv_logbans 1 - -// Echo log information to the console. -// Default: sv_logecho 1 -sv_logecho 1 - -// Log server information in the log file. -// Default: sv_logfile 1 -sv_logfile 1 - -// Log server information to only one file. -// Default: sv_log_onefile 0 -sv_log_onefile 0 diff --git a/FistfulOfFrags/fofserver b/FistfulOfFrags/fofserver index 18d0058cf..fdc6e9665 100644 --- a/FistfulOfFrags/fofserver +++ b/FistfulOfFrags/fofserver @@ -1,72 +1,94 @@ #!/bin/bash -# Fistful Of Frags -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Fistful Of Frags | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161026" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="fof_depot" maxplayers="16" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game fof -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="295230" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### +## SteamCMD Settings +# Server appid +appid="295230" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="fof-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Fistful of Frags" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="fof-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -75,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/fof" executabledir="${filesdir}" executable="./srcds_run" @@ -83,28 +107,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -161,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/GarrysMod/cfg/lgsm-default.cfg b/GarrysMod/cfg/lgsm-default.cfg deleted file mode 100644 index a1e2fd4d6..000000000 --- a/GarrysMod/cfg/lgsm-default.cfg +++ /dev/null @@ -1,86 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 -lua_log_sv 0 - -sv_rcon_banpenalty 0 -sv_rcon_maxfailures 20 -sv_rcon_minfailures 20 -sv_rcon_minfailuretime 20 - -// Network Settings -sv_downloadurl "" -sv_loadingurl "" -net_maxfilesize 64 -sv_maxrate 40000 -sv_minrate 40000 -sv_maxupdaterate 66 -sv_minupdaterate 10 -sv_maxcmdrate 60 -sv_mincmdrate 10 - -// Server Settings -sv_airaccelerate 100 -sv_gravity 600 -sv_allow_wait_command 0 -sv_allow_voice_from_file 0 -sv_turbophysics 0 -sv_max_usercmd_future_ticks 12 -gmod_physiterations 4 -sv_client_min_interp_ratio 1 -sv_client_max_interp_ratio 2 -think_limit 20 -sv_region 0 -sv_noclipspeed 5 -sv_noclipaccelerate 5 -sv_lan 0 -sv_alltalk 1 -sv_contact youremail@changeme.com -sv_cheats 0 -sv_allowcslua 0 -sv_pausable 0 -sv_filterban 1 -sv_forcepreload 1 -sv_footsteps 1 -sv_voiceenable 1 -sv_voicecodec vaudio_speex -sv_timeout 120 -sv_deltaprint 0 -sv_allowupload 0 -sv_allowdownload 0 - -// Sandbox Settings -sbox_noclip 0 -sbox_godmode 0 -sbox_weapons 0 -sbox_playershurtplayers 0 -sbox_maxprops 100 -sbox_maxragdolls 50 -sbox_maxnpcs 10 -sbox_maxballoons 10 -sbox_maxeffects 0 -sbox_maxdynamite 0 -sbox_maxlamps 5 -sbox_maxthrusters 20 -sbox_maxwheels 20 -sbox_maxhoverballs 20 -sbox_maxvehicles 1 -sbox_maxbuttons 20 -sbox_maxemitters 0 - -// Misc Config -exec banned_user.cfg -exec banned_ip.cfg -heartbeat diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index bd73743ea..50622d1c6 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -1,46 +1,32 @@ #!/bin/bash -# Garry's Mod -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Garry's Mod | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161026" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta prerelease " -branch="" - -# Workshop Variables -# http://wiki.garrysmod.com/page/Workshop_for_Dedicated_Servers +## Workshop Parameters | http://wiki.garrysmod.com/page/Workshop_for_Dedicated_Servers workshopauth="" workshopcollectionid="" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="gm_construct" gamemode="sandbox" maxplayers="16" @@ -49,45 +35,75 @@ sourcetvport="27020" clientport="27005" tickrate="66" ip="0.0.0.0" -updateonstart="off" -# Custom Start Parameters +## Custom Start Parameters # Default +r_hunkalloclightmaps 0, fixes a start issue on maps with many lights customparms="+r_hunkalloclightmaps 0" -# Optional: Game Server Login Token +## Optional: Game Server Login Token # GSLT can be used for running a public server. # More info: https://gameservermanagers.com/gslt gslt="" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game garrysmod -strictportbind -ip ${ip} -port ${port} -tickrate ${tickrate} +host_workshop_collection ${workshopcollectionid} -authkey ${workshopauth} +clientport ${clientport} +tv_port ${sourcetvport} +gamemode ${gamemode} +map ${defaultmap} +sv_setsteamaccount ${gslt} +servercfgfile ${servercfg} -maxplayers ${maxplayers} ${customparms}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off] +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="4020" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="4020" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta dev" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="gmod-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Garry's Mod" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="gmod-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -96,6 +112,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/garrysmod" addonsdir="${systemdir}/addons" executabledir="${filesdir}" @@ -105,28 +123,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -183,8 +198,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/GoldenEyeSource/cfg/lgsm-default.cfg b/GoldenEyeSource/cfg/lgsm-default.cfg deleted file mode 100644 index db1a2fdd6..000000000 --- a/GoldenEyeSource/cfg/lgsm-default.cfg +++ /dev/null @@ -1,126 +0,0 @@ -// *********** SERVER & PASSWORD INFO *************** -// Change it to 1 if you want a LAN only Server -// NOTE: You must do "changelevel [levelname]" AFTER starting the server for -// a lan-only server to begin broadcasting -sv_lan 0 - -// Change the number to the region you live in! -// 0=US East coast, 1=US West coast, 2= South America, 3=Europe, 4=Asia, 5=Australia, 6=Middle East, 7=Africa and 255=world -sv_region 0 - -// Give your server a name here -hostname "" - -// Rcon password is used to give your server orders by using console, so think of a good password -rcon_password "" - -// If you want your server to be private, fill in a password and delete the // in front of sv_password -// sv_password "mi6" - -// All talk allows clients to talk to each other via voice even if they are dead, -// spectating, or on the other team -sv_alltalk 1 - -// *********** GOLDENEYE: SOURCE SPECIFIC ********* - -// Radar will show on clients if enabled. Some gameplay scenarios -// force the radar to be visible -ge_allowradar 1 -ge_radar_showenemyteam 1 - -// Paintball mode (for fun!) -ge_paintball 0 - -// Teamplay can be overriden by the current gameplay, but -// this sets our "desired" teamplay state -ge_teamplay 0 - -// *********** GAME SETTINGS, YOU CAN CHANGE THESE THE WAY YOU LIKE IT *************** - -// Allow the use of a flashlight (discouraged for GE:S) -mp_flashlight 0 - -// Disable footstep sounds by uncommenting below -// mp_footsteps 0 - -// 1 enables falling damage, 0 disables it -mp_falldamage 1 - -// Map/match time, in minutes -mp_timelimit 15 - -// Round time, in seconds -ge_roundtime 300 - -// 1 = Forces the engine to use light physics for better server preformance -sv_turbophysics 0 - -// Server round, map, and delay times are defined in Valve.rc -// If you want these times to be reset every map change copy them -// to this file instead (Valve.rc is only executed once on server start) - - -// ********************************************************** -// *********** Load Specific Server Type Settings *********** -// ********************************************************** - -// Uncomment ONE server type to load. This takes care of all settings, map cycles, and gameplay types - -//-- Normal server, recommended settings -exec server_normal.cfg - -//-- N64 Classic Mode ( DM|YOLT|MWGG|LD|LTK, NO Jump ) -// **Use with -maxplayers 4 -//exec server_n64_classic.cfg - -//-- For server with > 24 players -//exec server_large.cfg - -//-- For servers with < 10 players -//exec server_small.cfg - -//-- Vanilla DM only w/ auto teamplay -// **Should be used in conjunction with one of the sizes above -//exec server_dm_only.cfg - -//-- Advanced game modes (LALD, LD, CTK) only -// **Should be used in conjunction with one of the sizes above -//exec server_adv_gamemode.cfg - -//-- Teamplay only! (No MWGG or LALD) -// **Should be used in conjunction with one of the sizes above -//exec server_teamplay.cfg - -//-- Tournament Use Only (Tournament DM) -// **Should be used ALONE only! -//exec server_tournament.cfg - -// Load network settings -exec server_netvalues - -// *********** server logging *********** -log on -sv_logbans 0 -sv_logecho 0 -sv_logfile 1 -sv_log_onefile 0 - - -// *********** DOWNLOAD *********** - -// Allow clients to download files -sv_allowdownload 1 - -// Allow clients to upload customizations files -sv_allowupload 1 - -// VOICE enabled, if you want VOICE disabled then change 1 to 0 -sv_voiceenable 1 - -// *********** CHEATS *********** - -// Enables the use of cheats. ex. "impulse 101" "noclip" -sv_cheats 0 - -// disable clients' ability to pause the server -sv_pausable 0 \ No newline at end of file diff --git a/GoldenEyeSource/gesserver b/GoldenEyeSource/gesserver index 12ac8a165..21d2ce14c 100644 --- a/GoldenEyeSource/gesserver +++ b/GoldenEyeSource/gesserver @@ -1,34 +1,26 @@ #!/bin/bash -# GoldenEye: Source -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: GoldenEye: Source | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161026" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### # Start Variables defaultmap="ge_archives" @@ -37,31 +29,66 @@ port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game gesource -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -# Github Branch Select +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="310" # Source 2007 SDK +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="310" # Source 2007 SDK - -# Server Details -servicename="ges-server" +## LinuxGSM Server Details +# Do not edit gamename="GoldenEye: Source" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ges-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/gesource" executabledir="${filesdir}" executable="./srcds_run" @@ -78,28 +107,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -156,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/HalfLife2Deathmatch/cfg/lgsm-default.cfg b/HalfLife2Deathmatch/cfg/lgsm-default.cfg deleted file mode 100644 index c2b66dcbc..000000000 --- a/HalfLife2Deathmatch/cfg/lgsm-default.cfg +++ /dev/null @@ -1,15 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 \ No newline at end of file diff --git a/HalfLife2Deathmatch/hl2dmserver b/HalfLife2Deathmatch/hl2dmserver index 77ef2a03d..cb048dd93 100644 --- a/HalfLife2Deathmatch/hl2dmserver +++ b/HalfLife2Deathmatch/hl2dmserver @@ -1,67 +1,94 @@ #!/bin/bash -# Half Life 2: Deathmatch -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Half Life 2: Deathmatch | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161026" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="dm_lockdown" maxplayers="16" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game hl2mp -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -# Github Branch Select +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="232370" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="232370" - -# Server Details -servicename="hl2dm-server" +## LinuxGSM Server Details +# Do not edit gamename="Half Life 2: Deathmatch" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="hl2dm-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/hl2mp" executabledir="${filesdir}" executable="./srcds_run" @@ -78,28 +107,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -156,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/HalfLifeDeathmatch/cfg/lgsm-default.cfg b/HalfLifeDeathmatch/cfg/lgsm-default.cfg deleted file mode 100644 index 585afb9e2..000000000 --- a/HalfLifeDeathmatch/cfg/lgsm-default.cfg +++ /dev/null @@ -1,35 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -// disable autoaim -sv_aim 0 - -// disable clients' ability to pause the server -pausable 0 - -// maximum client movement speed -sv_maxspeed 320 - -// 20 minute timelimit -mp_timelimit 20 - -// cheats off -sv_cheats 0 - -// load ban files -exec listip.cfg -exec banned.cfg - diff --git a/HalfLifeDeathmatch/hldmserver b/HalfLifeDeathmatch/hldmserver index 3285f810e..2f0ffc812 100644 --- a/HalfLifeDeathmatch/hldmserver +++ b/HalfLifeDeathmatch/hldmserver @@ -1,66 +1,93 @@ #!/bin/bash -# Half Life: Deathmatch -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Half Life: Deathmatch | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161026" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="crossfire" maxplayers="16" port="27015" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game valve -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -# Github Branch Select +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="90" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="90" - -# Server Details -servicename="hldm-server" +## LinuxGSM Server Details +# Do not edit gamename="Half Life: Deathmatch" engine="goldsource" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="hldm-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -69,6 +96,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/valve" executabledir="${filesdir}" executable="./hlds_run" @@ -77,28 +106,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -155,8 +181,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/HalfLifeDeathmatchSource/cfg/lgsm-default.cfg b/HalfLifeDeathmatchSource/cfg/lgsm-default.cfg deleted file mode 100644 index c2b66dcbc..000000000 --- a/HalfLifeDeathmatchSource/cfg/lgsm-default.cfg +++ /dev/null @@ -1,15 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 \ No newline at end of file diff --git a/HalfLifeDeathmatchSource/hldmsserver b/HalfLifeDeathmatchSource/hldmsserver index 9c1a1040e..286f76824 100644 --- a/HalfLifeDeathmatchSource/hldmsserver +++ b/HalfLifeDeathmatchSource/hldmsserver @@ -1,67 +1,94 @@ #!/bin/bash -# Half-Life Deathmatch: Source -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Half-Life Deathmatch: Source | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161026" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="crossfire" maxplayers="16" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game hl1mp -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="255470" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="255470" - -# Server Details -servicename="hldms-server" +## LinuxGSM Server Details +# Do not edit gamename="Half-Life Deathmatch: Source" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="hldms-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/hl1mp" executabledir="${filesdir}" executable="./srcds_run" @@ -78,19 +107,13 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" @@ -98,8 +121,14 @@ 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 +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" + +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -156,8 +185,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Hurtworld/hwserver b/Hurtworld/hwserver index a72c59e05..126b8c850 100644 --- a/Hurtworld/hwserver +++ b/Hurtworld/hwserver @@ -1,86 +1,106 @@ #!/bin/bash -# Hurtworld -# Server Management Script -# Author: Daniel Gibbs, -# Contributor: UltimateByte +# Project: Game Server Managers - LinuxGSM +# Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Hurtworld | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) +version="161026" -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +########################## +######## Settings ######## +########################## -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +#### Server Settings #### -# Steam login -steamuser="anonymous" -steampass="" - -# Server settings -ip="0.0.0.0" -updateonstart="off" +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters servername="Hurtworld LGSM Server" +ip="0.0.0.0" port="12871" queryport="12881" maxplayers="20" map="" #Optional -creativemode="0" #Free Build +creativemode="0" #Free Build: creativemode="1" logfile="gamelog.txt" -# Adding admins using STEAMID64 +## Adding admins using STEAMID64 # Example : addadmin 012345678901234567; addadmin 987654321098765432 admins="" -# Advanced +## Advanced Server Start Settings # Rollback server state (remove after start command) loadsave="" # Use unstable 64 bit server executable (O/1) x64mode="0" - -# http://hurtworld.wikia.com/wiki/Hosting_A_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | http://hurtworld.wikia.com/wiki/Hosting_A_Server fn_parms(){ parms="-batchmode -nographics -exec \"host ${port} ${map} ${loadsave};queryport ${queryport};maxplayers ${maxplayers};servername ${servername};creativemode ${creativemode};${admins}\" -logfile \"${logfile}\" " } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="405100" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="405100" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta devtest" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="hurtworld-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Hurtworld" engine="unity3d" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="hurtworld-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname=$(basename $(readlink -f "${BASH_SOURCE[0]}")) lockselfname=".${servicename}.lock" @@ -89,6 +109,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" if [ "${x64mode}" == "1" ]; then @@ -97,29 +119,26 @@ else executable="./Hurtworld.x86" fi -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log/server" scriptlogdir="${rootdir}/log/script" consolelogdir="${rootdir}/log/console" -consolelogging="on" - gamelog="${gamelogdir}/${servicename}-game.log" 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -176,8 +195,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Insurgency/insserver b/Insurgency/insserver index 77c32f9c5..903511a4a 100644 --- a/Insurgency/insserver +++ b/Insurgency/insserver @@ -1,36 +1,28 @@ #!/bin/bash -# Insurgency -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Insurgency | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) +version="161026" -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +########################## +######## Settings ######## +########################## -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +#### Server Settings #### -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="ministry" maxplayers="16" tickrate="64" @@ -38,37 +30,67 @@ port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" workshop="0" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game insurgency -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} -tickrate ${tickrate} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers} +sv_workshop_enabled ${workshop} -norestart" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="237410" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="237410" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="ins-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Insurgency" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ins-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -77,6 +99,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/insurgency" executabledir="${filesdir}" executable="./srcds_run" @@ -85,19 +109,13 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" @@ -105,8 +123,14 @@ 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 +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" + +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -163,8 +187,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/JustCause2/cfg/config.lua b/JustCause2/cfg/config.lua deleted file mode 100644 index 1b17103c4..000000000 --- a/JustCause2/cfg/config.lua +++ /dev/null @@ -1,180 +0,0 @@ --- Welcome to the JC2-MP server configuration file! - ---[[ -SERVER OPTIONS - -Server-related options. ---]] -Server = -{ - -- The maximum number of players that can be on the server at any - -- given time. Make sure your connection and server can handle it! - -- Default value: 5000 - MaxPlayers = 5000, - -- Used to control what IP this server binds to. Unless you're a dedicated - -- game host, you don't need to worry about this. - -- Default value: "" - BindIP = "", - -- The port the server uses. - -- Default value: 7777 - BindPort = 7777, - -- The time before a player is timed out after temporarily losing - -- connection, or crashing without properly disconnecting. - -- Default value (in milliseconds): 10000 - Timeout = 10000, - - -- The name of the server, as seen by players and the server browser. - -- Default value: "JC2-MP Server" - Name = "JC2-MP Server", - -- The server description, as seen by players and the server browser. - -- Default value: "No description available" - Description = "No description available.", - -- The server password. - -- Default value: "" - Password = "", - - -- Controls whether the server announces its presence to the master server - -- and therefore to the server browser. - -- Default value: true - Announce = true, - - -- Controls how often synchronization packets are broadcast by the server - -- in milliseconds - -- Default value (in milliseconds): 180 - SyncUpdate = 180, - - -- CAUTION: Setting this variable to true unlocks a number of potentially - -- unsafe operations, which include: - -- * Native Lua packages (.dll, .so) - -- * Execution of Lua from arbitrary paths (Access to loadfile/dofile) - -- * Unbound io functions, allowing for access to the entire file-system - -- Default value: false - IKnowWhatImDoing = false -} - ---[[ -SYNCRATE OPTIONS - -Sync rate options. These values control how often synchronization -packets are sent by the clients, in milliseconds. This lets you -control how frequent the sync comes in, which may result in a -smoother or less laggy experience ---]] -SyncRates = -{ - -- Default value (in milliseconds): 75 - Vehicle = 75, - -- Default value (in milliseconds): 120 - OnFoot = 120, - -- Default value (in milliseconds): 1000 - Passenger = 1000, - -- Default value (in milliseconds): 250 - MountedGun = 250, - -- Default value (in milliseconds): 350 - StuntPosition = 350 -} - ---[[ -STREAMER OPTIONS - -Streamer-related options. The streamer is responsible for controlling the -visibility of objects (including players and vehicles) for other players. - -What this means is that if you want to extend the distance at which objects -remain visible for players, you need to change the StreamDistance. ---]] -Streamer = -{ - -- The default distance before objects are streamed out. - -- Default value (in metres): 500 - StreamDistance = 500 -} - ---[[ -VEHICLE OPTIONS - -Vehicle-related options. ---]] -Vehicle = -{ - -- The number of seconds required for a vehicle to respawn after - -- vehicle death. - -- Default value (in seconds): 10 - -- For instant respawn: 0 - -- For no respawning: nil - DeathRespawnTime = 10, - -- Controls whether to remove the vehicle if respawning is turned off, - -- and the vehicle dies. - -- Default value: false - DeathRemove = false, - - -- The number of seconds required for a vehicle to respawn after it is - -- left unoccupied. - -- Default value (in seconds): 45 - -- For instant respawn: 0 - -- For no respawning: nil - UnoccupiedRespawnTime = 45, - -- Controls whether to remove the vehicle if respawning is turned off, - -- and the vehicle is left unoccupied. - -- Default value: false - UnoccupiedRemove = false, -} - ---[[ -PLAYER OPTIONS - -Player-related options. ---]] -Player = -{ - -- The default spawn position for players. If you do not use a script - -- to handle spawns, such as the freeroam script, then this spawn position - -- will be used. - -- Default value: Vector3( -6550, 209, -3290 ) - SpawnPosition = Vector3( -6550, 209, -3290 ) -} - ---[[ -MODULE OPTIONS - -Lua module-related options. ---]] -Module = -{ - --[[ - To prevent a large number of errors building up, modules are automatically - unloaded after a certain number of errors in a given timespan. Each error - adds to a counter, which is decremented if there has not been an error - in a certain amount of time. - - This allows you to adjust the number of errors before the module is unloaded, - as well as the time since the last error for the counter to be decremented. - --]] - - -- The maximum number of errors before a module is unloaded. - -- Default value: 5 - MaxErrorCount = 5, - -- The time from the last error necessary for the error counter to be decremented. - -- Default value (in milliseconds): 500 - ErrorDecrementTime = 500 -} - ---[[ -WORLD OPTIONS - -Default settings for worlds. ---]] -World = -{ - -- The default time of day at world creation. - -- Default value (in hours): 0.0 - Time = 0.0, - - -- The increment added to the time of day each second. - -- Default value (in minutes): 1 - TimeStep = 1, - - -- The default weather severity at world creation. - -- Default value: 0 - WeatherSeverity = 0 -} diff --git a/JustCause2/jc2server b/JustCause2/jc2server index 2966d9af0..cc2a32d26 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -1,65 +1,88 @@ #!/bin/bash # Just Cause 2 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: GAMENAME | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161026" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### +# No settings available for Just Cause 2 + +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care +fn_parms(){ +parms="" +} + +#### LinuxGSM Settings #### -# Email +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email emailalert="off" email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" -fn_parms(){ -parms="" -} +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" -#### Advanced Variables #### +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +#### LinuxGSM Advanced Settings #### -# Steam +## SteamCMD Settings +# Server appid appid="261140" - # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta publicbeta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="jc2-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Just Cause 2" engine="avalanche" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="jc2-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -68,6 +91,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./Jcmp-Server" @@ -76,28 +101,25 @@ servercfgdefault="config.lua" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories #gamelogdir="" # No server logs available 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -154,8 +176,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/KillingFloor/kfserver b/KillingFloor/kfserver index e4dba3329..543178b2c 100644 --- a/KillingFloor/kfserver +++ b/KillingFloor/kfserver @@ -1,39 +1,34 @@ #!/bin/bash -# Killing Floor -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Killing Floor | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161026" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +#### Server Settings #### -# Steam login +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="KF-BioticsLab.rom" ip="0.0.0.0" -updateonstart="off" fn_parms(){ parms="server ${defaultmap}?game=KFmod.KFGameType?VACSecured=true -nohomedir ini=${servercfg} log=${gamelog}" @@ -43,29 +38,59 @@ parms="server ${defaultmap}?game=KFmod.KFGameType?VACSecured=true -nohomedir ini #parms="server ${defaultmap}?Game=KFStoryGame.KFStoryGame?VACSecured=true -nohomedir ini=${servercfg} log=${gamelog}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="215360" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="215360" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="kf-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Killing Floor" engine="unreal2" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="kf-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -74,6 +99,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/System" executabledir="${systemdir}" executable="./ucc-bin" @@ -83,30 +110,27 @@ servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" compressedmapsdir="${rootdir}/Maps-Compressed" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log/server" scriptlogdir="${rootdir}/log/script" consolelogdir="${rootdir}/log/console" -consolelogging="on" - gamelog="${gamelogdir}/${servicename}-game.log" scriptlog="${scriptlogdir}/${servicename}-script.log" consolelog="${consolelogdir}/${servicename}-console.log" emaillog="${scriptlogdir}/${servicename}-email.log" -gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%d-%m-%Y-%H-%M-%S').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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" +gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -163,8 +187,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Left4Dead/cfg/lgsm-default.cfg b/Left4Dead/cfg/lgsm-default.cfg deleted file mode 100644 index c2b66dcbc..000000000 --- a/Left4Dead/cfg/lgsm-default.cfg +++ /dev/null @@ -1,15 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 \ No newline at end of file diff --git a/Left4Dead/l4dserver b/Left4Dead/l4dserver index 37dc67e5f..79a67cd37 100644 --- a/Left4Dead/l4dserver +++ b/Left4Dead/l4dserver @@ -1,72 +1,93 @@ #!/bin/bash -# Left 4 Dead -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs -# Contributor: Summit Singh Thakur +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Left 4 Dead | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161026" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="l4d_hospital01_apartment" maxplayers="8" port="27015" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game left4dead -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="222840" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### +## SteamCMD Settings +# Server appid +appid="222840" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="l4d-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Left 4 Dead" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="l4d-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -75,6 +96,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/left4dead" executabledir="${filesdir}" executable="./srcds_run" @@ -83,28 +106,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -161,8 +181,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Left4Dead2/cfg/lgsm-default.cfg b/Left4Dead2/cfg/lgsm-default.cfg deleted file mode 100644 index c2b66dcbc..000000000 --- a/Left4Dead2/cfg/lgsm-default.cfg +++ /dev/null @@ -1,15 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 \ No newline at end of file diff --git a/Left4Dead2/l4d2server b/Left4Dead2/l4d2server index 8db8c6638..113e09864 100644 --- a/Left4Dead2/l4d2server +++ b/Left4Dead2/l4d2server @@ -1,71 +1,93 @@ #!/bin/bash -# Left 4 Dead 2 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Left 4 Dead 2 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161026" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="c5m1_waterfront" maxplayers="8" port="27015" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game left4dead2 -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="222860" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### +## SteamCMD Settings +# Server appid +appid="222860" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="l4d2-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Left 4 Dead 2" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="l4d2-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -74,6 +96,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/left4dead2" executabledir="${filesdir}" executable="./srcds_run" @@ -82,28 +106,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -160,8 +181,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Minecraft/cfg/lgsm-default.ini b/Minecraft/cfg/lgsm-default.ini deleted file mode 100644 index 8e350192c..000000000 --- a/Minecraft/cfg/lgsm-default.ini +++ /dev/null @@ -1,40 +0,0 @@ -#Minecraft server properties (LGSM 210516) -#Sat Aug 20 17:30:15 CEST 2016 -allow-flight=false -allow-nether=true -announce-player-achievements=true -difficulty=1 -enable-command-block=false -enable-query=false -enable-rcon=false -force-gamemode=false -gamemode=0 -generate-structures=true -generator-settings= -hardcore=false -level-name=world -level-seed= -level-type=DEFAULT -max-build-height=256 -max-players=20 -max-tick-time=60000 -max-world-size=29999984 -motd=A Minecraft Server -network-compression-threshold=256 -online-mode=true -op-permission-level=4 -player-idle-timeout=0 -pvp=true -rcon.password= -rcon.port=25575 -resource-pack-sha1= -resource-pack= -server-ip= -server-port=25565 -snooper-enabled=true -spawn-animals=true -spawn-monsters=true -spawn-npcs=true -use-native-transport=true -view-distance=10 -white-list=false diff --git a/Minecraft/mcserver b/Minecraft/mcserver index 230da0fa3..7fd41c03b 100644 --- a/Minecraft/mcserver +++ b/Minecraft/mcserver @@ -1,60 +1,88 @@ #!/bin/bash -# Minecraft -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Minecraft | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161026" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### + +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +javaram="1024" # -Xmx$1024M + +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care +fn_parms(){ +parms="nogui" +} +#### LinuxGSM Settings #### -# Email +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email emailalert="off" email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Start Variables +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" -javaram="1024" # -Xmx$1024M -fn_parms(){ -parms="nogui" -} +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -#### Advanced Variables #### +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Server Details -servicename="mc-server" +## LinuxGSM Server Details +# Do not edit gamename="Minecraft" engine="lwjgl2" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="mc-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" lgsmdir="${rootdir}/lgsm" functionsdir="${lgsmdir}/functions" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="java -Xmx${javaram}M -jar minecraft_server.jar" @@ -64,28 +92,25 @@ servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" servercfgdefault="${servercfgdir}/lgsm-default.ini" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -142,8 +167,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index f0c18a521..99746c3a0 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -1,53 +1,78 @@ #!/bin/bash -# Mumble -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs -# Contributor: UltimateByte +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Mumble | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161026" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### +# Use .ini config file for Mumble (Murmur) server. -# Email +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care +fn_parms(){ +parms="-fg -ini ${servercfgfullpath}" +} + +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email emailalert="off" email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Start Variables +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" -fn_parms(){ -parms="-fg -ini ${servercfgfullpath}" -} +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -#### Advanced Variables #### +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Server Details +## LinuxGSM Server Details +# Do not edit gamename="Mumble" + +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers servicename="mumble-server" -# Directories +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -56,6 +81,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./murmur.x86" @@ -64,28 +91,25 @@ servercfgdefault="murmur.ini" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log" 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -142,8 +166,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/NS2Combat/ns2cserver b/NS2Combat/ns2cserver index 4c9dcec4b..74127a45a 100644 --- a/NS2Combat/ns2cserver +++ b/NS2Combat/ns2cserver @@ -1,41 +1,36 @@ #!/bin/bash -# NS2: Combat -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: NS2: Combat | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161026" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +#### Server Settings #### -# Steam login +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="co_core" port="27015" maxplayers="24" ip="0.0.0.0" -updateonstart="off" servername="NS2C Server" webadminuser="admin" webadminpass="admin" @@ -46,34 +41,65 @@ password="" # that the password variable above is not left empty. # -password \"${password}\" -# http://wiki.unknownworlds.com/ns2/Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | http://wiki.unknownworlds.com/ns2/Dedicated_Server fn_parms(){ parms="-name \"${servername}\" -port ${port} -webadmin -webdomain ${ip} -webuser ${webadminuser} -webpassword \"${webadminpass}\" -webport ${webadminport} -map ${defaultmap} -limit ${maxplayers} -config_path \"${servercfgdir}\" -modstorage \"${modstoragedir}\" -mods \"${mods}\"" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="313900" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="313900" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="ns2c-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="NS2: Combat" engine="spark" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ns2c-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -82,6 +108,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}/ia32" executable="./ns2combatserver_linux32" @@ -89,28 +117,25 @@ servercfgdir="${rootdir}/server1" servercfgfullpath="${servercfgdir}" modstoragedir="${servercfgdir}/Workshop" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -167,8 +192,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index 48f22369f..371f8f3fd 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -1,41 +1,36 @@ #!/bin/bash -# Natural Selection 2 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Natural Selection 2 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161026" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +#### Server Settings #### -# Steam login +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="ns2_summit" port="27015" maxplayers="24" ip="0.0.0.0" -updateonstart="off" servername="NS2 Server" webadminuser="admin" webadminpass="admin" @@ -46,34 +41,65 @@ password="" # that the password variable above is not left empty. # -password \"${password}\" -# http://wiki.unknownworlds.com/ns2/Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | http://wiki.unknownworlds.com/ns2/Dedicated_Server fn_parms(){ parms="-name \"${servername}\" -port ${port} -webadmin -webdomain ${ip} -webuser ${webadminuser} -webpassword \"${webadminpass}\" -webport ${webadminport} -map ${defaultmap} -limit ${maxplayers} -config_path \"${servercfgdir}\" -logdir \"${gamelogdir}\" -modstorage \"${modstoragedir}\" -mods \"${mods}\"" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="4940" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="4940" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="ns2-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Natural Selection 2" engine="spark" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ns2-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -82,6 +108,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./server_linux32" @@ -89,28 +117,25 @@ servercfgdir="${rootdir}/server1" servercfgfullpath="${servercfgdir}" modstoragedir="${servercfgdir}/Workshop" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -167,8 +192,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/NoMoreRoomInHell/cfg/lgsm-default.cfg b/NoMoreRoomInHell/cfg/lgsm-default.cfg deleted file mode 100644 index ba48eab5b..000000000 --- a/NoMoreRoomInHell/cfg/lgsm-default.cfg +++ /dev/null @@ -1,121 +0,0 @@ -// **************************************************************************** -// * -// No More Room in Hell - server.cfg * -// Version 100116 * -// * -// **************************************************************************** - -// ............................. Basic Settings ............................. // - -// Hostname for server. -hostname "" - -// RCON - remote console password. -rcon_password "" - -// Server password - for private servers. -sv_password "" - -// Contact email for server sysop. -sv_contact "email@example.com" - -// LAN Mode - If set the server will not show on the internet. -// Default: sv_lan 0 -sv_lan 0 - -// ............................... Map Cycles ............................... // -// info: There are several predefined mapcycles available that are listed below. -// You can also create your own custom mapcycle. - -// "mapcycle.txt" - all maps -// "mapcycle_objective.txt" - objective maps only -// "mapcycle_survival.txt" - survival maps only -// -mapcyclefile "mapcycle.txt" - -// ....................... Time Limits/Round Settings ....................... // - -// Time spend on a single map (in minutes) before switching to a new one automatically. -// Default: mp_timelimit 1 -mp_timelimit 45 - -// Maximum number of rounds to spend on a map before moving to the next one. -// Default: mp_maxrounds 2 -mp_maxrounds 2 - -// ........................ Game Specific Commands ........................ // -// info: any commands that only apply to this game. - -// Difficulty -// info: http://git.io/v35eI -// "casual" - casual difficulty. -// "classic" - classic difficulty. -sv_difficulty "classic" - -// Server tags - Tags show up on the in-game server browser. This helps -// users filter servers. -// vanilla - he server runs the default settings. -// custom - the server runs custom gameplay settings or mods. -// example: sv_tags "custom, fastdl" -sv_tags "" - -// Friendly fire - Allows team members to injure other members of their team. -// Default: mp_friendlyfire 0 -mp_friendlyfire 0 - -// ............................. Communication ............................. // - -// Enable communication over voice via microphone. -// Default: sv_voiceenable 1 -sv_voiceenable 1 - -// Players can hear all other players, no team restrictions. -// Default: sv_alltalk 0 -sv_alltalk 1 - -// ............................. Fast Download .............................. // -// info: Allows custom maps to be downloaded to the client. - -// Allows clients to download custom maps and textures etc. from the server at 20 kbps. -// Default: sv_allowdownload 1 -sv_allowdownload 1 - -// Allows clients to download custom maps, textures etc. from a web server with no transfer limit. -// Example: -// server location: maps/custommap.bsp -// web server location: http://example.com/custom/maps/custommap.bsp -// sv_downloadurl "http://example.com/custom" -// Default: sv_downloadurl "" -sv_downloadurl "" - -// ................................ Ban List ............................... // - -// personal banlist based on user IDs. -exec banned_user.cfg - -// personal banlist based on user IPs. -exec banned_ip.cfg - -writeid -writeip - -// ............................. Server Logging ............................. // - -//Enables logging to file, console, and udp < on | off >. -log on - -// Log server bans in the server logs. -// Default: sv_logbans 1 -sv_logbans 1 - -// Echo log information to the console. -// Default: sv_logecho 1 -sv_logecho 1 - -// Log server information in the log file. -// Default: sv_logfile 1 -sv_logfile 1 - -// Log server information to only one file. -// Default: sv_log_onefile 0 -sv_log_onefile 0 diff --git a/NoMoreRoomInHell/nmrihserver b/NoMoreRoomInHell/nmrihserver index e809b1fa4..449950ce0 100644 --- a/NoMoreRoomInHell/nmrihserver +++ b/NoMoreRoomInHell/nmrihserver @@ -1,77 +1,99 @@ #!/bin/bash -# No More Room in Hell -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: No More Room in Hell | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161026" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="nmo_broadway" maxplayers="8" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# Optional: Game Server Login Token +## Optional: Game Server Login Token # GSLT can be used for running a public server. # More info: https://gameservermanagers.com/gslt gslt="" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game nmrih -insecure -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +sv_setsteamaccount ${gslt} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="317670" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### +## SteamCMD Settings +# Server appid +appid="317670" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="nmrih-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="No More Room in Hell" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="nmrih-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -80,6 +102,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/nmrih" executabledir="${filesdir}" executable="./srcds_run" @@ -88,28 +112,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -166,8 +187,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/OpposingForce/cfg/lgsm-default.cfg b/OpposingForce/cfg/lgsm-default.cfg deleted file mode 100644 index 585afb9e2..000000000 --- a/OpposingForce/cfg/lgsm-default.cfg +++ /dev/null @@ -1,35 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -// disable autoaim -sv_aim 0 - -// disable clients' ability to pause the server -pausable 0 - -// maximum client movement speed -sv_maxspeed 320 - -// 20 minute timelimit -mp_timelimit 20 - -// cheats off -sv_cheats 0 - -// load ban files -exec listip.cfg -exec banned.cfg - diff --git a/OpposingForce/opforserver b/OpposingForce/opforserver index 896a7370e..8b3ca6eb5 100644 --- a/OpposingForce/opforserver +++ b/OpposingForce/opforserver @@ -1,67 +1,94 @@ #!/bin/bash -# Half-Life: Opposing Force -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Half-Life: Opposing Force | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161026" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="op4_bootcamp" maxplayers="16" port="27015" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game gearbox -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## SteamCMD Settings +# Server appid +appid="90" +appidmod="gearbox" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="90" -appidmod="gearbox" - -# Server Details -servicename="opfor-server" +## LinuxGSM Server Details +# Do not edit gamename="Half-Life: Opposing Force" engine="goldsource" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="opfor-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/gearbox" executabledir="${filesdir}" executable="./hlds_run" @@ -78,28 +107,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -156,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/PiratesVikingandKnightsII/cfg/lgsm-default.cfg b/PiratesVikingandKnightsII/cfg/lgsm-default.cfg deleted file mode 100644 index 48ba5072a..000000000 --- a/PiratesVikingandKnightsII/cfg/lgsm-default.cfg +++ /dev/null @@ -1,119 +0,0 @@ -// **************************************************************************** -// * -// Pirates, Vikings, and Knights II * -// Version 100116 * -// * -// **************************************************************************** - -// ............................. Basic Settings ............................. // - -// Hostname for server. -hostname "" - -// RCON - remote console password. -rcon_password "" - -// Server password - for private servers. -sv_password "" - -// Contact email for server sysop. -sv_contact "email@example.com" - -// LAN Mode - If set the server will not show on the internet. -// Default: sv_lan 0 -sv_lan 0 - -// ............................... Map Cycles ............................... // -// You can create your own custom mapcycle. -mapcyclefile "mapcycle.txt" - -// ....................... Time Limits/Round Settings ....................... // - -// Time spend on a single map (in minutes) before switching to a new one automatically. -// Default: mp_timelimit 0 -mp_timelimit 20 - -// Wait for the end of round before changing map. -// Default: mp_timelimit_waitroundend 0 -mp_timelimit_waitroundend 1 - -// Round duration in minutes. -// Default: mp_roundtime 3 -mp_roundtime 3 - -// Round limit in number of rounds. -// Default: mp_roundlimit 0 - -// Win limit in number of rounds. -// Default: mp_winlimit 0 -mp_winlimit 0 - -// ........................ Game Specific Commands ........................ // - -// Server tags - Tags show up on the in-game server browser. This helps -// users filter servers. -// vanilla - he server runs the default settings. -// custom - the server runs custom gameplay settings or mods. -// example: sv_tags "custom, fastdl" -sv_tags "" - -// Friendly fire - Allows team members to injure other members of their team. -// Default: mp_friendlyfire 0 -mp_friendlyfire 0 - -// ............................. Communication ............................. // - -// Enable communication over voice via microphone. -// Default: sv_voiceenable 1 -sv_voiceenable 1 - -// Players can hear all other players, no team restrictions. -// Default: sv_alltalk 0 -sv_alltalk 0 - -// ............................. Fast Download .............................. // -// info: Allows custom maps to be downloaded to the client. - -// Allows clients to download custom maps and textures etc. from the server at 20 kbps. -// Default: sv_allowdownload 1 -sv_allowdownload 1 - -// Allows clients to download custom maps, textures etc. from a web server with no transfer limit. -// Example: -// server location: maps/custommap.bsp -// web server location: http://example.com/custom/maps/custommap.bsp -// sv_downloadurl "http://example.com/custom" -// Default: sv_downloadurl "" -sv_downloadurl "" - -// ................................ Ban List ............................... // - -// personal banlist based on user IDs. -exec banned_user.cfg - -// personal banlist based on user IPs. -exec banned_ip.cfg - -writeid -writeip - -// ............................. Server Logging ............................. // - -//Enables logging to file, console, and udp < on | off >. -log on - -// Log server bans in the server logs. -// Default: sv_logbans 1 -sv_logbans 1 - -// Echo log information to the console. -// Default: sv_logecho 1 -sv_logecho 1 - -// Log server information in the log file. -// Default: sv_logfile 1 -sv_logfile 1 - -// Log server information to only one file. -// Default: sv_log_onefile 0 -sv_log_onefile 0 diff --git a/PiratesVikingandKnightsII/pvkiiserver b/PiratesVikingandKnightsII/pvkiiserver index 19800bb87..5a9e44c50 100644 --- a/PiratesVikingandKnightsII/pvkiiserver +++ b/PiratesVikingandKnightsII/pvkiiserver @@ -1,72 +1,94 @@ #!/bin/bash -# No More Room in Hell -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: No More Room in Hell | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161026" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="bt_island" maxplayers="24" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game pvkii -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="17575" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### +## SteamCMD Settings +# Server appid +appid="17575" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="pvkii-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Pirates, Vikings, and Knights II" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="pvkii-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -75,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/pvkii" executabledir="${filesdir}" executable="./srcds_run" @@ -83,28 +107,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -161,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/ProjectZomboid/cfg/lgsm-default.ini b/ProjectZomboid/cfg/lgsm-default.ini deleted file mode 100644 index 5ca4fe917..000000000 --- a/ProjectZomboid/cfg/lgsm-default.ini +++ /dev/null @@ -1,66 +0,0 @@ -nightlengthmodifier=1.0 -PVP=true -PauseEmpty=false -GlobalChat=true -Open=true -ServerWelcomeMessage= Welcome to Project Zomboid MP ! to chat locally press "t", to global chat press "y" or add "/all" before chatting Press /help to have a list of server commands -LogLocalChat=false -AutoCreateUserInWhiteList=false -DisplayUserName=true -SpawnPoint=0,0,0 -SafetySystem=true -ShowSafety=true -SafetyToggleTimer=100 -SafetyCooldownTimer=120 -SpawnItems= -DefaultPort=16261 -Mods= -Map=Muldraugh, KY -DoLuaChecksum=true -Public=false -PublicName=pzserver -PublicDescription= -MaxPlayers=64 -PingFrequency=10 -PingLimit=400 -HoursForLootRespawn=0 -MaxItemsForLootRespawn=4 -ConstructionPreventsLootRespawn=true -DropOffWhiteListAfterDeath=false -NoFireSpread=false -NoFire=false -AnnounceDeath=false -MinutesPerPage=1.0 -HoursForCorpseRemoval=0.0 -SaveWorldEveryMinutes=0 -PlayerSafehouse=false -AdminSafehouse=false -SafehouseAllowTrepass=true -SafehouseAllowFire=true -SafehouseAllowLoot=true -SafehouseAllowRespawn=false -SafehouseDaySurvivedToClaim=0 -SafeHouseRemovalTime=144 -AllowDestructionBySledgehammer=true -KickFastPlayers=false -RCONPort=27015 -RCONPassword= -Password= -MaxAccountsPerUser=0 -SleepAllowed=false -SleepNeeded=false -SteamPort1=8766 -SteamPort2=8767 -WorkshopItems= -SteamScoreboard=true -SteamVAC=true -UPnP=true -UPnPLeaseTime=86400 -UPnPZeroLeaseTimeFallback=true -UPnPForce=true -CoopServerLaunchTimeout=20 -CoopMasterPingTimeout=60 -server_browser_announced_ip= -UseTCPForMapDownloads=false -PlayerRespawnWithSelf=false -PlayerRespawnWithOther=false \ No newline at end of file diff --git a/ProjectZomboid/pzserver b/ProjectZomboid/pzserver index 711c406eb..e4f369929 100644 --- a/ProjectZomboid/pzserver +++ b/ProjectZomboid/pzserver @@ -1,68 +1,88 @@ #!/bin/bash -# Project Zomboid -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs -# Contributions: Bryce Van Dyk (SingingTree) +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Project Zomboid | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161026" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### + +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +adminpassword="CHANGE_ME" +ip="0.0.0.0" + +fn_parms(){ +parms="-ip ${ip} -adminpassword \"${adminpassword}\"" +} -# Email +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email emailalert="off" email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables -adminpassword="CHANGE_ME" -ip="0.0.0.0" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" -fn_parms(){ -parms="-ip ${ip} -adminpassword \"${adminpassword}\"" -} +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" -#### Advanced Variables #### +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +#### LinuxGSM Advanced Settings #### -# Steam +## SteamCMD Settings +# Server appid appid="380870" - # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta iwillbackupmysave -betapassword iaccepttheconsequences" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="pz-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Project Zomboid" engine="projectzomboid" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="pz-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -71,6 +91,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./start-server.sh" @@ -79,28 +101,25 @@ servercfgdefault="server.cfg" servercfgdir="${HOME}/Zomboid/Server" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${HOME}/Zomboid/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -157,8 +176,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Quake2/cfg/lgsm-default.cfg b/Quake2/cfg/lgsm-default.cfg deleted file mode 100644 index d59e3505f..000000000 --- a/Quake2/cfg/lgsm-default.cfg +++ /dev/null @@ -1,15 +0,0 @@ -set hostname "" -set rcon_password "" -set location "The Internet" -set website "https://gameservermanagers.com/" -set deathmatch 1 -set maxclients 8 -set timelimit 30 -set fraglimit 30 - -map q2dm1 - -// to advertise your server to a public "master server" add something -// like this: -//set public 1 -//setmaster master.q2servers.com diff --git a/Quake2/q2server b/Quake2/q2server index 5a7faaab7..f13373320 100644 --- a/Quake2/q2server +++ b/Quake2/q2server @@ -1,54 +1,78 @@ #!/bin/bash -# Quake 2 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Quake 2 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="210516" - -#### Variables #### +version="161026" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" +#### Server Settings #### -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="q2dm1" ip="0.0.0.0" port="27910" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters fn_parms(){ parms="+set dedicated 1 +set ip ${ip} +set port ${port} +exec ${servercfg} +set deathmatch 1 +map ${defaultmap}" } +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -#### Advanced Variables #### +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Server Details -servicename="quake2server" +## LinuxGSM Server Details +# Do not edit gamename="Quake 2" engine="idtech2" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="quake2server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -57,6 +81,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/baseq2" executabledir="${filesdir}" executable="./quake2" @@ -64,24 +90,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -138,8 +166,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Quake3/cfg/lgsm-default.cfg b/Quake3/cfg/lgsm-default.cfg deleted file mode 100644 index caccea760..000000000 --- a/Quake3/cfg/lgsm-default.cfg +++ /dev/null @@ -1,36 +0,0 @@ -set sv_hostname "" -set sv_maxclients 16 -set g_motd "LGSM Quake3 Server" -set g_forcerespawn 15 -set rconpassword "" -set g_gametype 0 //- Sets the type of game. 0 - Free for all, 1 - Tournament, 2 - Free for all(again), 3 - Team Deathmatch, 4 - Capture the Flag -set fraglimit 50 -set timelimit 20 - -//Here's the map-cycle. When fraglimit or timelimit is reached, the map is automatically changed. -//Otherwise it would just play the same map again. -set m1 "map q3dm1; set nextmap vstr m2" -set m2 "map q3dm2; set nextmap vstr m3" -set m3 "map q3dm3; set nextmap vstr m4" -set m4 "map q3tourney1; set nextmap vstr m5" -set m5 "map q3dm4; set nextmap vstr m6" -set m6 "map q3dm5; set nextmap vstr m7" -set m7 "map q3dm6; set nextmap vstr m8" -set m8 "map q3tourney2; set nextmap vstr m9" -set m9 "map q3dm7; set nextmap vstr m10" -set m10 "map q3dm8; set nextmap vstr m11" -set m11 "map q3dm9; set nextmap vstr m12" -set m12 "map q3tourney3; set nextmap vstr m13" -set m13 "map q3dm10; set nextmap vstr m14" -set m14 "map q3dm11; set nextmap vstr m15" -set m15 "map q3dm12; set nextmap vstr m16" -set m16 "map q3tourney4; set nextmap vstr m17" -set m17 "map q3dm13; set nextmap vstr m18" -set m18 "map q3dm14; set nextmap vstr m19" -set m19 "map q3dm15; set nextmap vstr m20" -set m20 "map q3tourney5; set nextmap vstr m21" -set m21 "map q3dm16; set nextmap vstr m22" -set m22 "map q3dm17; set nextmap vstr m23" -set m23 "map q3dm18; set nextmap vstr m24" -set m24 "map q3dm19; set nextmap vstr m25" -set m25 "map q3tourney6; set nextmap vstr m1" \ No newline at end of file diff --git a/Quake3/q3server b/Quake3/q3server index 6c2e4d844..388fa9a61 100644 --- a/Quake3/q3server +++ b/Quake3/q3server @@ -1,54 +1,79 @@ #!/bin/bash -# Quake 3: Arena -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Quake 3: Arena | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="210516" - -#### Variables #### +version="161026" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" +#### Server Settings #### -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="q3dm17" ip="0.0.0.0" port="27960" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters fn_parms(){ parms="+set sv_punkbuster 0 +set fs_basepath ${filesdir} +set dedicated 1 +set com_hunkMegs 32 +set net_ip ${ip} +set net_port ${port} +exec ${servercfg} +map ${defaultmap}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Server Details -servicename="quake3-server" +## LinuxGSM Server Details +# Do not edit gamename="Quake 3: Arena" engine="idtech3" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="quake3-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -57,6 +82,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/baseq3" executabledir="${filesdir}" executable="./q3ded" @@ -64,24 +91,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -138,8 +167,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 core_getopt.sh \ No newline at end of file diff --git a/QuakeLive/cfg/lgsm-default.cfg b/QuakeLive/cfg/lgsm-default.cfg deleted file mode 100644 index 6dd87b484..000000000 --- a/QuakeLive/cfg/lgsm-default.cfg +++ /dev/null @@ -1,103 +0,0 @@ -// Servers have the ability to run multiple gametypes, known as "factories." You should not add gameplay related -// cvars in the server config: they may get overwritten by the factory. For creating your own sets of gameplay rules, -// create a file ending in ".factories" inside baseq3/scripts, and refer to "Creating custom gametypes" in the -// server_readme.txt file. - -// Be aware that factories can override any cvar, including ones specified in this config file. - -set sv_hostname "" -set sv_tags "" // Comma delimited field of server tags to show in server browser. - // Will automatically include gametype and some gameplay modifications. - // ex. "crouch slide, classic, space" -set sv_mapPoolFile "mappool.txt" // Map pool that the server will use. See default mapcycle.txt for format. - // Built in map pools: mappool.txt, mappool_ca.txt, mappool_ctf.txt, mappool_duel.txt, - // mappool_ffa.txt, mappool_race.txt, mappool_tdm.txt -set g_accessFile "access.txt" // Used to determine which 64-bit Steam IDs have admin access, or are banned. - -set sv_maxClients "16" // How many players can connect at once. -set g_password "" // Set a server-wide password, and stop all users from connecting without it. -set sv_privateClients "0" // Reserve slots that can be used with sv_privatePassword. -set sv_privatePassword "" // Password to use in conjunction with sv_privateClients. -set com_hunkMegs "60" // May need to be increased for additional players. - -// Flood protection will increment everytime the user sends a client command, ex. dropweapon, changing name, color -// model, or chatting. Set g_floodprot_maxcount to 0 to disable completely, but this will allow uncontrolled spam. -set sv_floodprotect "10" // Kick the player when they reach x commands, decreases by 1 every second -set g_floodprot_maxcount "10" // Kick the player when their userinfo flood counter reaches this level. -set g_floodprot_decay "1000" // Decrease the userinfo flood counter by 1 this often, in milliseconds. - -// Add the below values for which callvotes should be DISABLED: -// map 1 -// map_restart 2 -// nextmap 4 -// gametype 8 (ex: "/callvote map campgrounds" will be allowed, but "/callvote map campgrounds ca" will fail) -// kick 16 -// timelimit 32 -// fraglimit 64 -// shuffle 128 -// teamsize 256 -// cointoss/random 512 -// loadouts 1024 -// end-game voting 2048 -// ammo (global) 4096 -// timers (item) 8192 -set g_voteFlags "0" -set g_allowVote "1" // Turn off all votes -set g_voteDelay "0" // Delay allowing votes for x milliseconds after map load. -set g_voteLimit "0" // Limit users to x votes per map. -set g_allowVoteMidGame "0" // Don't allow callvotes once the map has started -set g_allowSpecVote "0" // Allow spectators to call votes - -set sv_warmupReadyPercentage "0.51" // Ratio of players that must be ready before the match starts. -set g_warmupDelay "15" // Wait x seconds before allowing match to start to allow all players to connect. -set g_warmupReadyDelay "0" // Force the game to start after x seconds after someone readies up. -set g_warmupReadyDelayAction "1" // Set to 1 to force players to spectator after g_warmupReady Delay, 2 to force ready up. - -set g_inactivity "0" // Kick players who are inactive for x amount of seconds. -set g_alltalk "0" // 0: Limit voice comms to teams during match - // 1: Allow all players to talk to each other always - // 2: 1+ send back your own voice to yourself for testing - -// System settings - -// Uncomment and set below to use (server.cfg will override commandline!) -// set net_strict "1" // Quit out immediately if we can't bind the IP and port. -// set net_ip "" // Which IP to bind to. Blank will bind to all interfaces. -// set net_port "55555" // Which UDP port to bind to. Blank will start at 27960 and keep going up, if net_strict is 0. -set sv_serverType "2" // 0 = Offline, 1 = LAN, 2 = Internet -set sv_master "1" // Whether the server should respond to queries. Disable this to stop server from appearing in browser. - // (This will affect the LAN browser!) - -set sv_fps "40" // Change how many frames the server runs per second. WARNING: Has not been tested extensively, and - // will have a direct impact on CPU and network usage! - -// Exit the server if idle (not running a map) for a specified time. This will allow it to automatically restart -// in the case of a game error or other problem. A value of "1" is recommended, but not default, when you are running -// the server detached from the terminal. - -set sv_idleExit "120" - -// Enable remote console, provided through ZeroMQ. See zmq_rcon.py for simple client. -// ZMQ rcon binds on a separate port from the game server, and uses TCP. It must differ from the stats port if used. -// Rcon can not be enabled or disabled after launch, nor can the IP and port change. Password can, however. - -// Uncomment and set below to use (server.cfg will override commandline!) -set zmq_rcon_enable "1" -// set zmq_rcon_ip "" -// set zmq_rcon_port "28960" -set zmq_rcon_password "" - -// Enable ZeroMQ stats socket. This will not be much use without a client listening. -// See zmq_stats_verbose.py for example connect and stats printing. -// If not specified, the stats socket will default to the same IP and port as the game server, but on TCP. - -// Uncomment and set below to use (server.cfg will override commandline!) -// set zmq_stats_enable "1" -// set zmq_stats_ip "" -// set zmq_stats_port "" -// set zmq_stats_password "" - -// The server will run serverstartup when it finishes initializing, so start a random map from the map pool. -set serverstartup "startRandomMap" -// Or, start a map of your choosing (factory is required) -// set serverstartup "map campgrounds ffa" \ No newline at end of file diff --git a/QuakeLive/qlserver b/QuakeLive/qlserver index 8eb822ad3..66ef0d890 100755 --- a/QuakeLive/qlserver +++ b/QuakeLive/qlserver @@ -1,36 +1,28 @@ #!/bin/bash -# Quake Live -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Quake Live | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161026" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters arch="x64" # x64 or x86 port="27960" rconport="28960" @@ -39,37 +31,67 @@ statsport="${port}" statspassword="CHANGE_ME" mappool='mappool.txt' ip="0.0.0.0" -updateonstart="off" -# Install/Config Guide : https://steamcommunity.com/sharedfiles/filedetails/?id=542966946 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | Install/Config Guide : https://steamcommunity.com/sharedfiles/filedetails/?id=542966946 # Console Commands : http://www.regurge.at/ql/ fn_parms(){ parms="+set net_strict 1 +set net_ip ${ip} +set net_port ${port} +set fs_homepath ${filesdir}/${port} +set zmq_rcon_enable 1 +set zmq_rcon_port ${rconport} +set zmq_rcon_password ${rconpassword} +set zmq_stats_enable 1 +set zmq_stats_password ${statspassword} +set zmq_stats_port ${statsport} +set sv_mapPoolFile ${mappool} +exec ${servercfg}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="349090" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### +## SteamCMD Settings +# Server appid +appid="349090" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="ql-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Quake Live" engine="idtech3_ql" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ql-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -78,6 +100,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable=$([ "${arch}" == 'x64' ] && echo "./run_server_x64.sh" || echo "./run_server_x86.sh") @@ -86,29 +110,26 @@ servercfgdefault="server.cfg" servercfgdir="${filesdir}/baseq3" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log/server" scriptlogdir="${rootdir}/log/script" consolelogdir="${rootdir}/log/console" -consolelogging="on" - gamelog="${gamelogdir}/${servicename}-game.log" 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -165,8 +186,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/RedOrchestra/roserver b/RedOrchestra/roserver index 788c7cb7d..1ce9e7af9 100644 --- a/RedOrchestra/roserver +++ b/RedOrchestra/roserver @@ -1,62 +1,94 @@ #!/bin/bash -# Red Orchestra: Ostfront 41-45 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Red Orchestra: Ostfront 41-45 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) +version="161026" -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +########################## +######## Settings ######## +########################## -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +#### Server Settings #### -# Steam login +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="RO-Arad.rom" ip="0.0.0.0" -updateonstart="off" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care fn_parms(){ parms="server ${defaultmap}?game=ROGame.ROTeamGame?VACSecured=true -nohomedir ini=${servercfg} log=${gamelog}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="223250" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Server Details -servicename="ro-server" +## LinuxGSM Server Details +# Do not edit gamename="Red Orchestra: Ostfront 41-45" engine="unreal2" -# Steam -appid="223250" +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ro-server" + +#### Directories #### +# Edit with care -# Directories +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -64,6 +96,8 @@ lgsmdir="${rootdir}/lgsm" functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" + +## Server Specific Directories filesdir="${rootdir}/serverfiles" systemdir="${filesdir}/system" executabledir="${systemdir}" @@ -74,30 +108,31 @@ servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" compressedmapsdir="${rootdir}/Maps-Compressed" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log/server" scriptlogdir="${rootdir}/log/script" consolelogdir="${rootdir}/log/console" -consolelogging="on" - gamelog="${gamelogdir}/${servicename}-game.log" scriptlog="${scriptlogdir}/${servicename}-script.log" consolelog="${consolelogdir}/${servicename}-console.log" emaillog="${scriptlogdir}/${servicename}-email.log" -gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%d-%m-%Y-%H-%M-%S').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 +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" +gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%Y-%m-%d-%H:%M:%S').log" + +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -154,8 +189,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Ricochet/cfg/lgsm-default.cfg b/Ricochet/cfg/lgsm-default.cfg deleted file mode 100644 index 585afb9e2..000000000 --- a/Ricochet/cfg/lgsm-default.cfg +++ /dev/null @@ -1,35 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -// disable autoaim -sv_aim 0 - -// disable clients' ability to pause the server -pausable 0 - -// maximum client movement speed -sv_maxspeed 320 - -// 20 minute timelimit -mp_timelimit 20 - -// cheats off -sv_cheats 0 - -// load ban files -exec listip.cfg -exec banned.cfg - diff --git a/Ricochet/ricochetserver b/Ricochet/ricochetserver index 60a9a6b19..a38a67bd6 100644 --- a/Ricochet/ricochetserver +++ b/Ricochet/ricochetserver @@ -1,34 +1,26 @@ #!/bin/bash -# Ricochet -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Ricochet | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) +version="161026" -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +########################## +######## Settings ######## +########################## -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### # Start Variables defaultmap="rc_arena" @@ -36,32 +28,91 @@ maxplayers="16" port="27015" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game ricochet -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +########################## +######## Settings ######## +########################## + +#### Server Settings #### + +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login +steamuser="username" +steampass="password" + +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +ip="0.0.0.0" + +## Optional: Game Server Login Token +# GSLT can be used for running a public server. +# More info: https://gameservermanagers.com/gslt +gslt="" + +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +fn_parms(){ +parms="" +} + +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="90" +appidmod="ricochet" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="90" -appidmod="ricochet" - -# Server Details -servicename="ricochet-server" +## LinuxGSM Server Details +# Do not edit gamename="Ricochet" engine="goldsource" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ricochet-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +121,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/ricochet" executabledir="${filesdir}" executable="./hlds_run" @@ -78,28 +131,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -156,8 +206,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Rust/cfg/lgsm-default.cfg b/Rust/cfg/lgsm-default.cfg deleted file mode 100644 index 225215e01..000000000 --- a/Rust/cfg/lgsm-default.cfg +++ /dev/null @@ -1,48 +0,0 @@ -# This file does not include all possible commands but it includes the most common/useful ones. -# If you want to see all possible comands, in the server console type: find . - -# Before some variables are a # symbol. This means it is disabled. Remove the # symbol to enable them. - -######################################### -# Important Settings You Need To Change # -######################################### - -# A text description of your server. For a new line add: \n -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/GameServerManagers/LinuxGSM/raw/master/images/logo/lgsm-full-light.png" - -# The URL to your servers website. -server.url "https://gameservermanagers.com/" - -#################################### -# Optional Settings You Can Change # -#################################### - -# A value of false makes text chat location based only (players need to be close to each other). -# Values: true, false -#server.globalchat true - -# Controls if player vs player damage is allowed. If your server is primarily for building, you'll want to set this to false -# Values: true, false -#server.pve false - -# Controls fall damage. -# Values: true, false -#falldamage.enabled true - -# Helicopter bullet accuracy. Higher numbers are less accurate. -#heli.bulletAccuracy 2 - -################################################ -# Settings That Will Lag Server Is Set Too Low # -################################################ - -# Changes how often resources respawn. -#spawn.min_rate 0.1 -#spawn.max_rate 1 - -# Changes how close resources spawn to each other. -#spawn.min_density 0.1 -#spawn.max_density 1 diff --git a/Rust/rustserver b/Rust/rustserver index 19e3e4723..fb83bd11e 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -1,53 +1,43 @@ #!/bin/bash -# Rust -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs -# Contributor: UltimateByte (LGSM adaptation), Wulf (Information) +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Rust | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) +version="161026" -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +########################## +######## Settings ######## +########################## -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +#### Server Settings #### -# Steam login (not required) -steamuser="anonymous" -steampass="" - -# Server settings +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters # More settings available after install in serverfiles/server/rust-server/server.cfg servername="Rust" ip="0.0.0.0" -updateonstart="off" port="28015" rconport="28016" rconpassword="CHANGE_ME" maxplayers="50" - -# Advanced +# Advanced Start Settings seed="" # default random; range : 1 to 2147483647 ; used to change or reproduce a procedural map worldsize="3000" # default 3000; range : 1000 to 6000 ; map size in meters saveinterval="300" # Auto-save in seconds tickrate="30" # default 30; range : 15 to 100 -# https://developer.valvesoftware.com/wiki/Rust_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Rust_Dedicated_Server fn_parms(){ parms="-batchmode +server.ip ${ip} +server.port ${port} +server.tickrate ${tickrate} +server.hostname \"${servername}\" +server.identity \"${servicename}\" ${conditionalseed} +server.maxplayers ${maxplayers} +server.worldsize ${worldsize} +server.saveinterval ${saveinterval} +rcon.ip ${ip} +rcon.port ${rconport} +rcon.password \"${rconpassword}\" -logfile ${gamelogfile}" } @@ -61,29 +51,59 @@ else conditionalseed="" fi -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="258550" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="258550" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta prerelease" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="rust-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Rust" engine="unity3d" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="rust-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname=$(basename $(readlink -f "${BASH_SOURCE[0]}")) lockselfname=".${servicename}.lock" @@ -92,6 +112,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./RustDedicated" @@ -101,30 +123,27 @@ servercfgdefault="server.cfg" servercfgdir="${serveridentitydir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log/server" scriptlogdir="${rootdir}/log/script" consolelogdir="${rootdir}/log/console" -consolelogging="on" - gamelog="${gamelogdir}/${servicename}-game.log" scriptlog="${scriptlogdir}/${servicename}-script.log" consolelog="${consolelogdir}/${servicename}-console.log" emaillog="${scriptlogdir}/${servicename}-email.log" -gamelogfile="\"gamelog-$(date '+%Y-%m-%d-%H-%M-%S').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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" +gamelogfile="\"gamelog-$(date '+%Y-%m-%d-%H-%M-%S').log\"" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -181,8 +200,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/SeriousSam3BFE/cfg/lgsm-default.ini b/SeriousSam3BFE/cfg/lgsm-default.ini deleted file mode 100644 index 1bf1a3c90..000000000 --- a/SeriousSam3BFE/cfg/lgsm-default.ini +++ /dev/null @@ -1,49 +0,0 @@ --- Generated with Server GUI 3 --- http://mrag.nl/sgui3/ - --- General -rcts_strWelcomeNote = "Server RCON MOTD"; -rcts_strAdminPassword = "rconpassword"; -prj_strLogFile = ""; -net_strLocalHost = ""; -gam_idGameMode = "Cooperative"; -ser_iMaxClientBPS = 11000; -prj_iDedicatedFPS = 100; -gam_ctMaxPlayers = 12; -prj_uwPort = 27015; -prj_strMultiplayerSessionName = "Serious Sam 3 Server"; - --- Options -gam_bAllowJoinInProgress = 1; -gam_bAllowPowerupItems = 1; -gam_bAllowArmorItems = 1; -gam_bWeaponsStay = 1; -gam_bAmmoStays = 1; -gam_bArmorStays = 1; -gam_bHealthStays = 1; -gam_bAllowHealthItems = 1; -gam_bInfiniteAmmo = 0; - --- Levels -local mapList = ""; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\01_CairoSquare\01_CairoSquare.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\02_CairoMuseum\02_CairoMuseum.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\03_IbnTulun\03_IbnTulun.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\04_IbnTulun\04_Medina.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\05_CairoTown\05_CairoTown.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\06_Pyramids\06_Pyramids.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\07_Karnak1\07_Karnak1.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\08_Karnak2\08_Karnak2.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\09_Luxor\09_Luxor.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\10_LostNubianTemples\10_LostNubianTemples.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\11_Ramesseum\11_Ramesseum.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\12_HatshepsutTemple\12_HatshepsutTemple.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\02_DLC\01_Philae\01_Philae.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\02_DLC\02_AbuSimbel\02_AbuSimbel.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\02_DLC\03_TempleOfSethirkopshef\03_TempleOfSethirkopshef.wld;"; -prj_StrMapList = mapList; - --- Scripts - --- Custom - diff --git a/SeriousSam3BFE/help/DedicatedServer_Readme.txt b/SeriousSam3BFE/help/DedicatedServer_Readme.txt deleted file mode 100644 index cf5aa8094..000000000 --- a/SeriousSam3BFE/help/DedicatedServer_Readme.txt +++ /dev/null @@ -1,139 +0,0 @@ -Serious Engine Dedicated Server -=============================== - -1. Starting and stopping the dedicated server ---------------------------------------------- - -You can launch the dedicated server either from the Steam client's Tools tab, or by directly starting its executable file. In either case, a Steam client needs to be running on that machine, though the user logged in doesn't have to actually own the game. - -In absence of any further configuration, the server will start the first level of the Coop campaign, with all default settings, on the default port. - -The server will pause immediately after the first level is loaded, and wait for players to join, to conserve the game state. When the first player joins, the game will unpause. - -When all players disconnect, the server will restart its session from the first level again. - -To stop the server, press Ctrl+C in its console window and wait until it shuts down. - -2. Server ports ---------------- - -The server will be immediately visible on your LAN, but to make sure it is also visible on the internet, you need to open the port 27016. Note that this is only game enumeration port, as the game traffic port cannot be specified at the moment, thus this will not alleviate the need for NAT punching. I.e. it is not recommended to run a dedicated server behind a NAT/router that doesn't properly support NAT punching, or otherwise all connections to it will have very high pings. We expect the game traffic port to be specifiable in one of the future updates, but it is not currently possible. - -If you want to allow remote administration (see the section about remote administration below), you need to also forward port 27015 (TCP-only). - -You can change the port that the server is running on using the command-line option "+port". The server will use the given port for Rcon administration and the given port +1 for game enumeration (see above). So, e.g. if you use "+port 25600", game enumeration will work on port 25601 and rcon on port 25600. When game traffic specification becomes possible, it will be on port 25600 in the example, but this is currently not supported. - -You can change the network interface that the server will bind to using the command-line option "+ip". This is used both fr Rcon administration and for game enumeration. When game traffic specification becomes possible, it will also use this, but this is currently not supported (game traffic chooses an interface automatically). - -3. Command line ---------------- - -Command line options can be used to modify any cvar using this format: - -SamHD_DedicatedServer.exe +cvarname1 cvarvalue1 +cvarname2 cvarvalue2 ... +cvarnameN cvarvalueN - -Quotes are needed around values that contain spaces. Cvar names in the command line can be either short names (e.g. +level "Path/Level") where available, or long names (+gam_strLevel "Path/Level"). - -4. Configuration scripts ------------------------- - -When starting, in addition to the command line option, the server will read configuration parameters from the following sources (in this order): - * Content/SeriousSamHD/Config/dedicatedserver.cfg, - * eventual custom script specified via the +exec command line option, - * eventual per-session script specified via the +gameoptions command line option. -The first two are read once on boot, the last one is read on each session start and restart. (When all player's disconnect, the server will load this again before starting the first level.) - -All of those scripts are fully-featured console scripts, i.e. they use the Lua programming language, so you can put ifs, functions and other programming constructs in them. For a full syntax description and other documentation regarding the Lua programming language, please visit: http://www.lua.org . - -Dedicated server does not load or save any .ini files. - -5. Most relevant command line options and cvars ------------------------------------------------ -(long name shown in parentheses) - * +gamemode (gam_idGameMode) - Valid values are: - (cooperative group) - Cooperative (this is the default) - CooperativeCoinOp - TeamSurvival - (versus group) - BeastHunt - CaptureTheFlag - Deathmatch - InstantKill - LastManStanding - LastTeamStanding - MyBurden - TeamBeastHunt - TeamDeathmatch - Note that players can vote to change the game mode, but they cannot switch a server from Cooperative modes to Versus modes or vice versa. - IMPORTANT: Changing this option resets all other gam_ options to defaults for that game mode. If you are also customizing other gam_ options from a script or via Rcon, make sure you change gam_idGameMode first, and then change all others! - * +level (gam_strLevel) - Specifies which level to start. Path is relative to the folder the game was installed in. If not specified, the server will start the default first level. - * +maxplayers (gam_ctMaxPlayers) - Max number of players in the session. Cannot be higher than 16. - * +port (prj_uwPort) - Specifies the port number to start the server on. Default is 27015. - * +ip (net_strLocalHost) - Specifies the network interface to start the server on. Default is empty, meaning automatic. - * +fps (prj_iDedicatedFPS) - Specifies the framerate the dedicated server will run in (min 10). - * +exec (prj_strExecCfg) - Specifies the configuration file to execute when the server first starts. - * +gameoptions (prj_strOptionsScript) - Specifies the game options script to execute. It is executed whenever the server (re)starts the first level. - * +sessionname (prj_strMultiplayerSessionName) - Session name that will be displayed in the server browser. If you don't set this, current username from Windows will be shown. - * +rconpass (rcts_strAdminPassword) - Password used to connect to the server via Rcon (see "Remote administration" above). - * +logfile (prj_strLogFile) - Save the DedicatedServer.log into a different file. Useful if you want to run multiple servers from the same installation. - -NOTE: You can use any of the standard game options like gam_bInifiniteAmmo that customize the gameplay, but note that gam_bCustomizeDifficulty is required for them to take effect! - -6. Some other useful console variables and functions ----------------------------------------------------- - - * gamListPlayers() - print the list of all players to the console in format: 'playerindex: playername' - * gamKickByName() - kick the client with the given player name out of the game - * gamKickByIndex() - kick the client with the given index out of the game - * gamBanByName() - ban the client with the given player name out of the game - * gamBanByIndex() - ban the client with the given index out of the game - - * gamRestartServer() - restarts the dedicated server (disconnects all players) so any changes to game settings or other server options can take effect - * gamRestartGame() - restart game with new session params without disconnecting players - * samRestartMap() - restart the current map (without disconnecting all players) so any changes to game difficulty and similar options can take effect - * gamStop() - stops the current game - * gamStart() - start game with new session params without disconnecting players - * samVotePass() - force the current vote to pass - * samVoteFail() - force the current vote to fail - - * ser_iMaxClientBPS - limit the bandwidth used by each individual client on the server. This caps the cli_iMaxBPS on the server side. - * prj_strMapList - Semicolon separated list of maps used for multiplayer map rotation. - * prj_strMapListFile - Path to the file containing a list of maps used for multiplayer map rotation. - * prj_strDefaultMapDir - Default map folder to use for the map list (specified either by prj_strMapList or prj_strMapListFile). To make it posible to specify map names in a short form, if a '#' prefix is used in a map path, the '#' char will be replaced by the value of this cvar. - -All other cvars and cfuncs can be used, most notable are cvars with "gam_" prefix which can be used to setup difficulty options and similar. To get the list of those or more details about them, use the game client's console with its autocompletion and help. - -7. Remote administration (RCon) -------------------------------- - -Remote administration of Serious Sam HD dedicated servers is implemented via the Telnet protocol. Use any telnet client (e.g. telnet.exe) to connect to the IP and port the server is running on (default is 27015). - -Example: -C:\> telnet my.server.ip 27015 - -(*) NOTE: On Vista and Win7, the telnet command is not installed by default. You need to enable it using the "Turn Windows features on or off" section of the Control Panel. - -You need to specify the rcon password (using the +rconpass "password" command-line option) when starting the server, otherwise it won't allow you to connect to it via Rcon. Also make sure the appropriate port is open, as explained above. - -After entering the correct rcon password, the telnet client will behave similarly to the in-game console (except that SHIFT+TAB combo doesn't work). Additionally you can type a question mark ("?"), followed by a cvar or cfunc to get the help about it. - -8. Example configuration script -------------------------------- - -Here's an example config script. Put that in a text file named "server.cfg" in the root of the game installation (parent of Bin/), and specify "+exec server.cfg" in the command line (without quotes). - ---------8<----- cut here ----------- - -rconpass = "SuperSecretPassword"; -- MAKE SURE YOU CHANGE THIS!!!! -sessionname = "My Server Name" -- set this to the name of your server - -gam_ctMaxPlayers = 8 -gamemode="Deathmatch" -gam_bAutoCycleMaps = 1 - -local prj_strMapList = { - "#SunPalace.wld", -- put a list of map file names for rotation here -} - ---------8<------cut here ---------- \ No newline at end of file diff --git a/SeriousSam3BFE/ss3sserver b/SeriousSam3BFE/ss3sserver index 852c6a518..39f10db0c 100644 --- a/SeriousSam3BFE/ss3sserver +++ b/SeriousSam3BFE/ss3sserver @@ -1,67 +1,89 @@ #!/bin/bash -# Serious Sam 3: BFE -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Sam 3: BFE | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161026" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### + +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +ip="0.0.0.0" -# Email +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://raw.githubusercontent.com/GameServerManagers/Game-Server-Configs/master/SeriousSam3BFE/help/DedicatedServer_Readme.txt +fn_parms(){ +parms="+ip ${ip} +logfile ${gamelog} +exec ${servercfgfullpath}" +} + +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email emailalert="off" email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables -ip="0.0.0.0" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" -# https://raw.githubusercontent.com/GameServerManagers/LinuxGSM/master/SeriousSam3BFE/help/DedicatedServer_Readme.txt -fn_parms(){ -parms="+ip ${ip} +logfile ${gamelog} +exec ${servercfgfullpath}" -} +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" -#### Advanced Variables #### +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +#### LinuxGSM Advanced Settings #### -# Steam +## SteamCMD Settings +# Server appid appid="41080" - # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta publicbeta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="ss3-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Serious Sam 3: BFE" engine="seriousengine35" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ss3-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +92,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/Bin" executable="./runSam3_DedicatedServer.sh" executabledir="${systemdir}" @@ -78,30 +102,27 @@ servercfgdefault="server.ini" servercfgdir="${filesdir}/Content/SeriousSam3/Config" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log/server" scriptlogdir="${rootdir}/log/script" consolelogdir="${rootdir}/log/console" -consolelogging="on" - gamelog="${gamelogdir}/${servicename}-game.log" scriptlog="${scriptlogdir}/${servicename}-script.log" consolelog="${consolelogdir}/${servicename}-console.log" emaillog="${scriptlogdir}/${servicename}-email.log" -gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%d-%m-%Y-%H-%M-%S').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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" +gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -158,8 +179,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Starbound/cfg/lgsm-default.config b/Starbound/cfg/lgsm-default.config deleted file mode 100644 index 275898d2b..000000000 --- a/Starbound/cfg/lgsm-default.config +++ /dev/null @@ -1,49 +0,0 @@ -{ - "allowAdminCommands" : true, - "allowAdminCommandsFromAnyone" : false, - "allowAnonymousConnections" : true, - "allowAssetsMismatch" : true, - "anonymousConnectionsAreAdmin" : false, - "bannedIPs" : [], - "bannedUuids" : [], - "checkAssetsDigest" : false, - "clearPlayerFiles" : false, - "clearUniverseFiles" : false, - "clientIPJoinable" : false, - "clientP2PJoinable" : true, - "configurationVersion" : { - "basic" : 1, - "server" : 4 - }, - "crafting" : { - "filterHaveMaterials" : false - }, - "gameServerBind" : "::", - "gameServerPort" : 21025, - "interactiveHighlight" : true, - "inventory" : { - "pickupToActionBar" : true - }, - "maxPlayers" : 8, - "maxTeamSize" : 4, - "playerBackupFileCount" : 3, - "queryServerBind" : "::", - "queryServerPort" : 21025, - "rconServerBind" : "::", - "rconServerPassword" : "", - "rconServerPort" : 21026, - "rconServerTimeout" : 1000, - "runQueryServer" : false, - "runRconServer" : false, - "safeScripts" : true, - "scriptInstructionLimit" : 10000000, - "scriptInstructionMeasureInterval" : 10000, - "scriptProfilingEnabled" : false, - "scriptRecursionLimit" : 100, - "serverFidelity" : "automatic", - "serverName" : "", - "serverOverrideAssetsDigest" : null, - "serverUsers" : { - }, - "tutorialMessages" : true -} \ No newline at end of file diff --git a/Starbound/sbserver b/Starbound/sbserver index cbe75f260..b569f0a85 100644 --- a/Starbound/sbserver +++ b/Starbound/sbserver @@ -1,66 +1,93 @@ #!/bin/bash -# Starbound -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Starbound | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161026" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +#### Server Settings #### -# Steam login +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters ip="0.0.0.0" -updateonstart="off" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care fn_parms(){ parms="" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="211820" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="211820" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="sb-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Starbound" engine="starbound" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="sb-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -69,6 +96,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}/linux" executable="./starbound_server" @@ -77,28 +106,25 @@ servercfgdefault="starbound_server.config" servercfgdir="${filesdir}/storage" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${filesdir}/storage" 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -155,8 +181,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/SvenCoop/cfg/lgsm-default.cfg b/SvenCoop/cfg/lgsm-default.cfg deleted file mode 100644 index 6bc0822bc..000000000 --- a/SvenCoop/cfg/lgsm-default.cfg +++ /dev/null @@ -1,36 +0,0 @@ -//---------------------------------------------- -// Sven Co-op v5.0 Default Server CFG -//---------------------------------------------- - -//---------------------------------------------- -// See server_example.cfg for more available -// commands and settings. -//---------------------------------------------- - -hostname "" -log "on" - -rcon_password "" -//sv_password "" - -sys_ticrate 100 -deathmatch 1 -decalfrequency 30 -hpk_maxsize 2 -pausable 0 - -sv_aim 0 -sv_allowdownload 1 -sv_allowupload 1 -sv_region 255 -sv_send_resources 1 -sv_voicecodec "voice_speex" -sv_voiceenable 1 -sv_voicequality 5 - -mp_telefrag 1 -mp_timelimit 99 -mp_weaponstay 1 - -exec banned.cfg -exec listip.cfg \ No newline at end of file diff --git a/SvenCoop/svenserver b/SvenCoop/svenserver index 2e9257204..449c66b47 100644 --- a/SvenCoop/svenserver +++ b/SvenCoop/svenserver @@ -1,71 +1,93 @@ #!/bin/bash -# Sven Co-op -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Sven Co-op | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161026" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="svencoop1" maxplayers="16" port="27015" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game svencoop -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="276060" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### +## SteamCMD Settings +# Server appid +appid="276060" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta release_candidate_public" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="svencoop-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Sven Co-op" engine="goldsource" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="svencoop-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -74,6 +96,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/svencoop" executabledir="${filesdir}" executable="./svends_run" @@ -82,28 +106,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -160,8 +181,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/TeamFortress2/cfg/lgsm-default.cfg b/TeamFortress2/cfg/lgsm-default.cfg deleted file mode 100644 index c2b66dcbc..000000000 --- a/TeamFortress2/cfg/lgsm-default.cfg +++ /dev/null @@ -1,15 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 \ No newline at end of file diff --git a/TeamFortress2/tf2server b/TeamFortress2/tf2server index 5eb44c96f..bf9519a6e 100644 --- a/TeamFortress2/tf2server +++ b/TeamFortress2/tf2server @@ -1,77 +1,97 @@ #!/bin/bash -# Team Fortress 2 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Team Fortress 2 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161026" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="cp_badlands" maxplayers="16" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# Optional: Game Server Login Token +## Optional: Game Server Login Token # GSLT can be used for running a public server. # More info: https://gameservermanagers.com/gslt gslt="" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game tf -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +sv_setsteamaccount ${gslt} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" -# Steam -appid="232250" +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="232250" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="tf2-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Team Fortress 2" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="tf2-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -80,6 +100,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/tf" executabledir="${filesdir}" executable="./srcds_run" @@ -88,28 +110,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -166,8 +185,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/TeamFortressClassic/cfg/lgsm-default.cfg b/TeamFortressClassic/cfg/lgsm-default.cfg deleted file mode 100644 index ceb8f9374..000000000 --- a/TeamFortressClassic/cfg/lgsm-default.cfg +++ /dev/null @@ -1,38 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -// disable autoaim -sv_aim 0 - -// disable clients' ability to pause the server -pausable 0 - -// maximum client movement speed -sv_maxspeed 320 - -// 20 minute timelimit -mp_timelimit 20 - -// cheats off -sv_cheats 0 - -// load ban files -exec listip.cfg -exec banned.cfg - - - - diff --git a/TeamFortressClassic/tfcserver b/TeamFortressClassic/tfcserver index 60b521a4f..4ced5d30a 100644 --- a/TeamFortressClassic/tfcserver +++ b/TeamFortressClassic/tfcserver @@ -1,67 +1,94 @@ #!/bin/bash -# Team Fortress Classic -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Team Fortress Classic | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161026" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="dustbowl" maxplayers="16" port="27015" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game tfc -strictportbind _ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## SteamCMD Settings +# Server appid +appid="90" +appidmod="tfc" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="90" -appidmod="tfc" - -# Server Details -servicename="tfc-server" +## LinuxGSM Server Details +# Do not edit gamename="Team Fortress Classic" engine="goldsource" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="tfc-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/tfc" executabledir="${filesdir}" executable="./hlds_run" @@ -78,28 +107,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -156,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/TeamSpeak3/cfg/lgsm-default.ini b/TeamSpeak3/cfg/lgsm-default.ini deleted file mode 100644 index 0fca88d4d..000000000 --- a/TeamSpeak3/cfg/lgsm-default.ini +++ /dev/null @@ -1,20 +0,0 @@ -machine_id= -default_voice_port=9987 -voice_ip=0.0.0.0, :: -licensepath= -filetransfer_port=30033 -filetransfer_ip=0.0.0.0, :: -query_port=10011 -query_ip=0.0.0.0, :: -query_ip_whitelist=query_ip_whitelist.txt -query_ip_blacklist=query_ip_blacklist.txt -dbplugin=ts3db_sqlite3 -dbpluginparameter= -dbsqlpath=sql/ -dbsqlcreatepath=create_sqlite/ -dbconnections=10 -logpath=logs -logquerycommands=0 -dbclientkeepdays=30 -logappend=0 -query_skipbruteforcecheck=0 diff --git a/TeamSpeak3/ts3server b/TeamSpeak3/ts3server index 5b7180515..5903b184a 100644 --- a/TeamSpeak3/ts3server +++ b/TeamSpeak3/ts3server @@ -1,40 +1,73 @@ #!/bin/bash -# TeamSpeak 3 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: TeamSpeak 3 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161026" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +# Edit serverfiles/ts3-server.ini after installation + +#### LinuxGSM Settings #### -# Email +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email emailalert="off" email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Start Variables +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" -# Server Details +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="TeamSpeak 3" servername="TeamSpeak 3 Server" + +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers servicename="ts3-server" -# Directories +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -43,6 +76,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./ts3server_startscript.sh" @@ -51,31 +86,22 @@ servercfgdefault="ts3server.ini" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${filesdir}/logs" scriptlogdir="${rootdir}/log/script" - scriptlog="${scriptlogdir}/${servicename}-script.log" emaillog="${scriptlogdir}/${servicename}-email.log" -scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%d-%m-%Y-%H-%M-%S').log" - -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -132,8 +158,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Teeworlds/cfg/ctf.cfg b/Teeworlds/cfg/ctf.cfg deleted file mode 100644 index a92b1a494..000000000 --- a/Teeworlds/cfg/ctf.cfg +++ /dev/null @@ -1,7 +0,0 @@ -sv_gametype ctf -sv_powerups 1 -sv_scorelimit 500 -sv_spectator_slots 0 -sv_timelimit 0 -sv_tournament_mode 0 -sv_map_reload 1 \ No newline at end of file diff --git a/Teeworlds/cfg/dm.cfg b/Teeworlds/cfg/dm.cfg deleted file mode 100644 index 426386d1d..000000000 --- a/Teeworlds/cfg/dm.cfg +++ /dev/null @@ -1,7 +0,0 @@ -sv_gametype dm -sv_powerups 1 -sv_scorelimit 20 -sv_spectator_slots 0 -sv_timelimit 0 -sv_tournament_mode 0 -sv_map_reload 1 \ No newline at end of file diff --git a/Teeworlds/cfg/duel.cfg b/Teeworlds/cfg/duel.cfg deleted file mode 100644 index b70e632a2..000000000 --- a/Teeworlds/cfg/duel.cfg +++ /dev/null @@ -1,7 +0,0 @@ -sv_gametype tdm -sv_powerups 0 -sv_scorelimit 10 -sv_spectator_slots 10 -sv_timelimit 5 -sv_tournament_mode 1 -sv_map_reload 1 \ No newline at end of file diff --git a/Teeworlds/cfg/lgsm-default.cfg b/Teeworlds/cfg/lgsm-default.cfg deleted file mode 100644 index efefdf149..000000000 --- a/Teeworlds/cfg/lgsm-default.cfg +++ /dev/null @@ -1,26 +0,0 @@ -sv_name "" -sv_rcon_password "" -password "" -sv_max_clients 12 -sv_port 8303 -sv_register 1 -sv_spamprotection 0 -sv_vote_map 1 -sv_warmup 10 -logfile "" -addvote restart 10 -addvote exec dm.cfg -addvote exec ctf.cfg -addvote exec duel.cfg -addvote exec tdm.cfg -addvote "change_map ctf1" -addvote "change_map ctf2" -addvote "change_map ctf3" -addvote "change_map ctf4" -addvote "change_map ctf5" -addvote "change_map dm1" -addvote "change_map dm2" -addvote "change_map dm6" -addvote "change_map dm7" -addvote "change_map dm8" -addvote "change_map dm9" \ No newline at end of file diff --git a/Teeworlds/cfg/tdm.cfg b/Teeworlds/cfg/tdm.cfg deleted file mode 100644 index 4cde3cd33..000000000 --- a/Teeworlds/cfg/tdm.cfg +++ /dev/null @@ -1,14 +0,0 @@ -// **************************************************************************** -// * -// Teeworlds - tdm.cfg * -// Version 281015 * -// * -// **************************************************************************** - -sv_gametype tdm -sv_powerups 1 -sv_scorelimit 50 -sv_spectator_slots 0 -sv_timelimit 0 -sv_tournament_mode 0 -sv_map_reload 1 \ No newline at end of file diff --git a/Teeworlds/twserver b/Teeworlds/twserver index 7ad17233a..37f846f9f 100644 --- a/Teeworlds/twserver +++ b/Teeworlds/twserver @@ -1,62 +1,93 @@ #!/bin/bash -# Teeworlds -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs -# Contributor: Bryce Van Dyk (SingingTree) +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Teeworlds | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) +version="161026" -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +########################## +######## Settings ######## +########################## -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +#### Server Settings #### -# Steam login +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters ip="0.0.0.0" -updateonstart="off" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care fn_parms(){ parms="-f ${servercfgfullpath}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="380840" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="380840" - -# Server Details -servicename="tw-server" +## LinuxGSM Server Details +# Do not edit gamename="Teeworlds" engine="teeworlds" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="tw-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -65,6 +96,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./teeworlds_srv" @@ -73,29 +106,26 @@ servercfgdefault="server.cfg" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log/server" scriptlogdir="${rootdir}/log/script" consolelogdir="${rootdir}/log/console" -consolelogging="on" - gamelog="${gamelogdir}/${servicename}-game.log" 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -152,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Terraria/cfg/lgsm-default.txt b/Terraria/cfg/lgsm-default.txt deleted file mode 100644 index 9a907e61d..000000000 --- a/Terraria/cfg/lgsm-default.txt +++ /dev/null @@ -1,68 +0,0 @@ -#this is an example config file for TerrariaServer.exe -#use the command 'TerrariaServer.exe -config serverconfig.txt' to use this configuration or run start-server.bat -#please report crashes by emailing crashlog.txt to support@terraria.org - -#the following is a list of available command line parameters: - -#-config Specifies the configuration file to use. -#-port Specifies the port to listen on. -#-players / -maxplayers Sets the max number of players -#-pass / -password Sets the server password -#-world Load a world and automatically start the server. -#-autocreate <#> Creates a world if none is found in the path specified by -world. World size is specified by: 1(small), 2(medium), and 3(large). -#-banlist Specifies the location of the banlist. Defaults to "banlist.txt" in the working directory. -#-worldname Sets the name of the world when using -autocreate. -#-secure Adds addition cheat protection to the server. -#-noupnp Disables automatic port forwarding -#-steam Enables Steam Support -#-lobby or Allows friends to join the server or sets it to private if Steam is enabled -#-ip Sets the IP address for the server to listen on -#-forcepriority Sets the process priority for this task. If this is used the "priority" setting below will be ignored. - -#remove the # in front of commands to enable them. - -#Load a world and automatically start the server. -world=~/.local/share/Terraria/Worlds/world1.wld - -#Creates a new world if none is found. World size is specified by: 1(small), 2(medium), and 3(large). -autocreate=1 - -#Sets the name of the world when using autocreate -worldname=Terraria - -#Sets the difficulty of the world when using autocreate 0(normal), 1(expert) -difficulty=0 - -#Sets the max number of players allowed on a server. Value must be between 1 and 255 -maxplayers=8 - -#Set the port number -port=7777 - -#Set the server password -password=p@55w0rd - -#Set the message of the day -motd=Please don’t cut the purple trees! - -#Sets the folder where world files will be stored -worldpath=~/.local/share/Terraria/Worlds/ - -#The location of the banlist. Defaults to "banlist.txt" in the working directory. -banlist=banlist.txt - -#Adds addition cheat protection. -secure=1 - -#Sets the server language 1:English, 2:German, 3:Italian, 4:French, 5:Spanish -lang=1 - -#Automatically forward ports with uPNP -#upnp=1 - -#Reduces enemy skipping but increases bandwidth usage. The lower the number the less skipping will happen, but more data is sent. 0 is off. -#npcstream=60 - -#Default system priority 0:Realtime, 1:High, 2:AboveNormal, 3:Normal, 4:BelowNormal, 5:Idle -#priority=1 - diff --git a/Terraria/terrariaserver b/Terraria/terrariaserver index db4bba201..e1d9ca028 100644 --- a/Terraria/terrariaserver +++ b/Terraria/terrariaserver @@ -1,62 +1,93 @@ #!/bin/bash -# Terraria -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs -# Contributor: Bryce Van Dyk (SingingTree) +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Terraria | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) +version="161026" -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +########################## +######## Settings ######## +########################## -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +#### Server Settings #### -# Steam login +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters ip="0.0.0.0" -updateonstart="off" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care fn_parms(){ parms="-config ${servercfgfullpath}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="105600" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="105600" - -# Server Details -servicename="terraria-server" +## LinuxGSM Server Details +# Do not edit gamename="Terraria" engine="terraria" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="terraria-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -65,6 +96,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./TerrariaServer" @@ -73,28 +106,25 @@ servercfgdefault="serverconfig.txt" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories #gamelogdir="" # Terraria Doesn't Have a Server Log 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -151,8 +181,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/UnrealTournament/cfg/Engine.ini b/UnrealTournament/cfg/Engine.ini deleted file mode 100644 index 177eaafdb..000000000 --- a/UnrealTournament/cfg/Engine.ini +++ /dev/null @@ -1,3 +0,0 @@ -[/Script/UnrealTournament.UTGameEngine] -bFirstRun=False -RconPassword="" diff --git a/UnrealTournament/cfg/Game.ini b/UnrealTournament/cfg/Game.ini deleted file mode 100644 index 15a1c9159..000000000 --- a/UnrealTournament/cfg/Game.ini +++ /dev/null @@ -1,4 +0,0 @@ -[/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 0b60ca9d6..cd4ef02d3 100644 --- a/UnrealTournament/utserver +++ b/UnrealTournament/utserver @@ -1,59 +1,84 @@ #!/bin/bash # Unreal Tournament -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Unreal Tournament | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161026" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +#### Server Settings #### -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +# For CTF: defaultmap="CTF-Face" gametype="CTF" defaultmap="DM-Underland" gametype="DM" -#defaultmap="CTF-Face" -#gametype="CTF" timelimit="10" ip="0.0.0.0" port="7777" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care fn_parms(){ parms="UnrealTournament ${defaultmap}?Game=${gametype}?TimeLimit=${timelimit} -port=${port}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -# Github Branch Select +#### LinuxGSM Advanced Settings #### + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Server Details -servicename="ut-server" +## LinuxGSM Server Details +# Do not edit gamename="Unreal Tournament" engine="unreal4" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ut-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -62,6 +87,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/LinuxServer" executabledir="${systemdir}/Engine/Binaries/Linux" executable="./UE4Server-Linux-Shipping" @@ -69,28 +96,25 @@ servercfg="Game.ini" servercfgdir="${systemdir}/UnrealTournament/Saved/Config/LinuxServer" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -147,8 +171,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/UnrealTournament2004/ut2k4server b/UnrealTournament2004/ut2k4server index c841a2199..6de94893e 100644 --- a/UnrealTournament2004/ut2k4server +++ b/UnrealTournament2004/ut2k4server @@ -1,45 +1,79 @@ #!/bin/bash -# Unreal Tournament 2004 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Unreal Tournament 2004 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161026" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="DM-Rankin" ip="0.0.0.0" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | fn_parms(){ parms="server ${defaultmap}?game=XGame.xDeathMatch -nohomedir ini=${servercfg} log=${gamelog}" } -# Server Details -servicename="ut2k4-server" +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Unreal Tournament 2004" engine="unreal2" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ut2k4-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -48,6 +82,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/System" executabledir="${systemdir}" executable="./ucc-bin" @@ -57,37 +93,27 @@ servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" compressedmapsdir="${rootdir}/Maps-Compressed" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log/server" scriptlogdir="${rootdir}/log/script" consolelogdir="${rootdir}/log/console" -consolelogging="on" - gamelog="${gamelogdir}/${servicename}-game.log" scriptlog="${scriptlogdir}/${servicename}-script.log" consolelog="${consolelogdir}/${servicename}-console.log" emaillog="${scriptlogdir}/${servicename}-email.log" -gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%d-%m-%Y-%H-%M-%S').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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" +gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%Y-%m-%d-%H:%M:%S').log" -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" - -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -144,8 +170,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/UnrealTournament3/ut3server b/UnrealTournament3/ut3server index a094b0daa..5da529d31 100644 --- a/UnrealTournament3/ut3server +++ b/UnrealTournament3/ut3server @@ -1,32 +1,28 @@ #!/bin/bash -# Unreal Tournament 3 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Unreal Tournament 3 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161026" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +#### Server Settings #### -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters ip="0.0.0.0" port="7777" queryport="25300" @@ -41,26 +37,54 @@ pureserver="1" allowjoininprogress="true" maxplayers="32" -#list of game types and mutators : http://wiki.unrealadmin.org/FAQ:UT3 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | List of game types and mutators : http://wiki.unrealadmin.org/FAQ:UT3 fn_parms(){ parms="server ${defaultmap}?Game=${game}?bIsDedicated=${isdedicated}?bIsLanMatch=${islanmatch}?bUsesStats=${usesstats}?bShouldAdvertise=${shouldadvertise}?PureServer=${pureserver}?bAllowJoinInProgress=${allowjoininprogress}?MaxPlayers=${maxplayers}?Mutator=${mutators} -port=${port} -queryport=${queryport} -multihome=${ip} -nohomedir -unattended -log=${gamelog}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -# Github Branch Select +#### LinuxGSM Advanced Settings #### + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Server Details -servicename="ut3-server" +## LinuxGSM Server Details +# Do not edit gamename="Unreal Tournament 3" engine="unreal3" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ut3-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -69,6 +93,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${systemdir}/Binaries" executable="./ut3" @@ -77,30 +103,27 @@ servercfgdefault="UTGame.ini" servercfgdir="${systemdir}/UTGame/Config" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log/server" scriptlogdir="${rootdir}/log/script" consolelogdir="${rootdir}/log/console" -consolelogging="on" - gamelog="${gamelogdir}/${servicename}-game.log" scriptlog="${scriptlogdir}/${servicename}-script.log" consolelog="${consolelogdir}/${servicename}-console.log" emaillog="${scriptlogdir}/${servicename}-email.log" -gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%d-%m-%Y-%H-%M-%S').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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" +gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -157,8 +180,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/UnrealTournament99/ut99server b/UnrealTournament99/ut99server index 8fa9f4bae..0ee8afd2d 100644 --- a/UnrealTournament99/ut99server +++ b/UnrealTournament99/ut99server @@ -1,54 +1,79 @@ #!/bin/bash -# Unreal Tournament 99 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Unreal Tournament 99 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161026" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +#### Server Settings #### -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="DM-Deck16][" ip="0.0.0.0" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care fn_parms(){ parms="server ${defaultmap}.unr ini=${servercfgfullpath}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -# Github Branch Select +#### LinuxGSM Advanced Settings #### + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Server Details -servicename="ut99-server" +## LinuxGSM Server Details +# Do not edit gamename="Unreal Tournament 99" engine="unreal" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ut99-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -57,6 +82,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/System" executabledir="${systemdir}" executable="./ucc-bin" @@ -66,28 +93,25 @@ servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" compressedmapsdir="${rootdir}/Maps-Compressed" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -144,8 +168,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/WolfensteinEnemyTerritory/cfg/lgsm-default.cfg b/WolfensteinEnemyTerritory/cfg/lgsm-default.cfg deleted file mode 100644 index 326e27fc9..000000000 --- a/WolfensteinEnemyTerritory/cfg/lgsm-default.cfg +++ /dev/null @@ -1,125 +0,0 @@ -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/WolfensteinEnemyTerritory/wetserver b/WolfensteinEnemyTerritory/wetserver index 54815accf..08415a1d4 100644 --- a/WolfensteinEnemyTerritory/wetserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -1,52 +1,81 @@ #!/bin/bash -# Enemy Territory -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Enemy Territory | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161026" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### + +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +# Please use Enemy Territory config file. + +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care +fn_parms(){ + parms="+set net_strict 1 +set fs_homepath ${filesdir} +exec ${servercfg}" +} + +#### LinuxGSM Settings #### -# Email +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email emailalert="off" email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Start Variables +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" -fn_parms(){ - parms="+set net_strict 1 +set fs_homepath ${filesdir} +exec ${servercfg}" -} +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -#### Advanced Variables #### +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Server Details -servicename="et-server" +## LinuxGSM Server Details +# Do not edit gamename="Wolfenstein: Enemy Territory" engine="idtech3" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="et-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -55,6 +84,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${systemdir}" executable="./etded" @@ -63,28 +94,25 @@ servercfgdefault="server.cfg" servercfgdir="${systemdir}/etmain" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -141,8 +169,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/lgsm/functions/check_steamcmd.sh b/lgsm/functions/check_steamcmd.sh index 06e941ff4..b4602a120 100644 --- a/lgsm/functions/check_steamcmd.sh +++ b/lgsm/functions/check_steamcmd.sh @@ -27,13 +27,13 @@ fn_check_steamcmd_user(){ fi # Anonymous user is set if steamuser is missing if [ -z "${steamuser}" ]; then - fn_print_error_nl "Steam login not set. Using anonymous login." + fn_print_info_nl "Steam login not set. Using anonymous login." if [ -d "${scriptlogdir}" ]; then - fn_script_log_error "Steam login not set. Using anonymous login." + fn_script_log_info "Steam login not set. Using anonymous login." fi steamuser="anonymous" steampass="" - sleep 2 + sleep 1 fi } @@ -69,4 +69,4 @@ fn_check_steamcmd_guard(){ fn_check_steamcmd_user fn_check_steamcmd_sh # stdbuf has now replaced unbuffer. This should not longer be required. -#fn_check_steamcmd_guard \ No newline at end of file +#fn_check_steamcmd_guard diff --git a/lgsm/functions/check_tmuxception.sh b/lgsm/functions/check_tmuxception.sh index d23fd88a4..31e7b81d7 100644 --- a/lgsm/functions/check_tmuxception.sh +++ b/lgsm/functions/check_tmuxception.sh @@ -18,7 +18,7 @@ fn_check_is_in_tmux(){ fi } fn_check_is_in_screen(){ - if [ "$TERM" == "screen" ];then + if [ -n "${STY}" ];then fn_print_fail_nl "tmuxception error: Sorry Cobb you cannot start a tmux session inside of a screen session." fn_script_log_fatal "tmuxception error: Attempted to start a tmux session inside of a screen session." fn_print_information_nl "LGSM creates a tmux session when starting the server." diff --git a/lgsm/functions/core_messages.sh b/lgsm/functions/core_messages.sh index 98814cf03..540729af7 100644 --- a/lgsm/functions/core_messages.sh +++ b/lgsm/functions/core_messages.sh @@ -350,4 +350,4 @@ fn_print_update_eol(){ fn_print_update_eol_nl(){ echo -e "${cyan}UPDATE${default}" -} \ No newline at end of file +} diff --git a/lgsm/functions/update_steamcmd.sh b/lgsm/functions/update_steamcmd.sh index 574fbe2b9..37b48781d 100644 --- a/lgsm/functions/update_steamcmd.sh +++ b/lgsm/functions/update_steamcmd.sh @@ -8,8 +8,9 @@ local commandname="UPDATE" local commandaction="Update" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" +check.sh + fn_update_steamcmd_dl(){ - check.sh info_config.sh fn_print_dots "SteamCMD" sleep 1 @@ -235,4 +236,4 @@ if [ "${engine}" == "goldsource" ]||[ "${forceupdate}" == "1" ]; then else fn_update_request_log fn_update_steamcmd_check -fi \ No newline at end of file +fi From b16b18f004165c49d9e5bbc70d501ffd771b6eb7 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 28 Oct 2016 19:11:26 +0200 Subject: [PATCH 234/246] Workshop comes after server start settings --- GarrysMod/gmodserver | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index 50622d1c6..08793a471 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -22,10 +22,6 @@ version="161026" #### Server Settings #### -## Workshop Parameters | http://wiki.garrysmod.com/page/Workshop_for_Dedicated_Servers -workshopauth="" -workshopcollectionid="" - ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="gm_construct" gamemode="sandbox" @@ -36,6 +32,10 @@ clientport="27005" tickrate="66" ip="0.0.0.0" +## Workshop Parameters | http://wiki.garrysmod.com/page/Workshop_for_Dedicated_Servers +workshopauth="" +workshopcollectionid="" + ## Custom Start Parameters # Default +r_hunkalloclightmaps 0, fixes a start issue on maps with many lights customparms="+r_hunkalloclightmaps 0" @@ -212,4 +212,4 @@ fi core_dl.sh core_functions.sh getopt=$1 -core_getopt.sh \ No newline at end of file +core_getopt.sh From 788886450c3219163d096dc7101b5670b054878b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 30 Oct 2016 22:14:36 +0000 Subject: [PATCH 235/246] Backup function improvements (#1161) * Added no of days since last backup Allows the number of days since last backup to be displayed * Added last backup x days ago Added a bracket in the last backup date stating how many days ago the last backup took place * Added lock file creation to logs * corrected trap display ... * Updated comment * updated log message * Lockfile * downloading ${filename}... * Improvements up command_backup.sh Changes to the messages displayed on screen added trap and improved lockfile support renamed some functions other misc changes --- lgsm/functions/check_tmuxception.sh | 4 +- lgsm/functions/command_backup.sh | 255 ++++++++++++++-------------- lgsm/functions/command_debug.sh | 6 +- lgsm/functions/command_details.sh | 8 +- lgsm/functions/command_monitor.sh | 4 +- lgsm/functions/command_start.sh | 4 +- lgsm/functions/command_stop.sh | 6 +- lgsm/functions/core_dl.sh | 8 +- lgsm/functions/info_distro.sh | 2 + 9 files changed, 156 insertions(+), 141 deletions(-) diff --git a/lgsm/functions/check_tmuxception.sh b/lgsm/functions/check_tmuxception.sh index 31e7b81d7..5b906f53e 100644 --- a/lgsm/functions/check_tmuxception.sh +++ b/lgsm/functions/check_tmuxception.sh @@ -10,7 +10,7 @@ local commandname="check" fn_check_is_in_tmux(){ if [ -n "${TMUX}" ];then fn_print_fail_nl "tmuxception error: Sorry Cobb you cannot start a tmux session inside of a tmux session." - fn_script_log_fatal "tmuxception error: Attempted to start a tmux session inside of a tmux session." + fn_script_log_fatal "Tmuxception error: Attempted to start a tmux session inside of a tmux session." fn_print_information_nl "LGSM creates a tmux session when starting the server." echo "It is not possible to run a tmux session inside another tmux session" echo "https://github.com/GameServerManagers/LinuxGSM/wiki/Tmux#tmuxception" @@ -20,7 +20,7 @@ fn_check_is_in_tmux(){ fn_check_is_in_screen(){ if [ -n "${STY}" ];then fn_print_fail_nl "tmuxception error: Sorry Cobb you cannot start a tmux session inside of a screen session." - fn_script_log_fatal "tmuxception error: Attempted to start a tmux session inside of a screen session." + fn_script_log_fatal "Tmuxception error: Attempted to start a tmux session inside of a screen session." fn_print_information_nl "LGSM creates a tmux session when starting the server." echo "It is not possible to run a tmux session inside screen session" echo "https://github.com/GameServerManagers/LinuxGSM/wiki/Tmux#tmuxception" diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 489e0a8f4..34d014c42 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -10,31 +10,57 @@ local commandaction="Backup" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh -fn_script_log "Entering backup" + +# Trap to remove lockfile on quit. +fn_backup_trap(){ + echo "" + echo -ne "backup ${backupname}.tar.gz..." + fn_print_canceled_eol_nl + fn_script_log_info "backup ${backupname}.tar.gz: CANCELED" + sleep 1 + rm -f "${backupdir}/${backupname}.tar.gz" | tee -a "${scriptlog}" + echo -ne "backup ${backupname}.tar.gz..." + fn_print_removed_eol_nl + fn_script_log_info "backup ${backupname}.tar.gz: REMOVED" + # Remove lock file + rm -f "${tmpdir}/.backup.lock" + core_exit.sh +} # Check if a backup is pending or has been aborted using .backup.lock -fn_check_pending_backup(){ +fn_backup_check_lockfile(){ if [ -f "${tmpdir}/.backup.lock" ]; then - fn_print_error "A backup is currently running or has been aborted." - fn_print_info_nl "If you keep seing this message, remove the following file:" - echo "${tmpdir}/.backup.lock" - fn_script_log_fatal "A backup is currently running or has been aborted." - fin_script_log_info "If you keep seing this message, remove the following file: ${tmpdir}/.backup.lock" + fn_print_info_nl "Lock file found: Backup is currently running" + fn_script_log_error "Lock file found: Backup is currently running: ${tmpdir}/.backup.lock" core_exit.sh fi } -# Initialization +# Initialisation fn_backup_init(){ - fn_print_dots "" - sleep 0.5 - # Prepare backup file name with servicename current date + # Backup file name with servicename and current date backupname="${servicename}-$(date '+%Y-%m-%d-%H%M%S')" - # Tells how much will be compressed using rootdirduexbackup value from info_distro and prompt for continue + info_distro.sh - fn_print_info_nl "A total of ${rootdirduexbackup} will be compressed into the following backup:" - fn_script_log "A total of ${rootdirduexbackup} will be compressed into the following backup: ${backupdir}/${backupname}.tar.gz" - echo "${backupdir}/${backupname}.tar.gz" + fn_print_dots "Backup starting" + fn_script_log_info "Backup starting" + sleep 1 + fn_print_ok "Backup starting" + sleep 1 + echo -ne "\n" + if [ ! -d "${backupdir}" ]||[ "${backupcount}" == "0" ]; then + fn_print_info_nl "There are no previous backups" + else + if [ "${lastbackupdaysago}" == "0" ]; then + daysago="less than 1 day ago" + elif [ "${lastbackupdaysago}" == "1" ]; then + daysago="1 day ago" + else + daysago="${lastbackupdaysago} days ago" + fi + echo " * Previous backup was created ${daysago}, total size ${lastbackupsize}" + sleep 1 + fi } @@ -44,16 +70,16 @@ fn_backup_stop_server(){ # Server is stopped if [ "${status}" == "0" ]; then serverstopped="no" - # Server is up and stoponbackup is off + # Server is running and stoponbackup=off elif [ "${stoponbackup}" == "off" ]; then serverstopped="no" - fn_print_info_nl "${servicename} is started and will not be stopped." - fn_print_information_nl "It is advised to stop the server to prevent a file changes and tar errors." - fn_script_log_info "${servicename} is started during the backup" - fn_script_log_info "It is advised to stop the server to prevent a file changes and tar errors." - # Server is up and will be stopped if stoponbackup has no value or anything else than "off" + fn_print_warn_nl "${servicename} is currently running" + echo " * Although unlikely; creating a backup while ${servicename} is running might corrupt the backup." + fn_script_log_warn "${servicename} is currently running" + fn_script_log_warn "Although unlikely; creating a backup while ${servicename} is running might corrupt the backup" + # Server is running and will be stopped if stoponbackup=on or unset else - fn_print_warning_nl "${servicename} will be stopped during the backup." + fn_print_warn_nl "${servicename} will be stopped during the backup" fn_script_log_warn "${servicename} will be stopped during the backup" sleep 4 serverstopped="yes" @@ -63,117 +89,97 @@ fn_backup_stop_server(){ } # Create required folders -fn_backup_directories(){ -fn_print_dots "Backup in progress, please wait..." -fn_script_log_info "Initiating backup" -sleep 0.5 - -# Directories creation -# Create backupdir if it doesn't exist -if [ ! -d "${backupdir}" ]; then - fn_print_info_nl "Creating ${backupdir}" - fn_script_log_info "Creating ${backupdir}" - mkdir "${backupdir}" -fi -# Create tmpdir if it doesn't exist -if [ -n "${tmpdir}" ]&&[ ! -d "${tmpdir}" ]; then - fn_print_info_nl "Creating ${tmpdir}" - fn_script_log "Creating ${tmpdir}" - mkdir -p "${tmpdir}" -fi +fn_backup_dir(){ + # Create backupdir if it doesn't exist + if [ ! -d "${backupdir}" ]; then + mkdir -p "${backupdir}" + fi } -# Create lockfile fn_backup_create_lockfile(){ -if [ -d "${tmpdir}" ]; then - touch "${tmpdir}/.backup.lock" - fn_script_log "Lockfile created" -fi + # Create lockfile + date > "${tmpdir}/.backup.lock" + fn_script_log_info "Lockfile generated" + fn_script_log_info "${tmpdir}/.backup.lock" + # trap to remove lockfile on quit. + trap fn_backup_trap INT } # Compressing files fn_backup_compression(){ -fn_script_log "Compressing ${rootdirduexbackup}" -tar -czf "${backupdir}/${backupname}.tar.gz" -C "${rootdir}" --exclude "backups" ./* -fn_script_log "Compression over" -} - -# Check tar exit code and set the result -fn_check_tar_exit(){ -if [ $? == 0 ]; then - backupresult="PASS" -else - backupresult="FAIL" -fi -} - -# Remove lockfile -fn_backup_remove_lockfile(){ -if [ -d "${tmpdir}" ]&&[ -f "${tmpdir}/.backup.lock" ]; then - rm "${tmpdir}/.backup.lock" - fn_script_log "Lockfile removed" -fi -} - -fn_backup_summary(){ - # when backupresult="PASS" - if [ "${backupresult}" == "PASS" ]; then - fn_print_ok_nl "Backup created: ${backupname}.tar.gz is $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}') size" - fn_script_log_pass "Backup created: ${backupdir}/${backupname}.tar.gz is $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}') size" - # When backupresult="FAIL" - elif [ "${backupresult}" == "FAIL" ]; then - fn_print_error_nl "Backup failed: ${backupname}.tar.gz" - fn_script_log_error "Backup failed: ${backupname}.tar.gz" - core_exit.sh + # Tells how much will be compressed using rootdirduexbackup value from info_distro and prompt for continue + fn_print_info "A total of ${rootdirduexbackup} will be compressed." + fn_script_log_info "A total of ${rootdirduexbackup} will be compressed: ${backupdir}/${backupname}.tar.gz" + sleep 2 + fn_print_dots "Backup (${rootdirduexbackup}) ${backupname}.tar.gz, in progress..." + fn_script_log_info "backup ${rootdirduexbackup} ${backupname}.tar.gz, in progress" + tar -czf "${backupdir}/${backupname}.tar.gz" -C "${rootdir}" --exclude "backups" ./* + local exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol + fn_script_log_fatal "Backup in progress: FAIL" + echo "${tarcmd}" | tee -a "${scriptlog}" + fn_print_fail_nl "Starting backup" + fn_script_log_fatal "Starting backup" else - fn_print_error_nl "Could not determine compression result." - fn_script_log_error "Could not determine compression result." - core_exit.sh + fn_print_ok_eol + sleep 1 + fn_print_ok_nl "Completed: ${backupname}.tar.gz, total size $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}')" + fn_script_log_pass "Backup created: ${backupname}.tar.gz, total size $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}')" fi } - # Clear old backups according to maxbackups and maxbackupdays variables -fn_backup_clearing(){ -# How many backups there are -backupscount=$(find "${backupdir}/" -type f -name "*.tar.gz"|wc -l) -# How many backups exceed maxbackups -backupquotadiff=$((backupscount-maxbackups)) -# How many backups exceed maxbackupdays -backupsoudatedcount=$(find "${backupdir}"/ -type f -name "*.tar.gz" -mtime +"${maxbackupdays}"|wc -l) -# If backup variables are set -if [ -n "${maxbackupdays}" ]&&[ -n "${maxbackups}" ]; then - # If anything can be cleared - if [ "${backupquotadiff}" -gt "0" ]||[ "${backupsoudatedcount}" -gt "0" ]; then - # If maxbackups greater or equal than backupsoutdatedcount, then it is used over maxbackupdays - if [ "${backupquotadiff}" -gt "${backupsoudatedcount}" ]||[ "${backupquotadiff}" -eq "${backupsoudatedcount}" ]; then - # Display how many backups will be cleared - fn_print_info_nl "${backupquotadiff} backup(s) exceed max ${maxbackups} and will be cleared." - fn_script_log "${backupquotadiff} backup(s) exceed max ${maxbackups} and will be cleared" - sleep 2 - # Clear over quota backups - find "${backupdir}"/ -type f -name "*.tar.gz" -printf '%T@ %p\n' | sort -rn | tail -${backupquotadiff} | cut -f2- -d" " | xargs rm - fn_print_ok_nl "Cleared ${backupquotadiff} backup(s)." - fn_script_log "Cleared ${backupquotadiff} backup(s)" - # If maxbackupdays is used over maxbackups - elif [ "${backupquotadiff}" -lt "${backupsoudatedcount}" ]; then - # Display how many backups will be cleared - fn_print_info_nl "${backupsoudatedcount} backup(s) older than ${maxbackupdays} days will be cleared." - fn_script_log "${backupsoudatedcount} backup(s) older than ${maxbackupdays} days will be cleared" - find "${backupdir}"/ -type f -mtime +"${maxbackupdays}" -exec rm -f {} \; - fn_print_ok_nl "Cleared ${backupsoudatedcount} backup(s)." - fn_script_log_pass "Cleared ${backupsoudatedcount} backup(s)" - else - fn_script_log "No backups older than ${maxbackupdays} days were found" +fn_backup_prune(){ + # How many backups there are + info_distro.sh + # How many backups exceed maxbackups + backupquotadiff=$((backupcount-maxbackups)) + # How many backups exceed maxbackupdays + backupsoudatedcount=$(find "${backupdir}"/ -type f -name "*.tar.gz" -mtime +"${maxbackupdays}"|wc -l) + # If backup variables are set + if [ -n "${maxbackupdays}" ]&&[ -n "${maxbackups}" ]; then + # If anything can be cleared + if [ "${backupquotadiff}" -gt "0" ]||[ "${backupsoudatedcount}" -gt "0" ]; then + fn_print_dots "Pruning" + fn_script_log_info "Backup pruning activated" + sleep 1 + fn_print_ok_nl "Pruning" + sleep 1 + # If maxbackups greater or equal to backupsoutdatedcount, then it is over maxbackupdays + if [ "${backupquotadiff}" -ge "${backupsoudatedcount}" ]; then + # Display how many backups will be cleared + echo " * Pruning: ${backupquotadiff} backup(s) has exceeded the ${maxbackups} backups limit" + fn_script_log_info "Pruning: ${backupquotadiff} backup(s) has exceeded the ${maxbackups} backups limit" + sleep 1 + fn_print_dots "Pruning: Clearing ${backupquotadiff} backup(s)" + fn_script_log_info "Pruning: Clearing ${backupquotadiff} backup(s)" + sleep 1 + # Clear backups over quota + find "${backupdir}"/ -type f -name "*.tar.gz" -printf '%T@ %p\n' | sort -rn | tail -${backupquotadiff} | cut -f2- -d" " | xargs rm + fn_print_ok_nl "Pruning: Clearing ${backupquotadiff} backup(s)" + fn_script_log_pass "Pruning: Cleared ${backupquotadiff} backup(s)" + # If maxbackupdays is used over maxbackups + elif [ "${backupquotadiff}" -lt "${backupsoudatedcount}" ]; then + # Display how many backups will be cleared + echo " * Pruning: ${backupsoudatedcount} backup(s) are older than ${maxbackupdays} days." + fn_script_log_info "Pruning: ${backupsoudatedcount} backup(s) older than ${maxbackupdays} days." + sleep 1 + fn_print_dots "Pruning: Clearing ${backupquotadiff} backup(s)." + fn_script_log_info "Pruning: Clearing ${backupquotadiff} backup(s)" + sleep 1 + # Clear backups over quota + find "${backupdir}"/ -type f -mtime +"${maxbackupdays}" -exec rm -f {} \; + fn_print_ok_nl "Pruning: Clearing ${backupquotadiff} backup(s)" + fn_script_log_pass "Pruning: Cleared ${backupquotadiff} backup(s)" + fi + sleep 1 fi fi -else - fn_script_log "No backups to clear since maxbackupdays and maxbackups variables are not set" -fi } # Restart the server if it was stopped for the backup -fn_backup_start_back(){ +fn_backup_start_server(){ if [ "${serverstopped}" == "yes" ]; then exitbypass=1 command_start.sh @@ -181,17 +187,16 @@ fn_backup_start_back(){ } # Run functions -fn_check_pending_backup +fn_backup_check_lockfile +fn_backup_create_lockfile fn_backup_init fn_backup_stop_server -fn_backup_directories -fn_backup_create_lockfile +fn_backup_dir fn_backup_compression -fn_check_tar_exit -fn_backup_remove_lockfile -fn_backup_summary -fn_backup_clearing -fn_backup_start_back +fn_backup_prune +fn_backup_start_server + +# Remove lock file +rm -f "${tmpdir}/.backup.lock" -sleep 0.5 core_exit.sh diff --git a/lgsm/functions/command_debug.sh b/lgsm/functions/command_debug.sh index 98bd3082c..ac1d0add8 100644 --- a/lgsm/functions/command_debug.sh +++ b/lgsm/functions/command_debug.sh @@ -10,7 +10,7 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" # Trap to remove lockfile on quit. fn_lockfile_trap(){ - # Remove lock file + # Remove lockfile rm -f "${rootdir}/${lockselfname}" # resets terminal. Servers can sometimes mess up the terminal on exit. reset @@ -87,8 +87,10 @@ fn_script_log_info "Starting debug" sleep 1 fn_print_ok_nl "Starting debug" -# create lock file. +# Create lockfile date > "${rootdir}/${lockselfname}" +fn_script_log_info "Lockfile generated" +fn_script_log_info "${rootdir}/${lockselfname}" # trap to remove lockfile on quit. trap fn_lockfile_trap INT diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 22f8e2a5f..5743e17b0 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -262,7 +262,13 @@ fn_details_backup(){ { echo -e "${blue}No. of backups:\t${default}${backupcount}" echo -e "${blue}Latest backup:${default}" - echo -e "${blue} date:\t${default}${lastbackupdate}" + if [ "${lastbackupdaysago}" == "0" ]; then + echo -e "${blue} date:\t${default}${lastbackupdate} (less than 1 day ago)" + elif [ "${lastbackupdaysago}" == "1" ]; then + echo -e "${blue} date:\t${default}${lastbackupdate} (1 day ago)" + else + echo -e "${blue} date:\t${default}${lastbackupdate} (${lastbackupdaysago} days ago)" + fi echo -e "${blue} file:\t${default}${lastbackup}" echo -e "${blue} size:\t${default}${lastbackupsize}" } | column -s $'\t' -t diff --git a/lgsm/functions/command_monitor.sh b/lgsm/functions/command_monitor.sh index b11015e40..3c6d7fad4 100644 --- a/lgsm/functions/command_monitor.sh +++ b/lgsm/functions/command_monitor.sh @@ -13,8 +13,8 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" fn_monitor_check_lockfile(){ # Monitor does not run it lockfile is not found if [ ! -f "${rootdir}/${lockselfname}" ]; then - fn_print_error_nl "Disabled: No lock file found" - fn_script_log_error "Disabled: No lock file found" + fn_print_error_nl "Disabled: No lockfile found" + fn_script_log_error "Disabled: No lockfile found" echo " * To enable monitor run ./${selfname} start" core_exit.sh fi diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index f7f324bf1..57dcbfa60 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -33,7 +33,7 @@ fn_start_teamspeak3(){ fi mv "${scriptlog}" "${scriptlogdate}" - # Create lock file + # Create lockfile date > "${rootdir}/${lockselfname}" cd "${executabledir}" if [ "${ts3serverpass}" == "1" ];then @@ -78,7 +78,7 @@ fn_start_tmux(){ core_exit.sh fi - # Create lock file + # Create lockfile date > "${rootdir}/${lockselfname}" cd "${executabledir}" tmux new-session -d -s "${servicename}" "${executable} ${parms}" 2> "${scriptlogdir}/.${servicename}-tmux-error.tmp" diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index 489013e3d..95aa10536 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -234,7 +234,7 @@ fn_stop_teamspeak3(){ ${filesdir}/ts3server_startscript.sh stop > /dev/null 2>&1 check_status.sh if [ "${status}" == "0" ]; then - # Remove lock file + # Remove lockfile rm -f "${rootdir}/${lockselfname}" fn_print_ok_nl "${servername}" fn_script_log_pass "Stopped ${servername}" @@ -253,7 +253,7 @@ fn_stop_mumble(){ sleep 1 check_status.sh if [ "${status}" == "0" ]; then - # Remove lock file + # Remove lockfile rm -f "${rootdir}/${lockselfname}" fn_stop_tmux fn_script_log_pass "Stopped ${servername}" @@ -272,7 +272,7 @@ fn_stop_tmux(){ sleep 0.5 check_status.sh if [ "${status}" == "0" ]; then - # Remove lock file + # Remove lockfile rm -f "${rootdir}/${lockselfname}" # ARK doesn't clean up immediately after tmux is killed. # Make certain the ports are cleared before continuing. diff --git a/lgsm/functions/core_dl.sh b/lgsm/functions/core_dl.sh index e6e563fc7..6d971b997 100644 --- a/lgsm/functions/core_dl.sh +++ b/lgsm/functions/core_dl.sh @@ -78,14 +78,14 @@ fn_dl_extract(){ # Trap to remove file download if canceled before completed fn_fetch_trap(){ echo "" - echo -ne "downloading ${filename}: " + echo -ne "downloading ${filename}..." fn_print_canceled_eol_nl - fn_script_log_info "downloading ${filename}: CANCELED" + fn_script_log_info "downloading ${filename}...CANCELED" sleep 1 rm -f "${filedir}/${filename}" | tee -a "${scriptlog}" - echo -ne "downloading ${filename}: " + echo -ne "downloading ${filename}..." fn_print_removed_eol_nl - fn_script_log_info "downloading ${filename}: REMOVED" + fn_script_log_info "downloading ${filename}...REMOVED" core_exit.sh } diff --git a/lgsm/functions/info_distro.sh b/lgsm/functions/info_distro.sh index f526b4328..cc4037d72 100644 --- a/lgsm/functions/info_distro.sh +++ b/lgsm/functions/info_distro.sh @@ -122,6 +122,8 @@ if [ -d "${backupdir}" ]; then lastbackup=$(ls -t "${backupdir}"/*.tar.gz | head -1) # date of most recent backup. lastbackupdate=$(date -r "${lastbackup}") + # no of days since last backup. + lastbackupdaysago=$(( ( $(date +'%s') - $(date -r "${lastbackup}" +'%s') )/60/60/24 )) # size of most recent backup. lastbackupsize=$(du -h "${lastbackup}" | awk '{print $1}') fi From a1f102f823ac0d28621a1b3bb61fb6e2cfca8c76 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 30 Oct 2016 22:28:44 +0000 Subject: [PATCH 236/246] Updated Version numbers --- 7DaysToDie/sdtdserver | 2 +- ARKSurvivalEvolved/arkserver | 2 +- Arma3/arma3server | 2 +- Battlefield1942/bf1942server | 2 +- BlackMesa/bmdmserver | 2 +- BladeSymphony/bsserver | 2 +- BrainBread2/bb2server | 2 +- CodenameCURE/ccserver | 2 +- CounterStrike/csserver | 2 +- CounterStrikeConditionZero/csczserver | 2 +- CounterStrikeGlobalOffensive/csgoserver | 2 +- CounterStrikeSource/cssserver | 2 +- DayOfDefeat/dodserver | 2 +- DayOfDefeatSource/dodsserver | 2 +- DayOfInfamy/doiserver | 2 +- DeathmatchClassic/dmcserver | 2 +- DontStarveTogether/dstserver | 2 +- DoubleActionBoogaloo/dabserver | 2 +- FistfulOfFrags/fofserver | 2 +- GarrysMod/gmodserver | 2 +- GoldenEyeSource/gesserver | 2 +- HalfLife2Deathmatch/hl2dmserver | 2 +- HalfLifeDeathmatch/hldmserver | 2 +- HalfLifeDeathmatchSource/hldmsserver | 2 +- Hurtworld/hwserver | 4 ++-- Insurgency/insserver | 2 +- JustCause2/jc2server | 2 +- KillingFloor/kfserver | 2 +- Left4Dead/l4dserver | 2 +- Left4Dead2/l4d2server | 2 +- Minecraft/mcserver | 2 +- Mumble/mumbleserver | 2 +- NS2Combat/ns2cserver | 2 +- NaturalSelection2/ns2server | 2 +- NoMoreRoomInHell/nmrihserver | 2 +- OpposingForce/opforserver | 2 +- PiratesVikingandKnightsII/pvkiiserver | 2 +- ProjectZomboid/pzserver | 2 +- Quake2/q2server | 2 +- Quake3/q3server | 2 +- QuakeLive/qlserver | 2 +- RedOrchestra/roserver | 2 +- Ricochet/ricochetserver | 2 +- Rust/rustserver | 2 +- SeriousSam3BFE/ss3sserver | 2 +- Starbound/sbserver | 2 +- SvenCoop/svenserver | 2 +- TeamFortress2/tf2server | 2 +- TeamFortressClassic/tfcserver | 2 +- TeamSpeak3/ts3server | 2 +- Teeworlds/twserver | 2 +- Terraria/terrariaserver | 2 +- UnrealTournament/utserver | 2 +- UnrealTournament2004/ut2k4server | 2 +- UnrealTournament3/ut3server | 2 +- UnrealTournament99/ut99server | 2 +- WolfensteinEnemyTerritory/wetserver | 2 +- 57 files changed, 58 insertions(+), 58 deletions(-) diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index fe8f3d210..5825a9248 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index cdda3b2f9..f2a9f2641 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/Arma3/arma3server b/Arma3/arma3server index fe41a5cf4..e4b4fb83b 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/Battlefield1942/bf1942server b/Battlefield1942/bf1942server index 7e10aa02e..43212f78a 100644 --- a/Battlefield1942/bf1942server +++ b/Battlefield1942/bf1942server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/BlackMesa/bmdmserver b/BlackMesa/bmdmserver index 3f540c12c..62bea603e 100644 --- a/BlackMesa/bmdmserver +++ b/BlackMesa/bmdmserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/BladeSymphony/bsserver b/BladeSymphony/bsserver index 21444e0c9..548adea2a 100644 --- a/BladeSymphony/bsserver +++ b/BladeSymphony/bsserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/BrainBread2/bb2server b/BrainBread2/bb2server index 8900e978a..86c2fc9c8 100644 --- a/BrainBread2/bb2server +++ b/BrainBread2/bb2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/CodenameCURE/ccserver b/CodenameCURE/ccserver index 5120d11d0..dd622b8ae 100644 --- a/CodenameCURE/ccserver +++ b/CodenameCURE/ccserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/CounterStrike/csserver b/CounterStrike/csserver index 14ff451f3..bca3e12a3 100644 --- a/CounterStrike/csserver +++ b/CounterStrike/csserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/CounterStrikeConditionZero/csczserver b/CounterStrikeConditionZero/csczserver index 5eb1fb83d..5eb278771 100644 --- a/CounterStrikeConditionZero/csczserver +++ b/CounterStrikeConditionZero/csczserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index 6ce09436b..8018883b9 100755 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/CounterStrikeSource/cssserver b/CounterStrikeSource/cssserver index 716c9904d..78345eb9c 100644 --- a/CounterStrikeSource/cssserver +++ b/CounterStrikeSource/cssserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/DayOfDefeat/dodserver b/DayOfDefeat/dodserver index 5f4787861..e6db43522 100644 --- a/DayOfDefeat/dodserver +++ b/DayOfDefeat/dodserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/DayOfDefeatSource/dodsserver b/DayOfDefeatSource/dodsserver index f212701b9..8386384b6 100644 --- a/DayOfDefeatSource/dodsserver +++ b/DayOfDefeatSource/dodsserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/DayOfInfamy/doiserver b/DayOfInfamy/doiserver index 8f4be1a62..d39568a53 100644 --- a/DayOfInfamy/doiserver +++ b/DayOfInfamy/doiserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/DeathmatchClassic/dmcserver b/DeathmatchClassic/dmcserver index 31dda30c3..d2be5c1be 100644 --- a/DeathmatchClassic/dmcserver +++ b/DeathmatchClassic/dmcserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index a2a6a909a..5b9a5c112 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/DoubleActionBoogaloo/dabserver b/DoubleActionBoogaloo/dabserver index 9f75798a3..c080c568a 100644 --- a/DoubleActionBoogaloo/dabserver +++ b/DoubleActionBoogaloo/dabserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/FistfulOfFrags/fofserver b/FistfulOfFrags/fofserver index fdc6e9665..7dc5cc571 100644 --- a/FistfulOfFrags/fofserver +++ b/FistfulOfFrags/fofserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index 08793a471..1bbba189c 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/GoldenEyeSource/gesserver b/GoldenEyeSource/gesserver index 21d2ce14c..7dd85e2f6 100644 --- a/GoldenEyeSource/gesserver +++ b/GoldenEyeSource/gesserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/HalfLife2Deathmatch/hl2dmserver b/HalfLife2Deathmatch/hl2dmserver index cb048dd93..6b0489fe6 100644 --- a/HalfLife2Deathmatch/hl2dmserver +++ b/HalfLife2Deathmatch/hl2dmserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/HalfLifeDeathmatch/hldmserver b/HalfLifeDeathmatch/hldmserver index 2f0ffc812..43e3bf106 100644 --- a/HalfLifeDeathmatch/hldmserver +++ b/HalfLifeDeathmatch/hldmserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/HalfLifeDeathmatchSource/hldmsserver b/HalfLifeDeathmatchSource/hldmsserver index 286f76824..07b2c24cf 100644 --- a/HalfLifeDeathmatchSource/hldmsserver +++ b/HalfLifeDeathmatchSource/hldmsserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/Hurtworld/hwserver b/Hurtworld/hwserver index 126b8c850..d63e5a346 100644 --- a/Hurtworld/hwserver +++ b/Hurtworld/hwserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## @@ -29,7 +29,7 @@ port="12871" queryport="12881" maxplayers="20" map="" #Optional -creativemode="0" #Free Build: creativemode="1" +creativemode="0" #Free Build: creativemode="1" logfile="gamelog.txt" ## Adding admins using STEAMID64 diff --git a/Insurgency/insserver b/Insurgency/insserver index 903511a4a..6a2748478 100644 --- a/Insurgency/insserver +++ b/Insurgency/insserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/JustCause2/jc2server b/JustCause2/jc2server index cc2a32d26..4c89b31c1 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -15,7 +15,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/KillingFloor/kfserver b/KillingFloor/kfserver index 543178b2c..5f0e44154 100644 --- a/KillingFloor/kfserver +++ b/KillingFloor/kfserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/Left4Dead/l4dserver b/Left4Dead/l4dserver index 79a67cd37..2a7a20be1 100644 --- a/Left4Dead/l4dserver +++ b/Left4Dead/l4dserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/Left4Dead2/l4d2server b/Left4Dead2/l4d2server index 113e09864..0a84f1d83 100644 --- a/Left4Dead2/l4d2server +++ b/Left4Dead2/l4d2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/Minecraft/mcserver b/Minecraft/mcserver index 7fd41c03b..ab69b9010 100644 --- a/Minecraft/mcserver +++ b/Minecraft/mcserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index 99746c3a0..ace1dac08 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/NS2Combat/ns2cserver b/NS2Combat/ns2cserver index 74127a45a..460ce874c 100644 --- a/NS2Combat/ns2cserver +++ b/NS2Combat/ns2cserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index 371f8f3fd..741f37862 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/NoMoreRoomInHell/nmrihserver b/NoMoreRoomInHell/nmrihserver index 449950ce0..d5910ab44 100644 --- a/NoMoreRoomInHell/nmrihserver +++ b/NoMoreRoomInHell/nmrihserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/OpposingForce/opforserver b/OpposingForce/opforserver index 8b3ca6eb5..1c059ed6b 100644 --- a/OpposingForce/opforserver +++ b/OpposingForce/opforserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/PiratesVikingandKnightsII/pvkiiserver b/PiratesVikingandKnightsII/pvkiiserver index 5a9e44c50..bc7767adb 100644 --- a/PiratesVikingandKnightsII/pvkiiserver +++ b/PiratesVikingandKnightsII/pvkiiserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/ProjectZomboid/pzserver b/ProjectZomboid/pzserver index e4f369929..0586a2c13 100644 --- a/ProjectZomboid/pzserver +++ b/ProjectZomboid/pzserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/Quake2/q2server b/Quake2/q2server index f13373320..94de84180 100644 --- a/Quake2/q2server +++ b/Quake2/q2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/Quake3/q3server b/Quake3/q3server index 388fa9a61..c302f10c0 100644 --- a/Quake3/q3server +++ b/Quake3/q3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/QuakeLive/qlserver b/QuakeLive/qlserver index 66ef0d890..33cc3696c 100755 --- a/QuakeLive/qlserver +++ b/QuakeLive/qlserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/RedOrchestra/roserver b/RedOrchestra/roserver index 1ce9e7af9..025bf348c 100644 --- a/RedOrchestra/roserver +++ b/RedOrchestra/roserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/Ricochet/ricochetserver b/Ricochet/ricochetserver index a38a67bd6..8eb18e0c1 100644 --- a/Ricochet/ricochetserver +++ b/Ricochet/ricochetserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/Rust/rustserver b/Rust/rustserver index fb83bd11e..0ac0ab260 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/SeriousSam3BFE/ss3sserver b/SeriousSam3BFE/ss3sserver index 39f10db0c..f0b1181e9 100644 --- a/SeriousSam3BFE/ss3sserver +++ b/SeriousSam3BFE/ss3sserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/Starbound/sbserver b/Starbound/sbserver index b569f0a85..dd5e70e4e 100644 --- a/Starbound/sbserver +++ b/Starbound/sbserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/SvenCoop/svenserver b/SvenCoop/svenserver index 449c66b47..82101fefa 100644 --- a/SvenCoop/svenserver +++ b/SvenCoop/svenserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/TeamFortress2/tf2server b/TeamFortress2/tf2server index bf9519a6e..5adfaa87b 100644 --- a/TeamFortress2/tf2server +++ b/TeamFortress2/tf2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/TeamFortressClassic/tfcserver b/TeamFortressClassic/tfcserver index 4ced5d30a..8b6994e4a 100644 --- a/TeamFortressClassic/tfcserver +++ b/TeamFortressClassic/tfcserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/TeamSpeak3/ts3server b/TeamSpeak3/ts3server index 5903b184a..f0bfbb8ea 100644 --- a/TeamSpeak3/ts3server +++ b/TeamSpeak3/ts3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/Teeworlds/twserver b/Teeworlds/twserver index 37f846f9f..bae6a0427 100644 --- a/Teeworlds/twserver +++ b/Teeworlds/twserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/Terraria/terrariaserver b/Terraria/terrariaserver index e1d9ca028..a7b2b6c8b 100644 --- a/Terraria/terrariaserver +++ b/Terraria/terrariaserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/UnrealTournament/utserver b/UnrealTournament/utserver index cd4ef02d3..d011b93ad 100644 --- a/UnrealTournament/utserver +++ b/UnrealTournament/utserver @@ -15,7 +15,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/UnrealTournament2004/ut2k4server b/UnrealTournament2004/ut2k4server index 6de94893e..c8c1f55ee 100644 --- a/UnrealTournament2004/ut2k4server +++ b/UnrealTournament2004/ut2k4server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/UnrealTournament3/ut3server b/UnrealTournament3/ut3server index 5da529d31..b65b633bb 100644 --- a/UnrealTournament3/ut3server +++ b/UnrealTournament3/ut3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/UnrealTournament99/ut99server b/UnrealTournament99/ut99server index 0ee8afd2d..8787df657 100644 --- a/UnrealTournament99/ut99server +++ b/UnrealTournament99/ut99server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## diff --git a/WolfensteinEnemyTerritory/wetserver b/WolfensteinEnemyTerritory/wetserver index 08415a1d4..c4a5a0db8 100644 --- a/WolfensteinEnemyTerritory/wetserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161026" +version="161030" ########################## ######## Settings ######## From 5e0edfddb04d0212e2e467b930777094512bafa5 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 30 Oct 2016 22:32:49 +0000 Subject: [PATCH 237/246] Removed "Steam login not set. Using anonymous login." No requirement for it to be displayed everytime --- lgsm/functions/check_steamcmd.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lgsm/functions/check_steamcmd.sh b/lgsm/functions/check_steamcmd.sh index b4602a120..20a36afea 100644 --- a/lgsm/functions/check_steamcmd.sh +++ b/lgsm/functions/check_steamcmd.sh @@ -27,9 +27,8 @@ fn_check_steamcmd_user(){ fi # Anonymous user is set if steamuser is missing if [ -z "${steamuser}" ]; then - fn_print_info_nl "Steam login not set. Using anonymous login." if [ -d "${scriptlogdir}" ]; then - fn_script_log_info "Steam login not set. Using anonymous login." + fn_script_log_info "Using anonymous Steam login." fi steamuser="anonymous" steampass="" From a3e98d0039d90e92a075fd9aa70e82753b29e495 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 30 Oct 2016 22:42:12 +0000 Subject: [PATCH 238/246] Release 161030 (#1162) * If there are backups in backup dir. Fixes #1140 * mainly improves logging #1098 * Better logging, output & compatibility #1098 * fn_check_cfgdir for Rust fixes #1141 * fn_set_config_vars is not for every game removing some games i know don't use it * Install config if missing fixes #1142 * Clear more logs #1137 * Putting all this into functions & prepare noprompt * noprompt & shutdownonbackup #1098 * fix syntax & messages #1098 * messages that make more sense #1098 * New backup vars # Backup maxbackups="4" maxbackupdays="30" stoponbackup="on" * Should fix missing cached mem #1143 * fix the fix for #1143 (close double quote) * move -type f before -mtime * New gameservers & features (#1158) * Two # is now one block of settings & descriptions * directories comments and logs naming * dgibbs revision and root check * update_steamcmd.sh Check is now done out of functions * Better way to detect screen #1154 and #1156 * Backup function improvements (#1161) * Added no of days since last backup * Added lock file creation to logs * Improvements up command_backup.sh Changes to the messages displayed on screen added trap and improved lockfile support renamed some functions other misc changes * Updated Version numbers --- 7DaysToDie/sdtdserver | 122 ++++++--- ARKSurvivalEvolved/arkserver | 125 ++++++---- ARKSurvivalEvolved/cfg/lgsm-default.ini | 135 ---------- Arma3/arma3server | 144 +++++++---- Arma3/cfg/lgsm-default.network.cfg | 77 ------ Arma3/cfg/lgsm-default.server.cfg | 133 ---------- Battlefield1942/bf1942server | 94 +++++-- BlackMesa/bmdmserver | 119 ++++++--- BlackMesa/cfg/lgsm-default.cfg | 24 -- BladeSymphony/bsserver | 116 +++++---- BladeSymphony/cfg/lgsm-default.cfg | 15 -- BrainBread2/bb2server | 125 ++++++---- BrainBread2/cfg/lgsm-default.cfg | 201 --------------- CodenameCURE/ccserver | 128 ++++++---- CodenameCURE/cfg/lgsm-default.cfg | 105 -------- CounterStrike/cfg/lgsm-default.cfg | 38 --- CounterStrike/csserver | 123 ++++++--- .../cfg/lgsm-default.cfg | 38 --- CounterStrikeConditionZero/csczserver | 125 ++++++---- .../cfg/lgsm-default.cfg | 31 --- CounterStrikeGlobalOffensive/csgoserver | 144 +++++++---- CounterStrikeSource/cfg/lgsm-default.cfg | 15 -- CounterStrikeSource/cssserver | 129 ++++++---- DayOfDefeat/cfg/lgsm-default.cfg | 38 --- DayOfDefeat/dodserver | 124 +++++++--- DayOfDefeatSource/cfg/lgsm-default.cfg | 38 --- DayOfDefeatSource/dodsserver | 128 ++++++---- DayOfInfamy/cfg/lgsm-default.cfg | 16 -- DayOfInfamy/doiserver | 125 ++++++---- DeathmatchClassic/cfg/lgsm-default.cfg | 35 --- DeathmatchClassic/dmcserver | 125 ++++++---- DontStarveTogether/cfg/lgsm-default.ini | 39 --- DontStarveTogether/dstserver | 128 ++++++---- DoubleActionBoogaloo/cfg/lgsm-default.cfg | 15 -- DoubleActionBoogaloo/dabserver | 128 ++++++---- EmpiresMod/emserver | 127 +++++----- FistfulOfFrags/cfg/lgsm-default.cfg | 126 ---------- FistfulOfFrags/fofserver | 128 ++++++---- GarrysMod/cfg/lgsm-default.cfg | 86 ------- GarrysMod/gmodserver | 144 ++++++----- GoldenEyeSource/cfg/lgsm-default.cfg | 126 ---------- GoldenEyeSource/gesserver | 121 ++++++--- HalfLife2Deathmatch/cfg/lgsm-default.cfg | 15 -- HalfLife2Deathmatch/hl2dmserver | 123 ++++++--- HalfLifeDeathmatch/cfg/lgsm-default.cfg | 35 --- HalfLifeDeathmatch/hldmserver | 123 ++++++--- HalfLifeDeathmatchSource/cfg/lgsm-default.cfg | 15 -- HalfLifeDeathmatchSource/hldmsserver | 122 ++++++--- Hurtworld/hwserver | 140 +++++++---- Insurgency/insserver | 127 ++++++---- JustCause2/cfg/config.lua | 180 -------------- JustCause2/jc2server | 119 ++++++--- KillingFloor/kfserver | 125 ++++++---- Left4Dead/cfg/lgsm-default.cfg | 15 -- Left4Dead/l4dserver | 129 ++++++---- Left4Dead2/cfg/lgsm-default.cfg | 15 -- Left4Dead2/l4d2server | 128 ++++++---- Minecraft/cfg/lgsm-default.ini | 40 --- Minecraft/mcserver | 102 +++++--- Mumble/mumbleserver | 99 +++++--- NS2Combat/ns2cserver | 126 ++++++---- NaturalSelection2/ns2server | 126 ++++++---- NoMoreRoomInHell/cfg/lgsm-default.cfg | 121 --------- NoMoreRoomInHell/nmrihserver | 130 ++++++---- OpposingForce/cfg/lgsm-default.cfg | 35 --- OpposingForce/opforserver | 125 ++++++---- .../cfg/lgsm-default.cfg | 119 --------- PiratesVikingandKnightsII/pvkiiserver | 128 ++++++---- ProjectZomboid/cfg/lgsm-default.ini | 66 ----- ProjectZomboid/pzserver | 124 ++++++---- Quake2/cfg/lgsm-default.cfg | 15 -- Quake2/q2server | 100 +++++--- Quake3/cfg/lgsm-default.cfg | 36 --- Quake3/q3server | 99 +++++--- QuakeLive/cfg/lgsm-default.cfg | 103 -------- QuakeLive/qlserver | 128 ++++++---- RedOrchestra/roserver | 120 ++++++--- Ricochet/cfg/lgsm-default.cfg | 35 --- Ricochet/ricochetserver | 147 ++++++++--- Rust/cfg/lgsm-default.cfg | 48 ---- Rust/rustserver | 134 ++++++---- SeriousSam3BFE/cfg/lgsm-default.ini | 49 ---- .../help/DedicatedServer_Readme.txt | 139 ----------- SeriousSam3BFE/ss3sserver | 126 ++++++---- Starbound/cfg/lgsm-default.config | 49 ---- Starbound/sbserver | 125 ++++++---- SvenCoop/cfg/lgsm-default.cfg | 36 --- SvenCoop/svenserver | 128 ++++++---- TeamFortress2/cfg/lgsm-default.cfg | 15 -- TeamFortress2/tf2server | 128 ++++++---- TeamFortressClassic/cfg/lgsm-default.cfg | 38 --- TeamFortressClassic/tfcserver | 125 ++++++---- TeamSpeak3/cfg/lgsm-default.ini | 20 -- TeamSpeak3/ts3server | 99 +++++--- Teeworlds/cfg/ctf.cfg | 7 - Teeworlds/cfg/dm.cfg | 7 - Teeworlds/cfg/duel.cfg | 7 - Teeworlds/cfg/lgsm-default.cfg | 26 -- Teeworlds/cfg/tdm.cfg | 14 -- Teeworlds/twserver | 121 ++++++--- Terraria/cfg/lgsm-default.txt | 68 ----- Terraria/terrariaserver | 121 ++++++--- UnrealTournament/cfg/Engine.ini | 3 - UnrealTournament/cfg/Game.ini | 4 - UnrealTournament/utserver | 105 +++++--- UnrealTournament2004/ut2k4server | 117 ++++++--- UnrealTournament3/ut3server | 106 +++++--- UnrealTournament99/ut99server | 103 +++++--- .../cfg/lgsm-default.cfg | 125 ---------- WolfensteinEnemyTerritory/wetserver | 103 +++++--- lgsm/functions/check_config.sh | 3 +- lgsm/functions/check_steamcmd.sh | 7 +- lgsm/functions/check_tmuxception.sh | 6 +- lgsm/functions/command_backup.sh | 233 ++++++++++++++---- lgsm/functions/command_debug.sh | 6 +- lgsm/functions/command_details.sh | 8 +- lgsm/functions/command_monitor.sh | 4 +- lgsm/functions/command_start.sh | 4 +- lgsm/functions/command_stop.sh | 6 +- lgsm/functions/core_dl.sh | 8 +- lgsm/functions/core_messages.sh | 2 +- lgsm/functions/info_distro.sh | 29 ++- lgsm/functions/install_config.sh | 4 +- lgsm/functions/logs.sh | 14 ++ lgsm/functions/update_steamcmd.sh | 5 +- 125 files changed, 4925 insertions(+), 5348 deletions(-) delete mode 100644 ARKSurvivalEvolved/cfg/lgsm-default.ini delete mode 100644 Arma3/cfg/lgsm-default.network.cfg delete mode 100644 Arma3/cfg/lgsm-default.server.cfg delete mode 100644 BlackMesa/cfg/lgsm-default.cfg delete mode 100644 BladeSymphony/cfg/lgsm-default.cfg delete mode 100644 BrainBread2/cfg/lgsm-default.cfg delete mode 100644 CodenameCURE/cfg/lgsm-default.cfg delete mode 100644 CounterStrike/cfg/lgsm-default.cfg delete mode 100644 CounterStrikeConditionZero/cfg/lgsm-default.cfg delete mode 100644 CounterStrikeGlobalOffensive/cfg/lgsm-default.cfg delete mode 100644 CounterStrikeSource/cfg/lgsm-default.cfg delete mode 100644 DayOfDefeat/cfg/lgsm-default.cfg delete mode 100644 DayOfDefeatSource/cfg/lgsm-default.cfg delete mode 100644 DayOfInfamy/cfg/lgsm-default.cfg delete mode 100644 DeathmatchClassic/cfg/lgsm-default.cfg delete mode 100644 DontStarveTogether/cfg/lgsm-default.ini delete mode 100644 DoubleActionBoogaloo/cfg/lgsm-default.cfg delete mode 100644 FistfulOfFrags/cfg/lgsm-default.cfg delete mode 100644 GarrysMod/cfg/lgsm-default.cfg delete mode 100644 GoldenEyeSource/cfg/lgsm-default.cfg delete mode 100644 HalfLife2Deathmatch/cfg/lgsm-default.cfg delete mode 100644 HalfLifeDeathmatch/cfg/lgsm-default.cfg delete mode 100644 HalfLifeDeathmatchSource/cfg/lgsm-default.cfg delete mode 100644 JustCause2/cfg/config.lua delete mode 100644 Left4Dead/cfg/lgsm-default.cfg delete mode 100644 Left4Dead2/cfg/lgsm-default.cfg delete mode 100644 Minecraft/cfg/lgsm-default.ini delete mode 100644 NoMoreRoomInHell/cfg/lgsm-default.cfg delete mode 100644 OpposingForce/cfg/lgsm-default.cfg delete mode 100644 PiratesVikingandKnightsII/cfg/lgsm-default.cfg delete mode 100644 ProjectZomboid/cfg/lgsm-default.ini delete mode 100644 Quake2/cfg/lgsm-default.cfg delete mode 100644 Quake3/cfg/lgsm-default.cfg delete mode 100644 QuakeLive/cfg/lgsm-default.cfg delete mode 100644 Ricochet/cfg/lgsm-default.cfg delete mode 100644 Rust/cfg/lgsm-default.cfg delete mode 100644 SeriousSam3BFE/cfg/lgsm-default.ini delete mode 100644 SeriousSam3BFE/help/DedicatedServer_Readme.txt delete mode 100644 Starbound/cfg/lgsm-default.config delete mode 100644 SvenCoop/cfg/lgsm-default.cfg delete mode 100644 TeamFortress2/cfg/lgsm-default.cfg delete mode 100644 TeamFortressClassic/cfg/lgsm-default.cfg delete mode 100644 TeamSpeak3/cfg/lgsm-default.ini delete mode 100644 Teeworlds/cfg/ctf.cfg delete mode 100644 Teeworlds/cfg/dm.cfg delete mode 100644 Teeworlds/cfg/duel.cfg delete mode 100644 Teeworlds/cfg/lgsm-default.cfg delete mode 100644 Teeworlds/cfg/tdm.cfg delete mode 100644 Terraria/cfg/lgsm-default.txt delete mode 100644 UnrealTournament/cfg/Engine.ini delete mode 100644 UnrealTournament/cfg/Game.ini delete mode 100644 WolfensteinEnemyTerritory/cfg/lgsm-default.cfg diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index 7ec533282..5825a9248 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -1,67 +1,93 @@ #!/bin/bash -# 7 Days To Die -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: 7 Days To Die | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters ip="0.0.0.0" -updateonstart="off" -# http://7daystodie.gamepedia.com/Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | http://7daystodie.gamepedia.com/Server fn_parms(){ parms="-logfile ${gamelogdir}/output_log__`date +%Y-%m-%d__%H-%M-%S`.txt -quit -batchmode -nographics -dedicated -configfile=${servercfgfullpath}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="294420" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="294420" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". # Example: "-beta latest_experimental" branch="" -# Server Details -servicename="sdtd-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="7 Days To Die" engine="unity3d" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="sdtd-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +96,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./7DaysToDieServer.x86" @@ -77,25 +105,27 @@ servercfg="${servicename}.xml" servercfgdefault="serverconfig.xml" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log/server" scriptlogdir="${rootdir}/log/script" consolelogdir="${rootdir}/log/console" -consolelogging="on" - gamelog="${gamelogdir}/${servicename}-game.log" 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -152,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 core_getopt.sh diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index bcabf3e27..f2a9f2641 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -1,36 +1,28 @@ #!/bin/bash -# ARK: Survivial Evolved -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: ARK: Survival Evolved | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters servername="ark-server" port="7778" queryport="27015" @@ -38,35 +30,66 @@ rconport="32330" rconpassword="" # Set to enable rcon maxplayers="50" ip="0.0.0.0" -updateonstart="off" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care fn_parms(){ parms="\"TheIsland?listen?MultiHome=${ip}?SessionName=${servername}?MaxPlayers=${maxplayers}?QueryPort=${queryport}?RCONPort=${rconport}?Port=${port}?ServerAdminPassword=${rconpassword}\"" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="376030" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="376030" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="ark-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="ARK: Survivial Evolved" engine="unreal4" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ark-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -75,6 +98,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/ShooterGame" executabledir="${systemdir}/Binaries/Linux" executable="./ShooterGameServer" @@ -82,24 +107,26 @@ servercfgdir="${systemdir}/Saved/Config/LinuxServer" servercfg="GameUserSettings.ini" servercfgfullpath="${servercfgdir}/${servercfg}" servercfgdefault="${servercfgdir}/GameUserSettings.ini" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -156,8 +183,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 core_getopt.sh diff --git a/ARKSurvivalEvolved/cfg/lgsm-default.ini b/ARKSurvivalEvolved/cfg/lgsm-default.ini deleted file mode 100644 index e14a10c6f..000000000 --- a/ARKSurvivalEvolved/cfg/lgsm-default.ini +++ /dev/null @@ -1,135 +0,0 @@ -[ServerSettings] -AllowFlyerCarryPvE=False -AllowThirdPersonPlayer=False -AlwaysNotifyPlayerLeft=False -AutoSavePeriodMinutes=15.000000 -ClampResourceHarvestDamage=False -DayCycleSpeedScale=1.000000 -DayTimeSpeedScale=1.000000 -DifficultyOffset=0.200000 -DinoCharacterFoodDrainMultiplier=1.000000 -DinoCharacterHealthRecoveryMultiplier=1.000000 -DinoCharacterStaminaDrainMultiplier=1.000000 -DinoCountMultiplier=1.000000 -DinoDamageMultiplier=1.000000 -DinoResistanceMultiplier=1.000000 -DisableStructureDecayPvE=False -DontAlwaysNotifyPlayerJoined=False -EnablePvPGamma=False -GlobalVoiceChat=False -HarvestAmountMultiplier=1.000000 -HarvestHealthMultiplier=1.000000 -KickIdlePlayersPeriod=2400.000000 -NewMaxStructuresInRange=6000.000000 -NightTimeSpeedScale=1.000000 -NoTributeDownloads=False -PlayerCharacterFoodDrainMultiplier=1.000000 -PlayerCharacterHealthRecoveryMultiplier=1.000000 -PlayerCharacterStaminaDrainMultiplier=1.000000 -PlayerCharacterWaterDrainMultiplier=1.000000 -PlayerDamageMultiplier=1.000000 -PlayerResistanceMultiplier=1.000000 -ProximityChat=False -ProximityVoiceChat=False -PvEStructureDecayDestructionPeriod=0.000000 -PvEStructureDecayPeriodMultiplier=1.000000 -RCONEnabled=True -RCONPort=32330 -ResourcesRespawnPeriodMultiplier=1.000000 -ServerAdminPassword=adminpassword -ServerCrosshair=False -ServerForceNoHUD=False -ServerHardcore=False -ServerPassword= -ServerPVE=False -ShowMapPlayerLocation=False -StructureDamageMultiplier=1.000000 -StructureResistanceMultiplier=1.000000 -TamedDinoDamageMultiplier=1.000000 -TamedDinoResistanceMultiplier=1.000000 -TamingSpeedMultiplier=1.000000 -XPMultiplier=1.000000 - -[/Script/ShooterGame.ShooterGameUserSettings] -MasterAudioVolume=1.000000 -MusicAudioVolume=1.000000 -SFXAudioVolume=1.000000 -VoiceAudioVolume=1.000000 -CameraShakeScale=1.000000 -bFirstPersonRiding=False -bThirdPersonPlayer=False -bShowStatusNotificationMessages=True -TrueSkyQuality=0.270000 -FOVMultiplier=1.000000 -GroundClutterDensity=1.000000 -bFilmGrain=False -bMotionBlur=True -bUseDFAO=True -bUseSSAO=True -bShowChatBox=True -bCameraViewBob=True -bInvertLookY=False -bFloatingNames=True -bChatBubbles=True -bHideServerInfo=False -bJoinNotifications=False -bCraftablesShowAllItems=True -LookLeftRightSensitivity=1.000000 -LookUpDownSensitivity=1.000000 -GraphicsQuality=2 -ActiveLingeringWorldTiles=10 -ClientNetQuality=3 -LastServerSearchType=0 -LastServerSearchHideFull=False -LastServerSearchProtected=False -HideItemTextOverlay=False -bDistanceFieldShadowing=True -LODScalar=1.000000 -HighQualityMaterials=True -HighQualitySurfaces=True -bTemperatureF=False -bDisableTorporEffect=False -bChatShowSteamName=False -bChatShowTribeName=True -EmoteKeyBind1=0 -EmoteKeyBind2=0 -bUseVSync=False -ResolutionSizeX=1280 -ResolutionSizeY=720 -LastUserConfirmedResolutionSizeX=1280 -LastUserConfirmedResolutionSizeY=720 -WindowPosX=-1 -WindowPosY=-1 -bUseDesktopResolutionForFullscreen=False -FullscreenMode=2 -LastConfirmedFullscreenMode=2 -Version=5 - -[ScalabilityGroups] -sg.ResolutionQuality=100 -sg.ViewDistanceQuality=3 -sg.AntiAliasingQuality=3 -sg.ShadowQuality=3 -sg.PostProcessQuality=3 -sg.TextureQuality=3 -sg.EffectsQuality=3 -sg.TrueSkyQuality=3 -sg.GroundClutterQuality=3 -sg.IBLQuality=1 -sg.HeightFieldShadowQuality=3 - -[SessionSettings] -SessionName=arkserver -QueryPort=27015 -Port=7777 -;MultiHome=INSERT_IPv4_HERE ;Example:192.168.0.9. If not just remove any line containing MultiHome. - -[/Script/Engine.GameSession] -MaxPlayers=127 - -[MultiHome] -;MultiHome=True ;If MultiHome=IPv4 is filled in. If not just remove any line containing MultiHome. - -[MessageOfTheDay] -Message=Welcome to ARK Server -Duration=5 diff --git a/Arma3/arma3server b/Arma3/arma3server index 82484e3e4..e4b4fb83b 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -1,83 +1,109 @@ #!/bin/bash -# ARMA 3 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs -# Contributor: Scarsz +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: ARMA 3 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) +version="161030" -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +########################## +######## Settings ######## +########################## -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +#### Server Settings #### -# Steam login +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters ip="0.0.0.0" port="2302" -updateonstart="off" -fn_parms(){ -parms="-netlog -ip=${ip} -port=${port} -cfg=${networkcfgfullpath} -config=${servercfgfullpath} -mod=${mods} -servermod=${servermods} -bepath=${bepath} -autoinit -loadmissiontomemory" -} - -# ARMA 3 Modules -# add mods with relative paths: +## ARMA 3 Modules +# Add mods with relative paths: # mods/@cba_a3 -# to load the "Community Base Addons v3" module found in the +# To load the "Community Base Addons v3" module found in the # directory serverfiles/mods/@cba_a3. Load several mods as: # mods="mods/@ace\;mods/@acex\;mods/@cba_a3" mods="" -# Server-side Mods +## Server-side Mods servermods="" -# Path to BattlEye -# leave empty for default +## Path to BattlEye +# Leave empty for default bepath="" -#### Advanced Variables #### +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care +fn_parms(){ +parms="-netlog -ip=${ip} -port=${port} -cfg=${networkcfgfullpath} -config=${servercfgfullpath} -mod=${mods} -servermod=${servermods} -bepath=${bepath} -autoinit -loadmissiontomemory" +} -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +#### LinuxGSM Settings #### -# Steam -appid="233780" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="233780" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta development" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="arma3-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="ARMA 3" engine="realvirtuality" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="arma3-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -86,6 +112,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./arma3server" @@ -96,24 +124,26 @@ networkcfgdefault="network.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" networkcfgfullpath="${servercfgdir}/${networkcfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories #gamelogdir="" # No server logs available 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -170,8 +200,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 core_getopt.sh diff --git a/Arma3/cfg/lgsm-default.network.cfg b/Arma3/cfg/lgsm-default.network.cfg deleted file mode 100644 index 5bba89f8d..000000000 --- a/Arma3/cfg/lgsm-default.network.cfg +++ /dev/null @@ -1,77 +0,0 @@ -// -// network.cfg - Defines network tuning parameters -// -// This file is to be passed to the -cfg parameter on the command line for the server -// See http://community.bistudio.com/wiki/basic.cfg -// The following settings are the suggested settings - -// BANDWIDTH SETTINGS - -// Bandwidth the server is guaranteed to have (in bps) -// General guideline is NumberOfPlayers * 256kb -// Default: 131072 -MinBandwidth=5120000; -// Bandwidth the server can never go above (in bps) -// For a single server, use full network speed; decrease when running multiple servers -MaxBandwidth=10240000; - -// PACKET SETTINGS - -// Maximum number of packets per frame. -// Increasing the value potentially decreases lag, but increases desync -// Default: 128 -MaxMsgSend=2048; -// Maximum payload of guaranteed packet (in b) -// Small messages are packed to larger packets -// Guaranteed packets are used for non-repetitive events, like shooting -// Lower value means more packets are sent, so less events will get combined -// Default: 512 -MaxSizeGuaranteed=512; -// Maximum payload of non-guaranteed packet (in b) -// Increasing this value may improve bandwidth requirement, but may also increase lag -// Largest factor in desync -// Guidance is half of MaxSizeGuaranteed -// Default: 256 -MaxSizeNonguaranteed=256; -// Maximal size of a packet sent over the network -// Only necessary if ISP forces lower packet size and there are connectivity issues -// Default: 1400 -// class sockets{maxPacketSize=1400}; - -// SMOOTHNESS SETTINGS - -// Minimal error required to send network updates for far units -// Smaller values will make for smoother movement at long ranges, but will increase network traffic -// Default: 0.003 -MinErrorToSend=0.01; -// Minimal error required to send network updates for near units -// Using larger value can reduce traffic sent for near units -// Also controls client to server traffic -// Default: 0.01 -MinErrorToSendNear=0.02; - -// GEOLOCATION SETTINGS - -// Server latitude -serverLatitude=52; -serverLatitudeAuto=52; - -// Server Longitude -serverLongitude=0; -serverLongitudeAuto=0; -// MISC -// View Distance (not sure if this actually works) -viewDistance=10000; - -// Maximum size (in b) for custom face or sound files -// Default: 0 -MaxCustomFileSize=0; -// Server language -language="English"; -steamLanguage="English"; -// Adapter -adapter=-1; -// Windowed mode -Windowed=0; - -3D_Performance=1.000000; \ No newline at end of file diff --git a/Arma3/cfg/lgsm-default.server.cfg b/Arma3/cfg/lgsm-default.server.cfg deleted file mode 100644 index 51b2c26e6..000000000 --- a/Arma3/cfg/lgsm-default.server.cfg +++ /dev/null @@ -1,133 +0,0 @@ -// ArmA 3 Server Config File -// -// More info about parameters: -// https://community.bistudio.com/wiki/server.cfg - - -// PORTS -// please specify the serverport as a parameter in arma3server executable -// it will automatically use the serverport including the next 3 for steam query & steam master. -// the fourth port ist not documented in https://community.bistudio.com/wiki/Arma_3_Dedicated_Server#Port_Forwarding -// Server Port -// default: 2302. -// serverport=2302; - -// Steam Master Port -// default: 2304. -// steamport=2304; - -// Steam Query Port -// default: 2303. -//steamqueryport=2303; - - -// GENERAL SETTINGS - -// Server Name -hostname = "arma3server"; - -// Server Password -//password = "arma3pass"; - -// Admin Password -passwordAdmin = "arma3adminpass"; - -// Server Slots -maxPlayers = 32; - -// Logfile -logFile = "arma3server.log"; - -// Minimum Required Client Build -//requiredBuild = 95691 - -// Message of the Day (MOTD) -motd[]={ - "Welcome to My Arma 3 Server", - "TS3 Server: teamspeak.somewhere.com", - "Web: www.example.com" -}; - -// MOTD Interval (Seconds) -motdInterval = 30; - - -// VOTING - -// Server Mission Start -// minimum number of clients before server starts mission -voteMissionPlayers = 1; - -// Accepted Vote Threshold -// 0.33 = 33% clients. -voteThreshold = 0.33; - -// INGAME SETTINGS - -// Disable Voice over Net (VoN) -// 0 = voice enabled. -// 1 = voice disabled. -disableVoN = 0; - -// VoN Codec Quality -// 0-10 = 8kHz (narrowband). -// 11-20 = 16kHz (wideband). -// 21-30 = 32kHz (ultrawideband). -vonCodecQuality = 3; - -//Persistent Battlefield -// 0 = disable. -// 1 = enable. -persistent = 1; - -// Time Stamp Format -// none, short, full -timeStampFormat = "short"; - - -// SERVER SECURITY/ANTI HACK - -// Verify Signitures for Client Addons -// 0 = off. -// 1 = weak protection (depricated). -// 2 = full protection. -verifySignatures = 2; - -// Secure Player ID -// 1 = Server warning message. -// 2 = Kick client. -requiredSecureId = 2; - -// Kick Duplicate Player IDs -kickDuplicate = 1; - -// BattlEye Anti-Cheat -// 0 = disable -// 1 = enable -BattlEye = 1; - -// Allowed File Extentions -allowedLoadFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"}; -allowedPreprocessFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"}; -allowedHTMLLoadExtensions[] = {"htm","html","xml","txt"}; - -// SCRIPTING ISSUES -onUserConnected = ""; // -onUserDisconnected = ""; // -doubleIdDetected = ""; // - -// SIGNATURE VERIFICATION -// kick = kick (_this select 0) -// ban = ban (_this select 0) -onUnsignedData = "kick (_this select 0)"; -onHackedData = "kick (_this select 0)"; -onDifferentData = ""; - -// HEADLESS CLIENT SUPPORT -// specify ip-adresses of allowed headless clients -// if more than one: -// headlessClients[]={"127.0.0.1", "192.168.0.1"}; -// localClient[]={"127.0.0.1", "192.168.0.1"}; -headlessClients[]={"127.0.0.1"}; -localClient[]={"127.0.0.1"}; -battleyeLicense=1; diff --git a/Battlefield1942/bf1942server b/Battlefield1942/bf1942server index 5aca78b93..43212f78a 100644 --- a/Battlefield1942/bf1942server +++ b/Battlefield1942/bf1942server @@ -1,36 +1,56 @@ #!/bin/bash -# Battlefield: 1942 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Battlefield: 1942 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +fn_parms(){ +parms="+hostServer 1 +dedicated 1" +} + +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email emailalert="off" email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Start Variables +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -fn_parms(){ -parms="+hostServer 1 +dedicated 1" -} #### Advanced Variables #### @@ -41,12 +61,18 @@ githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Server Details -servicename="bf1942-server" +## LinuxGSM Server Details +# Do not edit gamename="Battlefield: 1942" engine="refractor" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="bf1942-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -55,6 +81,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${systemdir}" executable="./start.sh" @@ -62,24 +90,26 @@ servercfg="serversettings.con" servercfgdefault="serversettings.con" servercfgdir="${systemdir}/mods/bf1942/settings" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -136,8 +166,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 core_getopt.sh diff --git a/BlackMesa/bmdmserver b/BlackMesa/bmdmserver index 5026662a4..62bea603e 100644 --- a/BlackMesa/bmdmserver +++ b/BlackMesa/bmdmserver @@ -1,77 +1,99 @@ #!/bin/bash -# Black Mesa: Deathmatch -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Black Mesa: Deathmatch | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161030" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +#### Server Settings #### -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="dm_bounce" maxplayers="16" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# Optional: Game Server Login Token +## Optional: Game Server Login Token # GSLT can be used for running a public server. # More info: https://gameservermanagers.com/gslt gslt="" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game bms -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +sv_setsteamaccount ${gslt} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam +## SteamCMD Settings +# Server appid appid="346680" - # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta public-beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="bmdm-server" +## LinuxGSM Server Details +# Do not edit gamename="Black Mesa: Deathmatch" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="bmdm-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -80,6 +102,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/bms" executabledir="${filesdir}" executable="./srcds_run" @@ -87,24 +111,27 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directorie gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -161,8 +188,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 core_getopt.sh diff --git a/BlackMesa/cfg/lgsm-default.cfg b/BlackMesa/cfg/lgsm-default.cfg deleted file mode 100644 index 9a047db15..000000000 --- a/BlackMesa/cfg/lgsm-default.cfg +++ /dev/null @@ -1,24 +0,0 @@ -// Black Mesa server.cfg file -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -mp_timelimit 900 -mp_warmup_time 30 -// sv_lan 0 -// mp_flashlight 1 -// mp_forcerespawn 0 -// mp_friendlyfire 0 -// mp_fraglimit 45 \ No newline at end of file diff --git a/BladeSymphony/bsserver b/BladeSymphony/bsserver index 946e6c2d9..548adea2a 100644 --- a/BladeSymphony/bsserver +++ b/BladeSymphony/bsserver @@ -1,72 +1,91 @@ #!/bin/bash -# Blade Symphony -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Blade Symphony | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161030" -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +########################## +######## Settings ######## +########################## -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +#### Server Settings #### -# Steam login +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="duel_winter" maxplayers="16" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-autoupdate -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" -# Steam -appid="228780" +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="228780" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta nightly -betapassword winteriscoming" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="bs-server" +## LinuxGSM Server Details +# Do not edit gamename="Blade Symphony" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="bs-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -75,6 +94,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/berimbau" executabledir="${filesdir}" executable="./srcds_run.sh" @@ -82,24 +103,25 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -156,8 +178,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 core_getopt.sh diff --git a/BladeSymphony/cfg/lgsm-default.cfg b/BladeSymphony/cfg/lgsm-default.cfg deleted file mode 100644 index c2b66dcbc..000000000 --- a/BladeSymphony/cfg/lgsm-default.cfg +++ /dev/null @@ -1,15 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 \ No newline at end of file diff --git a/BrainBread2/bb2server b/BrainBread2/bb2server index 8348aafd2..86c2fc9c8 100644 --- a/BrainBread2/bb2server +++ b/BrainBread2/bb2server @@ -1,77 +1,102 @@ #!/bin/bash -# BrainBread 2 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: BrainBread 2 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161030" -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login # Steam login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="bba_barracks" maxplayers="20" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# Optional: Game Server Login Token +## Optional: Game Server Login Token # GSLT can be used for running a public server. # More info: https://gameservermanagers.com/gslt gslt="" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game brainbread2 -insecure -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +sv_setsteamaccount ${gslt} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="475370" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="475370" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta_branch" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="bb2-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="BrainBread 2" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="bb2-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -80,6 +105,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/brainbread2" executabledir="${filesdir}" executable="./srcds_run" @@ -87,24 +114,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -161,8 +190,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 core_getopt.sh diff --git a/BrainBread2/cfg/lgsm-default.cfg b/BrainBread2/cfg/lgsm-default.cfg deleted file mode 100644 index e016e66fb..000000000 --- a/BrainBread2/cfg/lgsm-default.cfg +++ /dev/null @@ -1,201 +0,0 @@ -// **************************************************************************** -// * -// BrainBread 2 - server.cfg * -// Version 080116 * -// * -// **************************************************************************** - -// ............................. Basic Settings ............................. // - -// Hostname for server. -hostname "" - -// RCON - remote console password. -rcon_password "" - -// Server password - for private servers. -sv_password "" - -// Contact email for server sysop. -sv_contact "email@example.com" - -// LAN Mode - If set the server will not show on the internet. -// Default: sv_lan 0 -sv_lan 0 - -// Cheats - Allows cheats on the server. Steam achievements and stats are disabled. -// Default: 0 -sv_cheats 0 - -// Friendly Fire - Allows team members to injure other members of their team. -// 0 = Friendly fire off. -// 1 = Friendly fire on. -// Default: 0 -mp_friendlyfire 0 - -// ........................ Game Specific Commands ........................ // -// info: any commands that only apply to this game. - - -// Mercy Value - Sets how many deaths until the players become human once again. -// Default: bb2_allow_mercy 0 -bb2_allow_mercy 3 - -// Late Joining - Allows players to spawn late. -// default bb2_allow_latejoin 0 -bb2_allow_latejoin 1 - -// Player Spawn Protection - Time in seconds after Spawn. -// default bb2_spawn_protection 1 -bb2_spawn_protection 15 - -// Profile System - Allow players to save and load there skills. -// 0 = Disabled, skills are not saved. -// 1 = Global, players can load there global skills. -// 2 = Server, players save there skills to the server. Steam achievements and stats are disabled. -// Default 1 -bb2_allow_profile_system 1 - -// Allow NPC to score - Allow friendly npcs to affect scoring. For example for quests. -// Default 1 -bb2_allow_npc_to_score 0 - -// Vote Settings - -// Voting: Passing Votes - Percentage of players that are required to pass a vote. -// Minimum: 0 -// Maximum: 100 -// Default 50 -bb2_votes_required 50 - -// Voting: Ban Time - Number of minutes a player be banned if a vaote ban passes. -// minimum: 0 (permanent) -// default 30 -bb2_ban_time 30 - - -// Arena Settings - -// Arena: Respawn Interval Time (Seconds). -// Minimum: 20 -// Default 40 -bb2_arena_respawn_time 25 - -// Arena: Number of Reinforcements. -// Minimum: 0 -// Maximum: 100 -// Default 14 -bb2_arena_reinforcement_count 14 - - -// Classic Mode Settings - -// Classic: Zombie No Team Change. -// 0 = Players can become zombies. -// 1 = Players cannot become zombies. -// Default 0 -bb2_classic_zombie_noteamchange 1 - - -// Elimination Settings - -// Elimination: Team Fraglimit - Number of frags for a team to win a game. -// Minimum: 10 -// Default 200 -bb2_elimination_fraglimit 200 - -// Elimination: Respawn Time (Seconds). -// Minimum: 1 -// Maximum: 30 -// Default 4 -bb2_elimination_respawn_time 5 - -// Elimination: Respawn Time Scale - Increase the respawn timer in seconds when a player joins. -// Example: respawn_timer + (joined_players x time_scale) = new_respawn_timer. 14 + (20 x 2) = 54. -// Minimum: 0 -// Maximum: 10 -// Default 1 -bb2_elimination_respawn_time_scale 1 - -// Elimination: Extermination Score - The score a team should be awarded for exterminating (kill everyone before respawn) the other team. -// Minimum: 0 -// Maximum: 50 -// Default 25 -bb2_elimination_score_from_extermination 25 - -// Elimination: Zombie Score - Number of point a zombie gets for a kill. -// Minimum: 2 -// Maximum: 10 -// Default 5 -bb2_elimination_score_zombies 5 - -// Elimination: Team Perk Duration - Number of seconds a team perk lasts. -// Minimum: 5 -// Maximum: 60 -// Default 30 -bb2_elimination_teamperk_duration 30 - -// Elimination: Team Perk Required Kills - Number of kills a team need to get in order to activate a team perk. -// Minimum: 25 -// Maximum: 500 -// Default 50 -bb2_elimination_teamperk_kills_required 50 - - -// Zombie Settings - -// Zombie Lifespan - Number of minutes a regular zombie will last before dying. -// Minimum: 1 -// Default 5 -bb2_zombie_lifespan 2 - -// Max Zombies - Maximum number of zombies allowed in the game. -// Minimum: 1 -// Maximum: 128 -// Default 50 -bb2_zombie_max 45 - - -// M1A1 Abrams Settings - -// M1A1 Abrams: Main Cannon Damage. -// Minimum: 100 -// Maximum: 10000 -// Default 3000 -bb2_m1a1_damage 200 - -// M1A1 Abrams: Machinegun Damage. -// Minimum: 25 -// Maximum: 1000 -// Default 30 -bb2_m1a1_damage_machinegun 25 - -// M1A1 Abrams: Friendly Fire (Including NPC's). -// Minimum: 0 -// Maximum: 1 -// Default 1 -bb2_m1a1_friendly 1 - -// M1A1 Abrams: Machinegun Rate of Fire. -// Minimum: 0.01 -// Maximum: 1 -// Default 0.08 -bb2_m1a1_machinegun_firerate 1 - -// M1A1 Abrams: Explosion Radius. -// Minimum: 200 -// Maximum: 10000 -// Default 500 -bb2_m1a1_radius 500 - -// M1A1 Abrams: Max Sight Range. -// Minimum: 500 -// Maximum: 10000 -// Default 2000 -bb2_m1a1_range_max 1000 - -// M1A1 Abrams: Min Sight Range. -// Minimum: 250 -// Maximum: 5000 -// Default 400 -bb2_m1a1_range_min 250 \ No newline at end of file diff --git a/CodenameCURE/ccserver b/CodenameCURE/ccserver index 3f08a563f..dd622b8ae 100644 --- a/CodenameCURE/ccserver +++ b/CodenameCURE/ccserver @@ -1,72 +1,92 @@ #!/bin/bash -# Codename CURE -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Codename CURE | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161030" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="cbe_bunker" maxplayers="6" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game cure -insecure -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="383410" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### +## SteamCMD Settings +# Server appid +appid="383410" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="cc-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Codename CURE" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="cc-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -75,6 +95,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/cure" executabledir="${filesdir}" executable="./srcds_run" @@ -82,24 +104,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -156,8 +180,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/CodenameCURE/cfg/lgsm-default.cfg b/CodenameCURE/cfg/lgsm-default.cfg deleted file mode 100644 index 296c28ec8..000000000 --- a/CodenameCURE/cfg/lgsm-default.cfg +++ /dev/null @@ -1,105 +0,0 @@ -// **************************************************************************** -// * -// CodenameCURE - server.cfg * -// Version 100216 * -// * -// **************************************************************************** - -// ............................. Basic Settings ............................. // - -// Hostname for server. -hostname "" - -// RCON - remote console password. -rcon_password "" - -// Server password - for private servers. -sv_password "" - -// Contact email for server sysop. -sv_contact "email@example.com" - -// LAN Mode - If set the server will not show on the internet. -// Default: sv_lan 0 -sv_lan 0 - -// ............................... Map Cycles ............................... // -// info: There are several predefined mapcycles available that are listed below. -// You can also create your own custom mapcycle. - -// "mapcycle.txt" - all maps -mapcyclefile "mapcycle.txt" - -// ........................ Game Specific Commands ........................ // -// info: any commands that only apply to this game. - -// Difficulty -// 0 - Easy -// 1 - Average -// 2 - Skilled -// 3 - Insane -sv_difficulty "1" - -// Server tags - Tags show up on the in-game server browser. This helps -// users filter servers. -// vanilla - he server runs the default settings. -// custom - the server runs custom gameplay settings or mods. -// example: sv_tags "custom, fastdl" -sv_tags "" - -// ............................. Communication ............................. // - -// Enable communication over voice via microphone. -// Default: sv_voiceenable 1 -sv_voiceenable 1 - -// Players can hear all other players, no team restrictions. -// Default: sv_alltalk 0 -sv_alltalk 1 - -// ............................. Fast Download .............................. // -// info: Allows custom maps to be downloaded to the client. - -// Allows clients to download custom maps and textures etc. from the server at 20 kbps. -// Default: sv_allowdownload 1 -sv_allowdownload 1 - -// Allows clients to download custom maps, textures etc. from a web server with no transfer limit. -// Example: -// server location: maps/custommap.bsp -// web server location: http://example.com/custom/maps/custommap.bsp -// sv_downloadurl "http://example.com/custom" -// Default: sv_downloadurl "" -sv_downloadurl "" - -// ................................ Ban List ............................... // - -// personal banlist based on user IDs. -exec banned_user.cfg - -// personal banlist based on user IPs. -exec banned_ip.cfg - -writeid -writeip - -// ............................. Server Logging ............................. // - -//Enables logging to file, console, and udp < on | off >. -log on - -// Log server bans in the server logs. -// Default: sv_logbans 1 -sv_logbans 1 - -// Echo log information to the console. -// Default: sv_logecho 1 -sv_logecho 1 - -// Log server information in the log file. -// Default: sv_logfile 1 -sv_logfile 1 - -// Log server information to only one file. -// Default: sv_log_onefile 0 -sv_log_onefile 0 diff --git a/CounterStrike/cfg/lgsm-default.cfg b/CounterStrike/cfg/lgsm-default.cfg deleted file mode 100644 index ceb8f9374..000000000 --- a/CounterStrike/cfg/lgsm-default.cfg +++ /dev/null @@ -1,38 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -// disable autoaim -sv_aim 0 - -// disable clients' ability to pause the server -pausable 0 - -// maximum client movement speed -sv_maxspeed 320 - -// 20 minute timelimit -mp_timelimit 20 - -// cheats off -sv_cheats 0 - -// load ban files -exec listip.cfg -exec banned.cfg - - - - diff --git a/CounterStrike/csserver b/CounterStrike/csserver index ae04a04d6..bca3e12a3 100644 --- a/CounterStrike/csserver +++ b/CounterStrike/csserver @@ -1,67 +1,94 @@ #!/bin/bash -# Counter-Strike -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Counter-Strike | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161030" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="de_dust2" maxplayers="16" port="27015" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game cstrike -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + #### Advanced Variables #### -# Github Branch Select +## SteamCMD Settings +# Server appid +appid="90" +appidmod="cstrike" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="90" -appidmod="cstrike" - -# Server Details -servicename="cs-server" +## LinuxGSM Server Details +# Do not edit gamename="Counter-Strike 1.6" engine="goldsource" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="cs-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/cstrike" executabledir="${filesdir}" executable="./hlds_run" @@ -77,24 +106,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -151,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/CounterStrikeConditionZero/cfg/lgsm-default.cfg b/CounterStrikeConditionZero/cfg/lgsm-default.cfg deleted file mode 100644 index ceb8f9374..000000000 --- a/CounterStrikeConditionZero/cfg/lgsm-default.cfg +++ /dev/null @@ -1,38 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -// disable autoaim -sv_aim 0 - -// disable clients' ability to pause the server -pausable 0 - -// maximum client movement speed -sv_maxspeed 320 - -// 20 minute timelimit -mp_timelimit 20 - -// cheats off -sv_cheats 0 - -// load ban files -exec listip.cfg -exec banned.cfg - - - - diff --git a/CounterStrikeConditionZero/csczserver b/CounterStrikeConditionZero/csczserver index fb6971bbc..5eb278771 100644 --- a/CounterStrikeConditionZero/csczserver +++ b/CounterStrikeConditionZero/csczserver @@ -1,67 +1,94 @@ #!/bin/bash -# Counter-Strike: Condition Zero -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Counter-Strike: Condition Zero | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161030" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="de_dust2" maxplayers="16" port="27015" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game czero -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## SteamCMD Settings +# Server appid +appid="90" +appidmod="czero" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="90" -appidmod="czero" - -# Server Details -servicename="cscz-server" +## LinuxGSM Server Details +# Do not edit gamename="Counter-Strike: Condition Zero" engine="goldsource" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="cscz-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/czero" executabledir="${filesdir}" executable="./hlds_run" @@ -77,24 +106,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -151,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/CounterStrikeGlobalOffensive/cfg/lgsm-default.cfg b/CounterStrikeGlobalOffensive/cfg/lgsm-default.cfg deleted file mode 100644 index d518c8e0d..000000000 --- a/CounterStrikeGlobalOffensive/cfg/lgsm-default.cfg +++ /dev/null @@ -1,31 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -// Server Hibernation -sv_hibernate_when_empty 1 -sv_hibernate_ms 5 - -// Server Query -// More info at: https://www.gametracker.com/games/csgo/forum.php?thread=91691 -host_name_store 1 -host_info_show 1 -host_players_show 2 - - -exec banned_user.cfg -exec banned_ip.cfg -writeid -writeip diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index b5e93a15e..8018883b9 100755 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -1,43 +1,35 @@ #!/bin/bash -# Counter-Strike: Global Offensive -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Counter-Strike: Global Offensive | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters # https://developer.valvesoftware.com/wiki/Counter-Strike:_Global_Offensive_Dedicated_Servers#Starting_the_Server -# [Game Modes] gametype gamemode -# Arms Race 1 0 -# Classic Casual 0 0 -# Classic Competitive 0 1 -# Demolition 1 1 -# Deathmatch 1 2 +# [Game Modes] gametype gamemode +# Arms Race 1 0 +# Classic Casual 0 0 +# Classic Competitive 0 1 +# Demolition 1 1 +# Deathmatch 1 2 gametype="0" gamemode="0" defaultmap="de_dust2" @@ -48,48 +40,78 @@ port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# Required: Game Server Login Token +## Required: Game Server Login Token # GSLT is required for running a public server. # More info: https://gameservermanagers.com/gslt gslt="" -# Optional: Workshop Parameters +## Optional: Workshop Parameters # https://developer.valvesoftware.com/wiki/CSGO_Workshop_For_Server_Operators # To get an authkey visit - http://steamcommunity.com/dev/apikey # authkey="" # ws_collection_id="" # ws_start_map="" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game csgo -usercon -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +sv_setsteamaccount ${gslt} -tickrate ${tickrate} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers_override ${maxplayers} +mapgroup ${mapgroup} +game_mode ${gamemode} +game_type ${gametype} +host_workshop_collection ${ws_collection_id} +workshop_start_map ${ws_start_map} -authkey ${authkey}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="740" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="740" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta 1.35.4.4" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="csgo-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Counter-Strike: Global Offensive" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="csgo-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -98,6 +120,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/csgo" executabledir="${filesdir}" executable="./srcds_run" @@ -105,24 +129,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -179,8 +205,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/CounterStrikeSource/cfg/lgsm-default.cfg b/CounterStrikeSource/cfg/lgsm-default.cfg deleted file mode 100644 index c2b66dcbc..000000000 --- a/CounterStrikeSource/cfg/lgsm-default.cfg +++ /dev/null @@ -1,15 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 \ No newline at end of file diff --git a/CounterStrikeSource/cssserver b/CounterStrikeSource/cssserver index 8faed4600..78345eb9c 100644 --- a/CounterStrikeSource/cssserver +++ b/CounterStrikeSource/cssserver @@ -1,36 +1,28 @@ #!/bin/bash -# Counter-Strike: Source -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Counter-Strike: Source | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="de_dust2" maxplayers="16" port="27015" @@ -39,39 +31,70 @@ clientport="27005" ip="0.0.0.0" updateonstart="off" -# Required: Game Server Login Token +## Required: Game Server Login Token # GSLT is required for running a public server. # More info: https://gameservermanagers.com/gslt gslt="" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game cstrike -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +sv_setsteamaccount ${gslt} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="232330" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="232330" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta prerelease" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="css-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Counter-Strike: Source" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="css-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -80,6 +103,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/cstrike" executabledir="${filesdir}" executable="./srcds_run" @@ -87,24 +112,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -161,8 +188,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/DayOfDefeat/cfg/lgsm-default.cfg b/DayOfDefeat/cfg/lgsm-default.cfg deleted file mode 100644 index ceb8f9374..000000000 --- a/DayOfDefeat/cfg/lgsm-default.cfg +++ /dev/null @@ -1,38 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -// disable autoaim -sv_aim 0 - -// disable clients' ability to pause the server -pausable 0 - -// maximum client movement speed -sv_maxspeed 320 - -// 20 minute timelimit -mp_timelimit 20 - -// cheats off -sv_cheats 0 - -// load ban files -exec listip.cfg -exec banned.cfg - - - - diff --git a/DayOfDefeat/dodserver b/DayOfDefeat/dodserver index 092374517..e6db43522 100644 --- a/DayOfDefeat/dodserver +++ b/DayOfDefeat/dodserver @@ -1,36 +1,28 @@ #!/bin/bash -# Day of Defeat -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Day of Defeat | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161030" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="dod_Anzio" maxplayers="16" port="27015" @@ -38,30 +30,66 @@ clientport="27005" ip="0.0.0.0" updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game dod -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="90" +appidmod="dod" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="90" -appidmod="dod" - -# Server Details -servicename="dod-server" +## LinuxGSM Server Details +# Do not edit gamename="Day of Defeat" engine="goldsource" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="dod-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +98,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/dod" executabledir="${filesdir}" executable="./hlds_run" @@ -77,24 +107,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -151,8 +183,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/DayOfDefeatSource/cfg/lgsm-default.cfg b/DayOfDefeatSource/cfg/lgsm-default.cfg deleted file mode 100644 index ceb8f9374..000000000 --- a/DayOfDefeatSource/cfg/lgsm-default.cfg +++ /dev/null @@ -1,38 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -// disable autoaim -sv_aim 0 - -// disable clients' ability to pause the server -pausable 0 - -// maximum client movement speed -sv_maxspeed 320 - -// 20 minute timelimit -mp_timelimit 20 - -// cheats off -sv_cheats 0 - -// load ban files -exec listip.cfg -exec banned.cfg - - - - diff --git a/DayOfDefeatSource/dodsserver b/DayOfDefeatSource/dodsserver index f147c480d..8386384b6 100644 --- a/DayOfDefeatSource/dodsserver +++ b/DayOfDefeatSource/dodsserver @@ -1,72 +1,94 @@ #!/bin/bash -# Day of Defeat: Source -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Day of Defeat: Source | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="dod_Anzio" maxplayers="16" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | ttps://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game dod -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="232290" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="232290" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta prerelease" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="dods-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Day of Defeat: Source" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="dods-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -75,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/dod" executabledir="${filesdir}" executable="./srcds_run" @@ -82,24 +106,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -156,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/DayOfInfamy/cfg/lgsm-default.cfg b/DayOfInfamy/cfg/lgsm-default.cfg deleted file mode 100644 index 364cc1420..000000000 --- a/DayOfInfamy/cfg/lgsm-default.cfg +++ /dev/null @@ -1,16 +0,0 @@ -"hostname" "" -"rcon_password" "" -"mapcyclefile" "mapcycle_tactical_operation.txt" // "tactical operation" mapcycle - firefight, vip, search and destroy -"mp_friendlyfire" "1" // friendly fire -"mp_tkpunish" "1" // How to punish team killing ( 0 = none, 1 = warning, 2 = kill ) -"sv_hud_deathmessages" "0" // death messages -"sv_hud_scoreboard_show_kd" "1" // show k:d on scoreboard -"sv_hud_targetindicator" "1" // show friendly player names when looking at them -"mp_timer_pregame" "10" // timer for the pre-game (before the game starts, usually after map change or on mp_restartgame 1) -"mp_timer_preround" "15" // timer for the pre-round (before the round starts, usually after a previous round ends or on mp_restartround 1) -"mp_timer_postround" "15" // timer for the post-round (after the round starts) -"mp_timer_postgame" "21" // timer for the post-game (at the end of a game / map rotation) -"ins_bot_quota" "0" // if set higher than 0, the server will add this many bots to each team -"sv_deadvoice" "0" // enabling this will allow the dead and living to VOIP each other -"sv_deadchat" "0" // enabling this will allow the dead and living to chat text each other -"sv_deadchat_team" "1" // is deadchat limited to just your team? diff --git a/DayOfInfamy/doiserver b/DayOfInfamy/doiserver index c5baebe29..d39568a53 100644 --- a/DayOfInfamy/doiserver +++ b/DayOfInfamy/doiserver @@ -1,36 +1,28 @@ #!/bin/bash -# Day of Infamy -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Day of Infamy | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="bastogne" maxplayers="16" tickrate="64" @@ -38,37 +30,67 @@ port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" workshop="0" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game doi -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} -tickrate ${tickrate} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers} +sv_workshop_enabled ${workshop}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="462310" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### +## SteamCMD Settings +# Server appid +appid="462310" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="doi-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Day of Infamy" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="doi-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -77,6 +99,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/doi" executabledir="${filesdir}" executable="./srcds_run" @@ -84,24 +108,27 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -158,8 +185,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 core_getopt.sh \ No newline at end of file diff --git a/DeathmatchClassic/cfg/lgsm-default.cfg b/DeathmatchClassic/cfg/lgsm-default.cfg deleted file mode 100644 index 585afb9e2..000000000 --- a/DeathmatchClassic/cfg/lgsm-default.cfg +++ /dev/null @@ -1,35 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -// disable autoaim -sv_aim 0 - -// disable clients' ability to pause the server -pausable 0 - -// maximum client movement speed -sv_maxspeed 320 - -// 20 minute timelimit -mp_timelimit 20 - -// cheats off -sv_cheats 0 - -// load ban files -exec listip.cfg -exec banned.cfg - diff --git a/DeathmatchClassic/dmcserver b/DeathmatchClassic/dmcserver index 8c90086d0..d2be5c1be 100644 --- a/DeathmatchClassic/dmcserver +++ b/DeathmatchClassic/dmcserver @@ -1,67 +1,94 @@ #!/bin/bash -# Deathmatch Classic -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Deathmatch Classic | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161030" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="dcdm5" maxplayers="16" port="27015" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game dmc -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## SteamCMD Settings +# Server appid +appid="90" +appidmod="dmc" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="90" -appidmod="dmc" - -# Server Details -servicename="dmc-server" +## LinuxGSM Server Details +# Do not edit gamename="Deathmatch Classic" engine="goldsource" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="dmc-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/dmc" executabledir="${filesdir}" executable="./hlds_run" @@ -77,24 +106,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -151,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/DontStarveTogether/cfg/lgsm-default.ini b/DontStarveTogether/cfg/lgsm-default.ini deleted file mode 100644 index 351a1238c..000000000 --- a/DontStarveTogether/cfg/lgsm-default.ini +++ /dev/null @@ -1,39 +0,0 @@ -[network] -default_server_name = dstserver -default_server_description = Welcome to dstserver -server_port = 10999 -server_password = password - -# max_players = 1 .. 64 -max_players = 16 - -# pvp = true | false -pvp = false - -# game_mode = endless | survival | wilderness -game_mode = endless - -# enable_autosaver = true | false -enable_autosaver = true - -# tick_rate = [ 10 | 15 | 30 | 60 ] -tick_rate = 30 - -connection_timeout = 8000 -server_save_slot = 1 - -# enable_vote_kick = true | false -enable_vote_kick = true - -# pause_when_empty = true | false -pause_when_empty = true - -[account] -dedicated_lan_server = false - -[STEAM] -DISABLECLOUD = true - -[MISC] -CONSOLE_ENABLED = true -autocompiler_enabled = true diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index 2b6805c38..5b9a5c112 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -1,70 +1,92 @@ #!/bin/bash -# Dont Starve Together -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Dont Starve Together | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters ip="0.0.0.0" -updateonstart="off" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | http://dont-starve-game.wikia.com/wiki/Guides/Don%E2%80%99t_Starve_Together_Dedicated_Servers # Overworld: -conf_dir DST_Overworld # Cave: -conf_dir DST_Cave -#http://dont-starve-game.wikia.com/wiki/Guides/Don%E2%80%99t_Starve_Together_Dedicated_Servers fn_parms(){ parms="-console -cluster MyDediServer -shard Master" # -console -cluster MyDediServer -shard Master } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="343050" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="343050" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta anewreignbeta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="dst-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Don't Starve Together" engine="dontstarve" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="dst-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -73,6 +95,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}/bin" executable="./dontstarve_dedicated_server_nullrenderer" @@ -81,24 +105,26 @@ servercfgdefault="settings.ini" servercfgdir="${HOME}/.klei/DoNotStarveTogether" servercfgfullpath="${servercfgdir}/${servercfg}" servercfgdefault="${servercfgdir}/lgsm-default.ini" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -155,8 +181,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/DoubleActionBoogaloo/cfg/lgsm-default.cfg b/DoubleActionBoogaloo/cfg/lgsm-default.cfg deleted file mode 100644 index c2b66dcbc..000000000 --- a/DoubleActionBoogaloo/cfg/lgsm-default.cfg +++ /dev/null @@ -1,15 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 \ No newline at end of file diff --git a/DoubleActionBoogaloo/dabserver b/DoubleActionBoogaloo/dabserver index ad9232079..c080c568a 100644 --- a/DoubleActionBoogaloo/dabserver +++ b/DoubleActionBoogaloo/dabserver @@ -1,72 +1,94 @@ #!/bin/bash -# Double Action: Boogaloo -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Double Action: Boogaloo | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="da_rooftops" maxplayers="10" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="317800" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="317800" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="dab-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Double Action: Boogaloo" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="dab-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -75,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/dab" executabledir="${filesdir}" executable="./dabds.sh" @@ -82,24 +106,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -156,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/EmpiresMod/emserver b/EmpiresMod/emserver index 4251c1093..6c2fa539c 100644 --- a/EmpiresMod/emserver +++ b/EmpiresMod/emserver @@ -1,77 +1,78 @@ #!/bin/bash # Empires Mod -# 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="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="emp_district" maxplayers="62" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# Optional: Game Server Login Token +## Optional: Game Server Login Token # GSLT can be used for running a public server. # More info: https://gameservermanagers.com/gslt gslt="" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game empires -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="460040" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="460040" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="em-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Empires Mod" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="em-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -80,6 +81,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/empires" executabledir="${filesdir}" executable="./srcds_run" @@ -87,24 +90,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -161,8 +166,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/FistfulOfFrags/cfg/lgsm-default.cfg b/FistfulOfFrags/cfg/lgsm-default.cfg deleted file mode 100644 index 39783e9d8..000000000 --- a/FistfulOfFrags/cfg/lgsm-default.cfg +++ /dev/null @@ -1,126 +0,0 @@ -// **************************************************************************** -// * -// Fistful of Frags - server.cfg * -// Version 240716 * -// * -// **************************************************************************** - -// ............................. Basic Settings ............................. // - -// Hostname for server. -hostname "" - -// RCON - remote console password. -rcon_password "" - -// Server password - for private servers. -sv_password "" - -// Contact email for server sysop. -sv_contact "email@example.com" - -// LAN Mode - If set the server will not show on the internet. -// Default: sv_lan 0 -sv_lan 0 - -// ............................... Map Cycles ............................... // -// info: There are several predefined mapcycles available that are listed below. -// You can also create your own custom mapcycle. - -// "mapcycle.txt" - All Shootout/2 Team Shootout/4 Team Shootout maps -// "mapcycle_12.txt" - All 12 slot maps for Shootout/2 Team Shootout/4 Team Shootout -// "mapcycle_32.txt" - All 32 slot maps for Shootout/2 Team Shootout/4 Team Shootout -// "mapcycle_tp.txt" - All Teamplay maps -// "mapcycle_vs.txt" - All versus mode maps -// "mapcycle_gt.txt" - All Ghost Town maps -mapcyclefile "mapcycle.txt" - -// ....................... Time Limits/Round Settings ....................... // - -// Time spend on a single map (in minutes) before switching to a new one automatically. -// Default: mp_timelimit 0 -mp_timelimit 15 - -// ........................ Game Specific Commands ........................ // -// info: any commands that only apply to this game. - -// Game Modes -// 1 = Shootout/2 Team Shootout/4 Team Shootout/Ghost Town -// 2 = Teamplay -// 3 = Break Bad -// 4 = Elimination -// 5 = Versus -fof_sv_currentmode 1 - -// Teamplay -// 0 = Free-for-all -// 1 = Team Deathmatch or Teamplay mode -mp_teamplay 0 - -// Team numbers -// 2 = Vigilantes & Desperados -// 3 = Vigilantes, Desperados & Bandidos -// 4 = Vigilantes, Desperados, Bandidos & Rangers -fof_sv_maxteams 4 - -// Friendly fire - Allows team members to injure other members of their team. -// 0 = Friendly fire disabled -// 1 = Friendly fire enabled -mp_friendlyfire 0 - -// ............................. Communication ............................. // - -// Enable communication over voice via microphone. -// Default: sv_voiceenable 1 -sv_voiceenable 1 - -// Players can hear all other players, no team restrictions. -// Default: sv_alltalk 0 -sv_alltalk 1 - -// ............................. Fast Download .............................. // -// info: Allows custom maps to be downloaded to the client. - -// Allows clients to download custom maps and textures etc. from the server at 20 kbps. -// Default: sv_allowdownload 1 -sv_allowdownload 1 - -// Allows clients to download custom maps, textures etc. from a web server with no transfer limit. -// Example: -// server location: maps/custommap.bsp -// web server location: http://example.com/custom/maps/custommap.bsp -// sv_downloadurl "http://example.com/custom" -// Default: sv_downloadurl "" -sv_downloadurl "" - -// ................................ Ban List ............................... // - -// personal banlist based on user IDs. -exec banned_user.cfg - -// personal banlist based on user IPs. -exec banned_ip.cfg - -writeid -writeip - -// ............................. Server Logging ............................. // - -//Enables logging to file, console, and udp < on | off >. -log on - -// Log server bans in the server logs. -// Default: sv_logbans 1 -sv_logbans 1 - -// Echo log information to the console. -// Default: sv_logecho 1 -sv_logecho 1 - -// Log server information in the log file. -// Default: sv_logfile 1 -sv_logfile 1 - -// Log server information to only one file. -// Default: sv_log_onefile 0 -sv_log_onefile 0 diff --git a/FistfulOfFrags/fofserver b/FistfulOfFrags/fofserver index d96a076c0..7dc5cc571 100644 --- a/FistfulOfFrags/fofserver +++ b/FistfulOfFrags/fofserver @@ -1,72 +1,94 @@ #!/bin/bash -# Fistful Of Frags -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Fistful Of Frags | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="fof_depot" maxplayers="16" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game fof -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="295230" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="295230" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="fof-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Fistful of Frags" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="fof-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -75,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/fof" executabledir="${filesdir}" executable="./srcds_run" @@ -82,24 +106,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -156,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/GarrysMod/cfg/lgsm-default.cfg b/GarrysMod/cfg/lgsm-default.cfg deleted file mode 100644 index a1e2fd4d6..000000000 --- a/GarrysMod/cfg/lgsm-default.cfg +++ /dev/null @@ -1,86 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 -lua_log_sv 0 - -sv_rcon_banpenalty 0 -sv_rcon_maxfailures 20 -sv_rcon_minfailures 20 -sv_rcon_minfailuretime 20 - -// Network Settings -sv_downloadurl "" -sv_loadingurl "" -net_maxfilesize 64 -sv_maxrate 40000 -sv_minrate 40000 -sv_maxupdaterate 66 -sv_minupdaterate 10 -sv_maxcmdrate 60 -sv_mincmdrate 10 - -// Server Settings -sv_airaccelerate 100 -sv_gravity 600 -sv_allow_wait_command 0 -sv_allow_voice_from_file 0 -sv_turbophysics 0 -sv_max_usercmd_future_ticks 12 -gmod_physiterations 4 -sv_client_min_interp_ratio 1 -sv_client_max_interp_ratio 2 -think_limit 20 -sv_region 0 -sv_noclipspeed 5 -sv_noclipaccelerate 5 -sv_lan 0 -sv_alltalk 1 -sv_contact youremail@changeme.com -sv_cheats 0 -sv_allowcslua 0 -sv_pausable 0 -sv_filterban 1 -sv_forcepreload 1 -sv_footsteps 1 -sv_voiceenable 1 -sv_voicecodec vaudio_speex -sv_timeout 120 -sv_deltaprint 0 -sv_allowupload 0 -sv_allowdownload 0 - -// Sandbox Settings -sbox_noclip 0 -sbox_godmode 0 -sbox_weapons 0 -sbox_playershurtplayers 0 -sbox_maxprops 100 -sbox_maxragdolls 50 -sbox_maxnpcs 10 -sbox_maxballoons 10 -sbox_maxeffects 0 -sbox_maxdynamite 0 -sbox_maxlamps 5 -sbox_maxthrusters 20 -sbox_maxwheels 20 -sbox_maxhoverballs 20 -sbox_maxvehicles 1 -sbox_maxbuttons 20 -sbox_maxemitters 0 - -// Misc Config -exec banned_user.cfg -exec banned_ip.cfg -heartbeat diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index 571600dc7..1bbba189c 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -1,46 +1,28 @@ #!/bin/bash -# Garry's Mod -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Garry's Mod | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161030" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" - -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta prerelease " -branch="" - -# Workshop Variables -# http://wiki.garrysmod.com/page/Workshop_for_Dedicated_Servers -workshopauth="" -workshopcollectionid="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="gm_construct" gamemode="sandbox" maxplayers="16" @@ -49,45 +31,79 @@ sourcetvport="27020" clientport="27005" tickrate="66" ip="0.0.0.0" -updateonstart="off" -# Custom Start Parameters +## Workshop Parameters | http://wiki.garrysmod.com/page/Workshop_for_Dedicated_Servers +workshopauth="" +workshopcollectionid="" + +## Custom Start Parameters # Default +r_hunkalloclightmaps 0, fixes a start issue on maps with many lights customparms="+r_hunkalloclightmaps 0" -# Optional: Game Server Login Token +## Optional: Game Server Login Token # GSLT can be used for running a public server. # More info: https://gameservermanagers.com/gslt gslt="" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game garrysmod -strictportbind -ip ${ip} -port ${port} -tickrate ${tickrate} +host_workshop_collection ${workshopcollectionid} -authkey ${workshopauth} +clientport ${clientport} +tv_port ${sourcetvport} +gamemode ${gamemode} +map ${defaultmap} +sv_setsteamaccount ${gslt} +servercfgfile ${servercfg} -maxplayers ${maxplayers} ${customparms}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off] +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="4020" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="4020" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta dev" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="gmod-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Garry's Mod" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="gmod-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -96,6 +112,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/garrysmod" addonsdir="${systemdir}/addons" executabledir="${filesdir}" @@ -104,24 +122,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -178,8 +198,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 core_getopt.sh diff --git a/GoldenEyeSource/cfg/lgsm-default.cfg b/GoldenEyeSource/cfg/lgsm-default.cfg deleted file mode 100644 index db1a2fdd6..000000000 --- a/GoldenEyeSource/cfg/lgsm-default.cfg +++ /dev/null @@ -1,126 +0,0 @@ -// *********** SERVER & PASSWORD INFO *************** -// Change it to 1 if you want a LAN only Server -// NOTE: You must do "changelevel [levelname]" AFTER starting the server for -// a lan-only server to begin broadcasting -sv_lan 0 - -// Change the number to the region you live in! -// 0=US East coast, 1=US West coast, 2= South America, 3=Europe, 4=Asia, 5=Australia, 6=Middle East, 7=Africa and 255=world -sv_region 0 - -// Give your server a name here -hostname "" - -// Rcon password is used to give your server orders by using console, so think of a good password -rcon_password "" - -// If you want your server to be private, fill in a password and delete the // in front of sv_password -// sv_password "mi6" - -// All talk allows clients to talk to each other via voice even if they are dead, -// spectating, or on the other team -sv_alltalk 1 - -// *********** GOLDENEYE: SOURCE SPECIFIC ********* - -// Radar will show on clients if enabled. Some gameplay scenarios -// force the radar to be visible -ge_allowradar 1 -ge_radar_showenemyteam 1 - -// Paintball mode (for fun!) -ge_paintball 0 - -// Teamplay can be overriden by the current gameplay, but -// this sets our "desired" teamplay state -ge_teamplay 0 - -// *********** GAME SETTINGS, YOU CAN CHANGE THESE THE WAY YOU LIKE IT *************** - -// Allow the use of a flashlight (discouraged for GE:S) -mp_flashlight 0 - -// Disable footstep sounds by uncommenting below -// mp_footsteps 0 - -// 1 enables falling damage, 0 disables it -mp_falldamage 1 - -// Map/match time, in minutes -mp_timelimit 15 - -// Round time, in seconds -ge_roundtime 300 - -// 1 = Forces the engine to use light physics for better server preformance -sv_turbophysics 0 - -// Server round, map, and delay times are defined in Valve.rc -// If you want these times to be reset every map change copy them -// to this file instead (Valve.rc is only executed once on server start) - - -// ********************************************************** -// *********** Load Specific Server Type Settings *********** -// ********************************************************** - -// Uncomment ONE server type to load. This takes care of all settings, map cycles, and gameplay types - -//-- Normal server, recommended settings -exec server_normal.cfg - -//-- N64 Classic Mode ( DM|YOLT|MWGG|LD|LTK, NO Jump ) -// **Use with -maxplayers 4 -//exec server_n64_classic.cfg - -//-- For server with > 24 players -//exec server_large.cfg - -//-- For servers with < 10 players -//exec server_small.cfg - -//-- Vanilla DM only w/ auto teamplay -// **Should be used in conjunction with one of the sizes above -//exec server_dm_only.cfg - -//-- Advanced game modes (LALD, LD, CTK) only -// **Should be used in conjunction with one of the sizes above -//exec server_adv_gamemode.cfg - -//-- Teamplay only! (No MWGG or LALD) -// **Should be used in conjunction with one of the sizes above -//exec server_teamplay.cfg - -//-- Tournament Use Only (Tournament DM) -// **Should be used ALONE only! -//exec server_tournament.cfg - -// Load network settings -exec server_netvalues - -// *********** server logging *********** -log on -sv_logbans 0 -sv_logecho 0 -sv_logfile 1 -sv_log_onefile 0 - - -// *********** DOWNLOAD *********** - -// Allow clients to download files -sv_allowdownload 1 - -// Allow clients to upload customizations files -sv_allowupload 1 - -// VOICE enabled, if you want VOICE disabled then change 1 to 0 -sv_voiceenable 1 - -// *********** CHEATS *********** - -// Enables the use of cheats. ex. "impulse 101" "noclip" -sv_cheats 0 - -// disable clients' ability to pause the server -sv_pausable 0 \ No newline at end of file diff --git a/GoldenEyeSource/gesserver b/GoldenEyeSource/gesserver index 9b53028ae..7dd85e2f6 100644 --- a/GoldenEyeSource/gesserver +++ b/GoldenEyeSource/gesserver @@ -1,34 +1,26 @@ #!/bin/bash -# GoldenEye: Source -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: GoldenEye: Source | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161030" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### # Start Variables defaultmap="ge_archives" @@ -37,31 +29,66 @@ port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game gesource -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="310" # Source 2007 SDK +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="310" # Source 2007 SDK - -# Server Details -servicename="ges-server" +## LinuxGSM Server Details +# Do not edit gamename="GoldenEye: Source" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ges-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/gesource" executabledir="${filesdir}" executable="./srcds_run" @@ -77,24 +106,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -151,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/HalfLife2Deathmatch/cfg/lgsm-default.cfg b/HalfLife2Deathmatch/cfg/lgsm-default.cfg deleted file mode 100644 index c2b66dcbc..000000000 --- a/HalfLife2Deathmatch/cfg/lgsm-default.cfg +++ /dev/null @@ -1,15 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 \ No newline at end of file diff --git a/HalfLife2Deathmatch/hl2dmserver b/HalfLife2Deathmatch/hl2dmserver index 3e3ac1001..6b0489fe6 100644 --- a/HalfLife2Deathmatch/hl2dmserver +++ b/HalfLife2Deathmatch/hl2dmserver @@ -1,67 +1,94 @@ #!/bin/bash -# Half Life 2: Deathmatch -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Half Life 2: Deathmatch | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161030" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +#### Server Settings #### -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="dm_lockdown" maxplayers="16" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game hl2mp -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="232370" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="232370" - -# Server Details -servicename="hl2dm-server" +## LinuxGSM Server Details +# Do not edit gamename="Half Life 2: Deathmatch" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="hl2dm-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/hl2mp" executabledir="${filesdir}" executable="./srcds_run" @@ -77,24 +106,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -151,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/HalfLifeDeathmatch/cfg/lgsm-default.cfg b/HalfLifeDeathmatch/cfg/lgsm-default.cfg deleted file mode 100644 index 585afb9e2..000000000 --- a/HalfLifeDeathmatch/cfg/lgsm-default.cfg +++ /dev/null @@ -1,35 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -// disable autoaim -sv_aim 0 - -// disable clients' ability to pause the server -pausable 0 - -// maximum client movement speed -sv_maxspeed 320 - -// 20 minute timelimit -mp_timelimit 20 - -// cheats off -sv_cheats 0 - -// load ban files -exec listip.cfg -exec banned.cfg - diff --git a/HalfLifeDeathmatch/hldmserver b/HalfLifeDeathmatch/hldmserver index bbdcd7d2f..43e3bf106 100644 --- a/HalfLifeDeathmatch/hldmserver +++ b/HalfLifeDeathmatch/hldmserver @@ -1,66 +1,93 @@ #!/bin/bash -# Half Life: Deathmatch -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Half Life: Deathmatch | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161030" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +#### Server Settings #### -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="crossfire" maxplayers="16" port="27015" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game valve -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="90" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="90" - -# Server Details -servicename="hldm-server" +## LinuxGSM Server Details +# Do not edit gamename="Half Life: Deathmatch" engine="goldsource" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="hldm-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -69,6 +96,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/valve" executabledir="${filesdir}" executable="./hlds_run" @@ -76,24 +105,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -150,8 +181,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/HalfLifeDeathmatchSource/cfg/lgsm-default.cfg b/HalfLifeDeathmatchSource/cfg/lgsm-default.cfg deleted file mode 100644 index c2b66dcbc..000000000 --- a/HalfLifeDeathmatchSource/cfg/lgsm-default.cfg +++ /dev/null @@ -1,15 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 \ No newline at end of file diff --git a/HalfLifeDeathmatchSource/hldmsserver b/HalfLifeDeathmatchSource/hldmsserver index b51756a58..07b2c24cf 100644 --- a/HalfLifeDeathmatchSource/hldmsserver +++ b/HalfLifeDeathmatchSource/hldmsserver @@ -1,67 +1,94 @@ #!/bin/bash -# Half-Life Deathmatch: Source -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Half-Life Deathmatch: Source | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161030" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="crossfire" maxplayers="16" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game hl1mp -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## SteamCMD Settings +# Server appid +appid="255470" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="255470" - -# Server Details -servicename="hldms-server" +## LinuxGSM Server Details +# Do not edit gamename="Half-Life Deathmatch: Source" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="hldms-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/hl1mp" executabledir="${filesdir}" executable="./srcds_run" @@ -77,15 +106,14 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" @@ -93,8 +121,14 @@ 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 +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" + +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -151,8 +185,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Hurtworld/hwserver b/Hurtworld/hwserver index 90c88c882..d63e5a346 100644 --- a/Hurtworld/hwserver +++ b/Hurtworld/hwserver @@ -1,86 +1,106 @@ #!/bin/bash -# Hurtworld -# Server Management Script -# Author: Daniel Gibbs, -# Contributor: UltimateByte +# Project: Game Server Managers - LinuxGSM +# Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Hurtworld | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161030" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Server settings -ip="0.0.0.0" -updateonstart="off" +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters servername="Hurtworld LGSM Server" +ip="0.0.0.0" port="12871" queryport="12881" maxplayers="20" map="" #Optional -creativemode="0" #Free Build +creativemode="0" #Free Build: creativemode="1" logfile="gamelog.txt" -# Adding admins using STEAMID64 +## Adding admins using STEAMID64 # Example : addadmin 012345678901234567; addadmin 987654321098765432 admins="" -# Advanced +## Advanced Server Start Settings # Rollback server state (remove after start command) loadsave="" # Use unstable 64 bit server executable (O/1) x64mode="0" - -# http://hurtworld.wikia.com/wiki/Hosting_A_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | http://hurtworld.wikia.com/wiki/Hosting_A_Server fn_parms(){ parms="-batchmode -nographics -exec \"host ${port} ${map} ${loadsave};queryport ${queryport};maxplayers ${maxplayers};servername ${servername};creativemode ${creativemode};${admins}\" -logfile \"${logfile}\" " } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="405100" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="405100" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta devtest" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="hurtworld-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Hurtworld" engine="unity3d" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="hurtworld-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname=$(basename $(readlink -f "${BASH_SOURCE[0]}")) lockselfname=".${servicename}.lock" @@ -89,6 +109,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" if [ "${x64mode}" == "1" ]; then @@ -96,25 +118,27 @@ if [ "${x64mode}" == "1" ]; then else executable="./Hurtworld.x86" fi + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log/server" scriptlogdir="${rootdir}/log/script" consolelogdir="${rootdir}/log/console" -consolelogging="on" - gamelog="${gamelogdir}/${servicename}-game.log" 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -171,8 +195,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Insurgency/insserver b/Insurgency/insserver index bf25a1e16..6a2748478 100644 --- a/Insurgency/insserver +++ b/Insurgency/insserver @@ -1,36 +1,28 @@ #!/bin/bash -# Insurgency -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Insurgency | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="ministry" maxplayers="16" tickrate="64" @@ -38,37 +30,67 @@ port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" workshop="0" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game insurgency -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} -tickrate ${tickrate} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers} +sv_workshop_enabled ${workshop} -norestart" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="237410" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="237410" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="ins-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Insurgency" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ins-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -77,6 +99,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/insurgency" executabledir="${filesdir}" executable="./srcds_run" @@ -84,15 +108,14 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" @@ -100,8 +123,14 @@ 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 +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" + +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -158,8 +187,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/JustCause2/cfg/config.lua b/JustCause2/cfg/config.lua deleted file mode 100644 index 1b17103c4..000000000 --- a/JustCause2/cfg/config.lua +++ /dev/null @@ -1,180 +0,0 @@ --- Welcome to the JC2-MP server configuration file! - ---[[ -SERVER OPTIONS - -Server-related options. ---]] -Server = -{ - -- The maximum number of players that can be on the server at any - -- given time. Make sure your connection and server can handle it! - -- Default value: 5000 - MaxPlayers = 5000, - -- Used to control what IP this server binds to. Unless you're a dedicated - -- game host, you don't need to worry about this. - -- Default value: "" - BindIP = "", - -- The port the server uses. - -- Default value: 7777 - BindPort = 7777, - -- The time before a player is timed out after temporarily losing - -- connection, or crashing without properly disconnecting. - -- Default value (in milliseconds): 10000 - Timeout = 10000, - - -- The name of the server, as seen by players and the server browser. - -- Default value: "JC2-MP Server" - Name = "JC2-MP Server", - -- The server description, as seen by players and the server browser. - -- Default value: "No description available" - Description = "No description available.", - -- The server password. - -- Default value: "" - Password = "", - - -- Controls whether the server announces its presence to the master server - -- and therefore to the server browser. - -- Default value: true - Announce = true, - - -- Controls how often synchronization packets are broadcast by the server - -- in milliseconds - -- Default value (in milliseconds): 180 - SyncUpdate = 180, - - -- CAUTION: Setting this variable to true unlocks a number of potentially - -- unsafe operations, which include: - -- * Native Lua packages (.dll, .so) - -- * Execution of Lua from arbitrary paths (Access to loadfile/dofile) - -- * Unbound io functions, allowing for access to the entire file-system - -- Default value: false - IKnowWhatImDoing = false -} - ---[[ -SYNCRATE OPTIONS - -Sync rate options. These values control how often synchronization -packets are sent by the clients, in milliseconds. This lets you -control how frequent the sync comes in, which may result in a -smoother or less laggy experience ---]] -SyncRates = -{ - -- Default value (in milliseconds): 75 - Vehicle = 75, - -- Default value (in milliseconds): 120 - OnFoot = 120, - -- Default value (in milliseconds): 1000 - Passenger = 1000, - -- Default value (in milliseconds): 250 - MountedGun = 250, - -- Default value (in milliseconds): 350 - StuntPosition = 350 -} - ---[[ -STREAMER OPTIONS - -Streamer-related options. The streamer is responsible for controlling the -visibility of objects (including players and vehicles) for other players. - -What this means is that if you want to extend the distance at which objects -remain visible for players, you need to change the StreamDistance. ---]] -Streamer = -{ - -- The default distance before objects are streamed out. - -- Default value (in metres): 500 - StreamDistance = 500 -} - ---[[ -VEHICLE OPTIONS - -Vehicle-related options. ---]] -Vehicle = -{ - -- The number of seconds required for a vehicle to respawn after - -- vehicle death. - -- Default value (in seconds): 10 - -- For instant respawn: 0 - -- For no respawning: nil - DeathRespawnTime = 10, - -- Controls whether to remove the vehicle if respawning is turned off, - -- and the vehicle dies. - -- Default value: false - DeathRemove = false, - - -- The number of seconds required for a vehicle to respawn after it is - -- left unoccupied. - -- Default value (in seconds): 45 - -- For instant respawn: 0 - -- For no respawning: nil - UnoccupiedRespawnTime = 45, - -- Controls whether to remove the vehicle if respawning is turned off, - -- and the vehicle is left unoccupied. - -- Default value: false - UnoccupiedRemove = false, -} - ---[[ -PLAYER OPTIONS - -Player-related options. ---]] -Player = -{ - -- The default spawn position for players. If you do not use a script - -- to handle spawns, such as the freeroam script, then this spawn position - -- will be used. - -- Default value: Vector3( -6550, 209, -3290 ) - SpawnPosition = Vector3( -6550, 209, -3290 ) -} - ---[[ -MODULE OPTIONS - -Lua module-related options. ---]] -Module = -{ - --[[ - To prevent a large number of errors building up, modules are automatically - unloaded after a certain number of errors in a given timespan. Each error - adds to a counter, which is decremented if there has not been an error - in a certain amount of time. - - This allows you to adjust the number of errors before the module is unloaded, - as well as the time since the last error for the counter to be decremented. - --]] - - -- The maximum number of errors before a module is unloaded. - -- Default value: 5 - MaxErrorCount = 5, - -- The time from the last error necessary for the error counter to be decremented. - -- Default value (in milliseconds): 500 - ErrorDecrementTime = 500 -} - ---[[ -WORLD OPTIONS - -Default settings for worlds. ---]] -World = -{ - -- The default time of day at world creation. - -- Default value (in hours): 0.0 - Time = 0.0, - - -- The increment added to the time of day each second. - -- Default value (in minutes): 1 - TimeStep = 1, - - -- The default weather severity at world creation. - -- Default value: 0 - WeatherSeverity = 0 -} diff --git a/JustCause2/jc2server b/JustCause2/jc2server index 069d8d5cd..4c89b31c1 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -1,65 +1,88 @@ #!/bin/bash # Just Cause 2 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: GAMENAME | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### +# No settings available for Just Cause 2 + +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care +fn_parms(){ +parms="" +} -# Email +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email emailalert="off" email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" -fn_parms(){ -parms="" -} +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" -#### Advanced Variables #### +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +#### LinuxGSM Advanced Settings #### -# Steam +## SteamCMD Settings +# Server appid appid="261140" - # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta publicbeta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="jc2-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Just Cause 2" engine="avalanche" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="jc2-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -68,6 +91,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./Jcmp-Server" @@ -75,24 +100,26 @@ servercfg="config.lua" servercfgdefault="config.lua" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories #gamelogdir="" # No server logs available 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -149,8 +176,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/KillingFloor/kfserver b/KillingFloor/kfserver index 43fb5a3bf..5f0e44154 100644 --- a/KillingFloor/kfserver +++ b/KillingFloor/kfserver @@ -1,39 +1,34 @@ #!/bin/bash -# Killing Floor -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Killing Floor | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="KF-BioticsLab.rom" ip="0.0.0.0" -updateonstart="off" fn_parms(){ parms="server ${defaultmap}?game=KFmod.KFGameType?VACSecured=true -nohomedir ini=${servercfg} log=${gamelog}" @@ -43,29 +38,59 @@ parms="server ${defaultmap}?game=KFmod.KFGameType?VACSecured=true -nohomedir ini #parms="server ${defaultmap}?Game=KFStoryGame.KFStoryGame?VACSecured=true -nohomedir ini=${servercfg} log=${gamelog}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="215360" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="215360" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="kf-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Killing Floor" engine="unreal2" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="kf-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -74,6 +99,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/System" executabledir="${systemdir}" executable="./ucc-bin" @@ -82,26 +109,28 @@ servercfgdefault="Default.ini" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" compressedmapsdir="${rootdir}/Maps-Compressed" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log/server" scriptlogdir="${rootdir}/log/script" consolelogdir="${rootdir}/log/console" -consolelogging="on" - gamelog="${gamelogdir}/${servicename}-game.log" scriptlog="${scriptlogdir}/${servicename}-script.log" consolelog="${consolelogdir}/${servicename}-console.log" emaillog="${scriptlogdir}/${servicename}-email.log" -gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%d-%m-%Y-%H-%M-%S').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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" +gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -158,8 +187,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Left4Dead/cfg/lgsm-default.cfg b/Left4Dead/cfg/lgsm-default.cfg deleted file mode 100644 index c2b66dcbc..000000000 --- a/Left4Dead/cfg/lgsm-default.cfg +++ /dev/null @@ -1,15 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 \ No newline at end of file diff --git a/Left4Dead/l4dserver b/Left4Dead/l4dserver index 937d5eb3a..2a7a20be1 100644 --- a/Left4Dead/l4dserver +++ b/Left4Dead/l4dserver @@ -1,72 +1,93 @@ #!/bin/bash -# Left 4 Dead -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs -# Contributor: Summit Singh Thakur +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Left 4 Dead | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="l4d_hospital01_apartment" maxplayers="8" port="27015" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game left4dead -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="222840" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="222840" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="l4d-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Left 4 Dead" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="l4d-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -75,6 +96,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/left4dead" executabledir="${filesdir}" executable="./srcds_run" @@ -82,24 +105,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -156,8 +181,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Left4Dead2/cfg/lgsm-default.cfg b/Left4Dead2/cfg/lgsm-default.cfg deleted file mode 100644 index c2b66dcbc..000000000 --- a/Left4Dead2/cfg/lgsm-default.cfg +++ /dev/null @@ -1,15 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 \ No newline at end of file diff --git a/Left4Dead2/l4d2server b/Left4Dead2/l4d2server index 3a26a1442..0a84f1d83 100644 --- a/Left4Dead2/l4d2server +++ b/Left4Dead2/l4d2server @@ -1,71 +1,93 @@ #!/bin/bash -# Left 4 Dead 2 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Left 4 Dead 2 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="c5m1_waterfront" maxplayers="8" port="27015" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game left4dead2 -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="222860" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="222860" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="l4d2-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Left 4 Dead 2" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="l4d2-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -74,6 +96,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/left4dead2" executabledir="${filesdir}" executable="./srcds_run" @@ -81,24 +105,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -155,8 +181,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Minecraft/cfg/lgsm-default.ini b/Minecraft/cfg/lgsm-default.ini deleted file mode 100644 index 8e350192c..000000000 --- a/Minecraft/cfg/lgsm-default.ini +++ /dev/null @@ -1,40 +0,0 @@ -#Minecraft server properties (LGSM 210516) -#Sat Aug 20 17:30:15 CEST 2016 -allow-flight=false -allow-nether=true -announce-player-achievements=true -difficulty=1 -enable-command-block=false -enable-query=false -enable-rcon=false -force-gamemode=false -gamemode=0 -generate-structures=true -generator-settings= -hardcore=false -level-name=world -level-seed= -level-type=DEFAULT -max-build-height=256 -max-players=20 -max-tick-time=60000 -max-world-size=29999984 -motd=A Minecraft Server -network-compression-threshold=256 -online-mode=true -op-permission-level=4 -player-idle-timeout=0 -pvp=true -rcon.password= -rcon.port=25575 -resource-pack-sha1= -resource-pack= -server-ip= -server-port=25565 -snooper-enabled=true -spawn-animals=true -spawn-monsters=true -spawn-npcs=true -use-native-transport=true -view-distance=10 -white-list=false diff --git a/Minecraft/mcserver b/Minecraft/mcserver index 859d1f9dd..ab69b9010 100644 --- a/Minecraft/mcserver +++ b/Minecraft/mcserver @@ -1,60 +1,88 @@ #!/bin/bash -# Minecraft -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Minecraft | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +javaram="1024" # -Xmx$1024M + +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care +fn_parms(){ +parms="nogui" +} +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email emailalert="off" email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Start Variables +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" -javaram="1024" # -Xmx$1024M -fn_parms(){ -parms="nogui" -} +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -#### Advanced Variables #### +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Server Details -servicename="mc-server" +## LinuxGSM Server Details +# Do not edit gamename="Minecraft" engine="lwjgl2" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="mc-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" lgsmdir="${rootdir}/lgsm" functionsdir="${lgsmdir}/functions" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="java -Xmx${javaram}M -jar minecraft_server.jar" @@ -63,24 +91,26 @@ servercfgdefault="server.properties" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" servercfgdefault="${servercfgdir}/lgsm-default.ini" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -137,8 +167,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index 7decb653e..ace1dac08 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -1,53 +1,78 @@ #!/bin/bash -# Mumble -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs -# Contributor: UltimateByte +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Mumble | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### +# Use .ini config file for Mumble (Murmur) server. + +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care +fn_parms(){ +parms="-fg -ini ${servercfgfullpath}" +} -# Email +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email emailalert="off" email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Start Variables +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" -fn_parms(){ -parms="-fg -ini ${servercfgfullpath}" -} +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -#### Advanced Variables #### +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Server Details +## LinuxGSM Server Details +# Do not edit gamename="Mumble" + +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers servicename="mumble-server" -# Directories +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -56,6 +81,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./murmur.x86" @@ -63,24 +90,26 @@ servercfg="${servicename}.ini" servercfgdefault="murmur.ini" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log" 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -137,8 +166,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/NS2Combat/ns2cserver b/NS2Combat/ns2cserver index 923858313..460ce874c 100644 --- a/NS2Combat/ns2cserver +++ b/NS2Combat/ns2cserver @@ -1,41 +1,36 @@ #!/bin/bash -# NS2: Combat -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: NS2: Combat | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="co_core" port="27015" maxplayers="24" ip="0.0.0.0" -updateonstart="off" servername="NS2C Server" webadminuser="admin" webadminpass="admin" @@ -46,34 +41,65 @@ password="" # that the password variable above is not left empty. # -password \"${password}\" -# http://wiki.unknownworlds.com/ns2/Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | http://wiki.unknownworlds.com/ns2/Dedicated_Server fn_parms(){ parms="-name \"${servername}\" -port ${port} -webadmin -webdomain ${ip} -webuser ${webadminuser} -webpassword \"${webadminpass}\" -webport ${webadminport} -map ${defaultmap} -limit ${maxplayers} -config_path \"${servercfgdir}\" -modstorage \"${modstoragedir}\" -mods \"${mods}\"" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="313900" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="313900" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="ns2c-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="NS2: Combat" engine="spark" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ns2c-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -82,30 +108,34 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}/ia32" executable="./ns2combatserver_linux32" servercfgdir="${rootdir}/server1" servercfgfullpath="${servercfgdir}" modstoragedir="${servercfgdir}/Workshop" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -162,8 +192,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index 76ca3ae37..741f37862 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -1,41 +1,36 @@ #!/bin/bash -# Natural Selection 2 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Natural Selection 2 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="ns2_summit" port="27015" maxplayers="24" ip="0.0.0.0" -updateonstart="off" servername="NS2 Server" webadminuser="admin" webadminpass="admin" @@ -46,34 +41,65 @@ password="" # that the password variable above is not left empty. # -password \"${password}\" -# http://wiki.unknownworlds.com/ns2/Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | http://wiki.unknownworlds.com/ns2/Dedicated_Server fn_parms(){ parms="-name \"${servername}\" -port ${port} -webadmin -webdomain ${ip} -webuser ${webadminuser} -webpassword \"${webadminpass}\" -webport ${webadminport} -map ${defaultmap} -limit ${maxplayers} -config_path \"${servercfgdir}\" -logdir \"${gamelogdir}\" -modstorage \"${modstoragedir}\" -mods \"${mods}\"" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="4940" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="4940" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="ns2-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Natural Selection 2" engine="spark" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ns2-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -82,30 +108,34 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./server_linux32" servercfgdir="${rootdir}/server1" servercfgfullpath="${servercfgdir}" modstoragedir="${servercfgdir}/Workshop" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -162,8 +192,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/NoMoreRoomInHell/cfg/lgsm-default.cfg b/NoMoreRoomInHell/cfg/lgsm-default.cfg deleted file mode 100644 index ba48eab5b..000000000 --- a/NoMoreRoomInHell/cfg/lgsm-default.cfg +++ /dev/null @@ -1,121 +0,0 @@ -// **************************************************************************** -// * -// No More Room in Hell - server.cfg * -// Version 100116 * -// * -// **************************************************************************** - -// ............................. Basic Settings ............................. // - -// Hostname for server. -hostname "" - -// RCON - remote console password. -rcon_password "" - -// Server password - for private servers. -sv_password "" - -// Contact email for server sysop. -sv_contact "email@example.com" - -// LAN Mode - If set the server will not show on the internet. -// Default: sv_lan 0 -sv_lan 0 - -// ............................... Map Cycles ............................... // -// info: There are several predefined mapcycles available that are listed below. -// You can also create your own custom mapcycle. - -// "mapcycle.txt" - all maps -// "mapcycle_objective.txt" - objective maps only -// "mapcycle_survival.txt" - survival maps only -// -mapcyclefile "mapcycle.txt" - -// ....................... Time Limits/Round Settings ....................... // - -// Time spend on a single map (in minutes) before switching to a new one automatically. -// Default: mp_timelimit 1 -mp_timelimit 45 - -// Maximum number of rounds to spend on a map before moving to the next one. -// Default: mp_maxrounds 2 -mp_maxrounds 2 - -// ........................ Game Specific Commands ........................ // -// info: any commands that only apply to this game. - -// Difficulty -// info: http://git.io/v35eI -// "casual" - casual difficulty. -// "classic" - classic difficulty. -sv_difficulty "classic" - -// Server tags - Tags show up on the in-game server browser. This helps -// users filter servers. -// vanilla - he server runs the default settings. -// custom - the server runs custom gameplay settings or mods. -// example: sv_tags "custom, fastdl" -sv_tags "" - -// Friendly fire - Allows team members to injure other members of their team. -// Default: mp_friendlyfire 0 -mp_friendlyfire 0 - -// ............................. Communication ............................. // - -// Enable communication over voice via microphone. -// Default: sv_voiceenable 1 -sv_voiceenable 1 - -// Players can hear all other players, no team restrictions. -// Default: sv_alltalk 0 -sv_alltalk 1 - -// ............................. Fast Download .............................. // -// info: Allows custom maps to be downloaded to the client. - -// Allows clients to download custom maps and textures etc. from the server at 20 kbps. -// Default: sv_allowdownload 1 -sv_allowdownload 1 - -// Allows clients to download custom maps, textures etc. from a web server with no transfer limit. -// Example: -// server location: maps/custommap.bsp -// web server location: http://example.com/custom/maps/custommap.bsp -// sv_downloadurl "http://example.com/custom" -// Default: sv_downloadurl "" -sv_downloadurl "" - -// ................................ Ban List ............................... // - -// personal banlist based on user IDs. -exec banned_user.cfg - -// personal banlist based on user IPs. -exec banned_ip.cfg - -writeid -writeip - -// ............................. Server Logging ............................. // - -//Enables logging to file, console, and udp < on | off >. -log on - -// Log server bans in the server logs. -// Default: sv_logbans 1 -sv_logbans 1 - -// Echo log information to the console. -// Default: sv_logecho 1 -sv_logecho 1 - -// Log server information in the log file. -// Default: sv_logfile 1 -sv_logfile 1 - -// Log server information to only one file. -// Default: sv_log_onefile 0 -sv_log_onefile 0 diff --git a/NoMoreRoomInHell/nmrihserver b/NoMoreRoomInHell/nmrihserver index abdba83e3..d5910ab44 100644 --- a/NoMoreRoomInHell/nmrihserver +++ b/NoMoreRoomInHell/nmrihserver @@ -1,77 +1,99 @@ #!/bin/bash -# No More Room in Hell -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: No More Room in Hell | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="nmo_broadway" maxplayers="8" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# Optional: Game Server Login Token +## Optional: Game Server Login Token # GSLT can be used for running a public server. # More info: https://gameservermanagers.com/gslt gslt="" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game nmrih -insecure -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +sv_setsteamaccount ${gslt} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="317670" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="317670" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="nmrih-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="No More Room in Hell" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="nmrih-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -80,6 +102,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/nmrih" executabledir="${filesdir}" executable="./srcds_run" @@ -87,24 +111,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -161,8 +187,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/OpposingForce/cfg/lgsm-default.cfg b/OpposingForce/cfg/lgsm-default.cfg deleted file mode 100644 index 585afb9e2..000000000 --- a/OpposingForce/cfg/lgsm-default.cfg +++ /dev/null @@ -1,35 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -// disable autoaim -sv_aim 0 - -// disable clients' ability to pause the server -pausable 0 - -// maximum client movement speed -sv_maxspeed 320 - -// 20 minute timelimit -mp_timelimit 20 - -// cheats off -sv_cheats 0 - -// load ban files -exec listip.cfg -exec banned.cfg - diff --git a/OpposingForce/opforserver b/OpposingForce/opforserver index 913248223..1c059ed6b 100644 --- a/OpposingForce/opforserver +++ b/OpposingForce/opforserver @@ -1,67 +1,94 @@ #!/bin/bash -# Half-Life: Opposing Force -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Half-Life: Opposing Force | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161030" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="op4_bootcamp" maxplayers="16" port="27015" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game gearbox -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## SteamCMD Settings +# Server appid +appid="90" +appidmod="gearbox" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="90" -appidmod="gearbox" - -# Server Details -servicename="opfor-server" +## LinuxGSM Server Details +# Do not edit gamename="Half-Life: Opposing Force" engine="goldsource" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="opfor-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/gearbox" executabledir="${filesdir}" executable="./hlds_run" @@ -77,24 +106,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -151,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/PiratesVikingandKnightsII/cfg/lgsm-default.cfg b/PiratesVikingandKnightsII/cfg/lgsm-default.cfg deleted file mode 100644 index 48ba5072a..000000000 --- a/PiratesVikingandKnightsII/cfg/lgsm-default.cfg +++ /dev/null @@ -1,119 +0,0 @@ -// **************************************************************************** -// * -// Pirates, Vikings, and Knights II * -// Version 100116 * -// * -// **************************************************************************** - -// ............................. Basic Settings ............................. // - -// Hostname for server. -hostname "" - -// RCON - remote console password. -rcon_password "" - -// Server password - for private servers. -sv_password "" - -// Contact email for server sysop. -sv_contact "email@example.com" - -// LAN Mode - If set the server will not show on the internet. -// Default: sv_lan 0 -sv_lan 0 - -// ............................... Map Cycles ............................... // -// You can create your own custom mapcycle. -mapcyclefile "mapcycle.txt" - -// ....................... Time Limits/Round Settings ....................... // - -// Time spend on a single map (in minutes) before switching to a new one automatically. -// Default: mp_timelimit 0 -mp_timelimit 20 - -// Wait for the end of round before changing map. -// Default: mp_timelimit_waitroundend 0 -mp_timelimit_waitroundend 1 - -// Round duration in minutes. -// Default: mp_roundtime 3 -mp_roundtime 3 - -// Round limit in number of rounds. -// Default: mp_roundlimit 0 - -// Win limit in number of rounds. -// Default: mp_winlimit 0 -mp_winlimit 0 - -// ........................ Game Specific Commands ........................ // - -// Server tags - Tags show up on the in-game server browser. This helps -// users filter servers. -// vanilla - he server runs the default settings. -// custom - the server runs custom gameplay settings or mods. -// example: sv_tags "custom, fastdl" -sv_tags "" - -// Friendly fire - Allows team members to injure other members of their team. -// Default: mp_friendlyfire 0 -mp_friendlyfire 0 - -// ............................. Communication ............................. // - -// Enable communication over voice via microphone. -// Default: sv_voiceenable 1 -sv_voiceenable 1 - -// Players can hear all other players, no team restrictions. -// Default: sv_alltalk 0 -sv_alltalk 0 - -// ............................. Fast Download .............................. // -// info: Allows custom maps to be downloaded to the client. - -// Allows clients to download custom maps and textures etc. from the server at 20 kbps. -// Default: sv_allowdownload 1 -sv_allowdownload 1 - -// Allows clients to download custom maps, textures etc. from a web server with no transfer limit. -// Example: -// server location: maps/custommap.bsp -// web server location: http://example.com/custom/maps/custommap.bsp -// sv_downloadurl "http://example.com/custom" -// Default: sv_downloadurl "" -sv_downloadurl "" - -// ................................ Ban List ............................... // - -// personal banlist based on user IDs. -exec banned_user.cfg - -// personal banlist based on user IPs. -exec banned_ip.cfg - -writeid -writeip - -// ............................. Server Logging ............................. // - -//Enables logging to file, console, and udp < on | off >. -log on - -// Log server bans in the server logs. -// Default: sv_logbans 1 -sv_logbans 1 - -// Echo log information to the console. -// Default: sv_logecho 1 -sv_logecho 1 - -// Log server information in the log file. -// Default: sv_logfile 1 -sv_logfile 1 - -// Log server information to only one file. -// Default: sv_log_onefile 0 -sv_log_onefile 0 diff --git a/PiratesVikingandKnightsII/pvkiiserver b/PiratesVikingandKnightsII/pvkiiserver index 870cd4e50..bc7767adb 100644 --- a/PiratesVikingandKnightsII/pvkiiserver +++ b/PiratesVikingandKnightsII/pvkiiserver @@ -1,72 +1,94 @@ #!/bin/bash -# No More Room in Hell -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: No More Room in Hell | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="bt_island" maxplayers="24" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game pvkii -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="17575" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="17575" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="pvkii-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Pirates, Vikings, and Knights II" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="pvkii-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -75,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/pvkii" executabledir="${filesdir}" executable="./srcds_run" @@ -82,24 +106,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -156,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/ProjectZomboid/cfg/lgsm-default.ini b/ProjectZomboid/cfg/lgsm-default.ini deleted file mode 100644 index 5ca4fe917..000000000 --- a/ProjectZomboid/cfg/lgsm-default.ini +++ /dev/null @@ -1,66 +0,0 @@ -nightlengthmodifier=1.0 -PVP=true -PauseEmpty=false -GlobalChat=true -Open=true -ServerWelcomeMessage= Welcome to Project Zomboid MP ! to chat locally press "t", to global chat press "y" or add "/all" before chatting Press /help to have a list of server commands -LogLocalChat=false -AutoCreateUserInWhiteList=false -DisplayUserName=true -SpawnPoint=0,0,0 -SafetySystem=true -ShowSafety=true -SafetyToggleTimer=100 -SafetyCooldownTimer=120 -SpawnItems= -DefaultPort=16261 -Mods= -Map=Muldraugh, KY -DoLuaChecksum=true -Public=false -PublicName=pzserver -PublicDescription= -MaxPlayers=64 -PingFrequency=10 -PingLimit=400 -HoursForLootRespawn=0 -MaxItemsForLootRespawn=4 -ConstructionPreventsLootRespawn=true -DropOffWhiteListAfterDeath=false -NoFireSpread=false -NoFire=false -AnnounceDeath=false -MinutesPerPage=1.0 -HoursForCorpseRemoval=0.0 -SaveWorldEveryMinutes=0 -PlayerSafehouse=false -AdminSafehouse=false -SafehouseAllowTrepass=true -SafehouseAllowFire=true -SafehouseAllowLoot=true -SafehouseAllowRespawn=false -SafehouseDaySurvivedToClaim=0 -SafeHouseRemovalTime=144 -AllowDestructionBySledgehammer=true -KickFastPlayers=false -RCONPort=27015 -RCONPassword= -Password= -MaxAccountsPerUser=0 -SleepAllowed=false -SleepNeeded=false -SteamPort1=8766 -SteamPort2=8767 -WorkshopItems= -SteamScoreboard=true -SteamVAC=true -UPnP=true -UPnPLeaseTime=86400 -UPnPZeroLeaseTimeFallback=true -UPnPForce=true -CoopServerLaunchTimeout=20 -CoopMasterPingTimeout=60 -server_browser_announced_ip= -UseTCPForMapDownloads=false -PlayerRespawnWithSelf=false -PlayerRespawnWithOther=false \ No newline at end of file diff --git a/ProjectZomboid/pzserver b/ProjectZomboid/pzserver index d0af5d50f..0586a2c13 100644 --- a/ProjectZomboid/pzserver +++ b/ProjectZomboid/pzserver @@ -1,68 +1,88 @@ #!/bin/bash -# Project Zomboid -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs -# Contributions: Bryce Van Dyk (SingingTree) +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Project Zomboid | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +adminpassword="CHANGE_ME" +ip="0.0.0.0" + +fn_parms(){ +parms="-ip ${ip} -adminpassword \"${adminpassword}\"" +} + +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email emailalert="off" email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables -adminpassword="CHANGE_ME" -ip="0.0.0.0" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" -fn_parms(){ -parms="-ip ${ip} -adminpassword \"${adminpassword}\"" -} +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" -#### Advanced Variables #### +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +#### LinuxGSM Advanced Settings #### -# Steam +## SteamCMD Settings +# Server appid appid="380870" - # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta iwillbackupmysave -betapassword iaccepttheconsequences" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="pz-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Project Zomboid" engine="projectzomboid" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="pz-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -71,6 +91,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./start-server.sh" @@ -78,24 +100,26 @@ servercfg="server.ini" servercfgdefault="server.cfg" servercfgdir="${HOME}/Zomboid/Server" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${HOME}/Zomboid/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -152,8 +176,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Quake2/cfg/lgsm-default.cfg b/Quake2/cfg/lgsm-default.cfg deleted file mode 100644 index d59e3505f..000000000 --- a/Quake2/cfg/lgsm-default.cfg +++ /dev/null @@ -1,15 +0,0 @@ -set hostname "" -set rcon_password "" -set location "The Internet" -set website "https://gameservermanagers.com/" -set deathmatch 1 -set maxclients 8 -set timelimit 30 -set fraglimit 30 - -map q2dm1 - -// to advertise your server to a public "master server" add something -// like this: -//set public 1 -//setmaster master.q2servers.com diff --git a/Quake2/q2server b/Quake2/q2server index 5a7faaab7..94de84180 100644 --- a/Quake2/q2server +++ b/Quake2/q2server @@ -1,54 +1,78 @@ #!/bin/bash -# Quake 2 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Quake 2 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="210516" - -#### Variables #### +version="161030" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" +#### Server Settings #### -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="q2dm1" ip="0.0.0.0" port="27910" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters fn_parms(){ parms="+set dedicated 1 +set ip ${ip} +set port ${port} +exec ${servercfg} +set deathmatch 1 +map ${defaultmap}" } +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -#### Advanced Variables #### +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Server Details -servicename="quake2server" +## LinuxGSM Server Details +# Do not edit gamename="Quake 2" engine="idtech2" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="quake2server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -57,6 +81,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/baseq2" executabledir="${filesdir}" executable="./quake2" @@ -64,24 +90,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -138,8 +166,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Quake3/cfg/lgsm-default.cfg b/Quake3/cfg/lgsm-default.cfg deleted file mode 100644 index caccea760..000000000 --- a/Quake3/cfg/lgsm-default.cfg +++ /dev/null @@ -1,36 +0,0 @@ -set sv_hostname "" -set sv_maxclients 16 -set g_motd "LGSM Quake3 Server" -set g_forcerespawn 15 -set rconpassword "" -set g_gametype 0 //- Sets the type of game. 0 - Free for all, 1 - Tournament, 2 - Free for all(again), 3 - Team Deathmatch, 4 - Capture the Flag -set fraglimit 50 -set timelimit 20 - -//Here's the map-cycle. When fraglimit or timelimit is reached, the map is automatically changed. -//Otherwise it would just play the same map again. -set m1 "map q3dm1; set nextmap vstr m2" -set m2 "map q3dm2; set nextmap vstr m3" -set m3 "map q3dm3; set nextmap vstr m4" -set m4 "map q3tourney1; set nextmap vstr m5" -set m5 "map q3dm4; set nextmap vstr m6" -set m6 "map q3dm5; set nextmap vstr m7" -set m7 "map q3dm6; set nextmap vstr m8" -set m8 "map q3tourney2; set nextmap vstr m9" -set m9 "map q3dm7; set nextmap vstr m10" -set m10 "map q3dm8; set nextmap vstr m11" -set m11 "map q3dm9; set nextmap vstr m12" -set m12 "map q3tourney3; set nextmap vstr m13" -set m13 "map q3dm10; set nextmap vstr m14" -set m14 "map q3dm11; set nextmap vstr m15" -set m15 "map q3dm12; set nextmap vstr m16" -set m16 "map q3tourney4; set nextmap vstr m17" -set m17 "map q3dm13; set nextmap vstr m18" -set m18 "map q3dm14; set nextmap vstr m19" -set m19 "map q3dm15; set nextmap vstr m20" -set m20 "map q3tourney5; set nextmap vstr m21" -set m21 "map q3dm16; set nextmap vstr m22" -set m22 "map q3dm17; set nextmap vstr m23" -set m23 "map q3dm18; set nextmap vstr m24" -set m24 "map q3dm19; set nextmap vstr m25" -set m25 "map q3tourney6; set nextmap vstr m1" \ No newline at end of file diff --git a/Quake3/q3server b/Quake3/q3server index 6c2e4d844..c302f10c0 100644 --- a/Quake3/q3server +++ b/Quake3/q3server @@ -1,54 +1,79 @@ #!/bin/bash -# Quake 3: Arena -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Quake 3: Arena | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="210516" - -#### Variables #### +version="161030" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" +#### Server Settings #### -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="q3dm17" ip="0.0.0.0" port="27960" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters fn_parms(){ parms="+set sv_punkbuster 0 +set fs_basepath ${filesdir} +set dedicated 1 +set com_hunkMegs 32 +set net_ip ${ip} +set net_port ${port} +exec ${servercfg} +map ${defaultmap}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Server Details -servicename="quake3-server" +## LinuxGSM Server Details +# Do not edit gamename="Quake 3: Arena" engine="idtech3" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="quake3-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -57,6 +82,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/baseq3" executabledir="${filesdir}" executable="./q3ded" @@ -64,24 +91,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -138,8 +167,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 core_getopt.sh \ No newline at end of file diff --git a/QuakeLive/cfg/lgsm-default.cfg b/QuakeLive/cfg/lgsm-default.cfg deleted file mode 100644 index 6dd87b484..000000000 --- a/QuakeLive/cfg/lgsm-default.cfg +++ /dev/null @@ -1,103 +0,0 @@ -// Servers have the ability to run multiple gametypes, known as "factories." You should not add gameplay related -// cvars in the server config: they may get overwritten by the factory. For creating your own sets of gameplay rules, -// create a file ending in ".factories" inside baseq3/scripts, and refer to "Creating custom gametypes" in the -// server_readme.txt file. - -// Be aware that factories can override any cvar, including ones specified in this config file. - -set sv_hostname "" -set sv_tags "" // Comma delimited field of server tags to show in server browser. - // Will automatically include gametype and some gameplay modifications. - // ex. "crouch slide, classic, space" -set sv_mapPoolFile "mappool.txt" // Map pool that the server will use. See default mapcycle.txt for format. - // Built in map pools: mappool.txt, mappool_ca.txt, mappool_ctf.txt, mappool_duel.txt, - // mappool_ffa.txt, mappool_race.txt, mappool_tdm.txt -set g_accessFile "access.txt" // Used to determine which 64-bit Steam IDs have admin access, or are banned. - -set sv_maxClients "16" // How many players can connect at once. -set g_password "" // Set a server-wide password, and stop all users from connecting without it. -set sv_privateClients "0" // Reserve slots that can be used with sv_privatePassword. -set sv_privatePassword "" // Password to use in conjunction with sv_privateClients. -set com_hunkMegs "60" // May need to be increased for additional players. - -// Flood protection will increment everytime the user sends a client command, ex. dropweapon, changing name, color -// model, or chatting. Set g_floodprot_maxcount to 0 to disable completely, but this will allow uncontrolled spam. -set sv_floodprotect "10" // Kick the player when they reach x commands, decreases by 1 every second -set g_floodprot_maxcount "10" // Kick the player when their userinfo flood counter reaches this level. -set g_floodprot_decay "1000" // Decrease the userinfo flood counter by 1 this often, in milliseconds. - -// Add the below values for which callvotes should be DISABLED: -// map 1 -// map_restart 2 -// nextmap 4 -// gametype 8 (ex: "/callvote map campgrounds" will be allowed, but "/callvote map campgrounds ca" will fail) -// kick 16 -// timelimit 32 -// fraglimit 64 -// shuffle 128 -// teamsize 256 -// cointoss/random 512 -// loadouts 1024 -// end-game voting 2048 -// ammo (global) 4096 -// timers (item) 8192 -set g_voteFlags "0" -set g_allowVote "1" // Turn off all votes -set g_voteDelay "0" // Delay allowing votes for x milliseconds after map load. -set g_voteLimit "0" // Limit users to x votes per map. -set g_allowVoteMidGame "0" // Don't allow callvotes once the map has started -set g_allowSpecVote "0" // Allow spectators to call votes - -set sv_warmupReadyPercentage "0.51" // Ratio of players that must be ready before the match starts. -set g_warmupDelay "15" // Wait x seconds before allowing match to start to allow all players to connect. -set g_warmupReadyDelay "0" // Force the game to start after x seconds after someone readies up. -set g_warmupReadyDelayAction "1" // Set to 1 to force players to spectator after g_warmupReady Delay, 2 to force ready up. - -set g_inactivity "0" // Kick players who are inactive for x amount of seconds. -set g_alltalk "0" // 0: Limit voice comms to teams during match - // 1: Allow all players to talk to each other always - // 2: 1+ send back your own voice to yourself for testing - -// System settings - -// Uncomment and set below to use (server.cfg will override commandline!) -// set net_strict "1" // Quit out immediately if we can't bind the IP and port. -// set net_ip "" // Which IP to bind to. Blank will bind to all interfaces. -// set net_port "55555" // Which UDP port to bind to. Blank will start at 27960 and keep going up, if net_strict is 0. -set sv_serverType "2" // 0 = Offline, 1 = LAN, 2 = Internet -set sv_master "1" // Whether the server should respond to queries. Disable this to stop server from appearing in browser. - // (This will affect the LAN browser!) - -set sv_fps "40" // Change how many frames the server runs per second. WARNING: Has not been tested extensively, and - // will have a direct impact on CPU and network usage! - -// Exit the server if idle (not running a map) for a specified time. This will allow it to automatically restart -// in the case of a game error or other problem. A value of "1" is recommended, but not default, when you are running -// the server detached from the terminal. - -set sv_idleExit "120" - -// Enable remote console, provided through ZeroMQ. See zmq_rcon.py for simple client. -// ZMQ rcon binds on a separate port from the game server, and uses TCP. It must differ from the stats port if used. -// Rcon can not be enabled or disabled after launch, nor can the IP and port change. Password can, however. - -// Uncomment and set below to use (server.cfg will override commandline!) -set zmq_rcon_enable "1" -// set zmq_rcon_ip "" -// set zmq_rcon_port "28960" -set zmq_rcon_password "" - -// Enable ZeroMQ stats socket. This will not be much use without a client listening. -// See zmq_stats_verbose.py for example connect and stats printing. -// If not specified, the stats socket will default to the same IP and port as the game server, but on TCP. - -// Uncomment and set below to use (server.cfg will override commandline!) -// set zmq_stats_enable "1" -// set zmq_stats_ip "" -// set zmq_stats_port "" -// set zmq_stats_password "" - -// The server will run serverstartup when it finishes initializing, so start a random map from the map pool. -set serverstartup "startRandomMap" -// Or, start a map of your choosing (factory is required) -// set serverstartup "map campgrounds ffa" \ No newline at end of file diff --git a/QuakeLive/qlserver b/QuakeLive/qlserver index ed96114f4..33cc3696c 100755 --- a/QuakeLive/qlserver +++ b/QuakeLive/qlserver @@ -1,36 +1,28 @@ #!/bin/bash -# Quake Live -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Quake Live | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters arch="x64" # x64 or x86 port="27960" rconport="28960" @@ -39,37 +31,67 @@ statsport="${port}" statspassword="CHANGE_ME" mappool='mappool.txt' ip="0.0.0.0" -updateonstart="off" -# Install/Config Guide : https://steamcommunity.com/sharedfiles/filedetails/?id=542966946 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | Install/Config Guide : https://steamcommunity.com/sharedfiles/filedetails/?id=542966946 # Console Commands : http://www.regurge.at/ql/ fn_parms(){ parms="+set net_strict 1 +set net_ip ${ip} +set net_port ${port} +set fs_homepath ${filesdir}/${port} +set zmq_rcon_enable 1 +set zmq_rcon_port ${rconport} +set zmq_rcon_password ${rconpassword} +set zmq_stats_enable 1 +set zmq_stats_password ${statspassword} +set zmq_stats_port ${statsport} +set sv_mapPoolFile ${mappool} +exec ${servercfg}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="349090" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="349090" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="ql-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Quake Live" engine="idtech3_ql" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ql-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -78,6 +100,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable=$([ "${arch}" == 'x64' ] && echo "./run_server_x64.sh" || echo "./run_server_x86.sh") @@ -85,25 +109,27 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${filesdir}/baseq3" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log/server" scriptlogdir="${rootdir}/log/script" consolelogdir="${rootdir}/log/console" -consolelogging="on" - gamelog="${gamelogdir}/${servicename}-game.log" 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -160,8 +186,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/RedOrchestra/roserver b/RedOrchestra/roserver index 6d4082ec6..025bf348c 100644 --- a/RedOrchestra/roserver +++ b/RedOrchestra/roserver @@ -1,62 +1,94 @@ #!/bin/bash -# Red Orchestra: Ostfront 41-45 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Red Orchestra: Ostfront 41-45 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161030" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +#### Server Settings #### -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="RO-Arad.rom" ip="0.0.0.0" -updateonstart="off" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care fn_parms(){ parms="server ${defaultmap}?game=ROGame.ROTeamGame?VACSecured=true -nohomedir ini=${servercfg} log=${gamelog}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## SteamCMD Settings +# Server appid +appid="223250" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Server Details -servicename="ro-server" +## LinuxGSM Server Details +# Do not edit gamename="Red Orchestra: Ostfront 41-45" engine="unreal2" -# Steam -appid="223250" +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ro-server" -# Directories +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -64,6 +96,8 @@ lgsmdir="${rootdir}/lgsm" functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" + +## Server Specific Directories filesdir="${rootdir}/serverfiles" systemdir="${filesdir}/system" executabledir="${systemdir}" @@ -73,26 +107,32 @@ servercfgdefault="default.ini" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" compressedmapsdir="${rootdir}/Maps-Compressed" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log/server" scriptlogdir="${rootdir}/log/script" consolelogdir="${rootdir}/log/console" -consolelogging="on" - gamelog="${gamelogdir}/${servicename}-game.log" scriptlog="${scriptlogdir}/${servicename}-script.log" consolelog="${consolelogdir}/${servicename}-console.log" emaillog="${scriptlogdir}/${servicename}-email.log" -gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%d-%m-%Y-%H-%M-%S').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 +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" +gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%Y-%m-%d-%H:%M:%S').log" + +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -149,8 +189,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Ricochet/cfg/lgsm-default.cfg b/Ricochet/cfg/lgsm-default.cfg deleted file mode 100644 index 585afb9e2..000000000 --- a/Ricochet/cfg/lgsm-default.cfg +++ /dev/null @@ -1,35 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -// disable autoaim -sv_aim 0 - -// disable clients' ability to pause the server -pausable 0 - -// maximum client movement speed -sv_maxspeed 320 - -// 20 minute timelimit -mp_timelimit 20 - -// cheats off -sv_cheats 0 - -// load ban files -exec listip.cfg -exec banned.cfg - diff --git a/Ricochet/ricochetserver b/Ricochet/ricochetserver index c80e188e9..8eb18e0c1 100644 --- a/Ricochet/ricochetserver +++ b/Ricochet/ricochetserver @@ -1,34 +1,26 @@ #!/bin/bash -# Ricochet -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Ricochet | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161030" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### # Start Variables defaultmap="rc_arena" @@ -36,32 +28,91 @@ maxplayers="16" port="27015" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game ricochet -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +########################## +######## Settings ######## +########################## + +#### Server Settings #### + +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login +steamuser="username" +steampass="password" + +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +ip="0.0.0.0" + +## Optional: Game Server Login Token +# GSLT can be used for running a public server. +# More info: https://gameservermanagers.com/gslt +gslt="" + +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +fn_parms(){ +parms="" +} + +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" -# Github Branch Select +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="90" +appidmod="ricochet" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="90" -appidmod="ricochet" - -# Server Details -servicename="ricochet-server" +## LinuxGSM Server Details +# Do not edit gamename="Ricochet" engine="goldsource" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ricochet-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +121,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/ricochet" executabledir="${filesdir}" executable="./hlds_run" @@ -77,24 +130,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -151,8 +206,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Rust/cfg/lgsm-default.cfg b/Rust/cfg/lgsm-default.cfg deleted file mode 100644 index 225215e01..000000000 --- a/Rust/cfg/lgsm-default.cfg +++ /dev/null @@ -1,48 +0,0 @@ -# This file does not include all possible commands but it includes the most common/useful ones. -# If you want to see all possible comands, in the server console type: find . - -# Before some variables are a # symbol. This means it is disabled. Remove the # symbol to enable them. - -######################################### -# Important Settings You Need To Change # -######################################### - -# A text description of your server. For a new line add: \n -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/GameServerManagers/LinuxGSM/raw/master/images/logo/lgsm-full-light.png" - -# The URL to your servers website. -server.url "https://gameservermanagers.com/" - -#################################### -# Optional Settings You Can Change # -#################################### - -# A value of false makes text chat location based only (players need to be close to each other). -# Values: true, false -#server.globalchat true - -# Controls if player vs player damage is allowed. If your server is primarily for building, you'll want to set this to false -# Values: true, false -#server.pve false - -# Controls fall damage. -# Values: true, false -#falldamage.enabled true - -# Helicopter bullet accuracy. Higher numbers are less accurate. -#heli.bulletAccuracy 2 - -################################################ -# Settings That Will Lag Server Is Set Too Low # -################################################ - -# Changes how often resources respawn. -#spawn.min_rate 0.1 -#spawn.max_rate 1 - -# Changes how close resources spawn to each other. -#spawn.min_density 0.1 -#spawn.max_density 1 diff --git a/Rust/rustserver b/Rust/rustserver index 9196c1ec0..0ac0ab260 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -1,53 +1,43 @@ #!/bin/bash -# Rust -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs -# Contributor: UltimateByte (LGSM adaptation), Wulf (Information) +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Rust | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161030" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login (not required) -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Server settings +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters # More settings available after install in serverfiles/server/rust-server/server.cfg servername="Rust" ip="0.0.0.0" -updateonstart="off" port="28015" rconport="28016" rconpassword="CHANGE_ME" maxplayers="50" - -# Advanced +# Advanced Start Settings seed="" # default random; range : 1 to 2147483647 ; used to change or reproduce a procedural map worldsize="3000" # default 3000; range : 1000 to 6000 ; map size in meters saveinterval="300" # Auto-save in seconds tickrate="30" # default 30; range : 15 to 100 -# https://developer.valvesoftware.com/wiki/Rust_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Rust_Dedicated_Server fn_parms(){ parms="-batchmode +server.ip ${ip} +server.port ${port} +server.tickrate ${tickrate} +server.hostname \"${servername}\" +server.identity \"${servicename}\" ${conditionalseed} +server.maxplayers ${maxplayers} +server.worldsize ${worldsize} +server.saveinterval ${saveinterval} +rcon.ip ${ip} +rcon.port ${rconport} +rcon.password \"${rconpassword}\" -logfile ${gamelogfile}" } @@ -61,29 +51,59 @@ else conditionalseed="" fi -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="258550" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="258550" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta prerelease" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="rust-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Rust" engine="unity3d" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="rust-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname=$(basename $(readlink -f "${BASH_SOURCE[0]}")) lockselfname=".${servicename}.lock" @@ -92,6 +112,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./RustDedicated" @@ -100,26 +122,28 @@ servercfg="server.cfg" servercfgdefault="server.cfg" servercfgdir="${serveridentitydir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log/server" scriptlogdir="${rootdir}/log/script" consolelogdir="${rootdir}/log/console" -consolelogging="on" - gamelog="${gamelogdir}/${servicename}-game.log" scriptlog="${scriptlogdir}/${servicename}-script.log" consolelog="${consolelogdir}/${servicename}-console.log" emaillog="${scriptlogdir}/${servicename}-email.log" -gamelogfile="\"gamelog-$(date '+%Y-%m-%d-%H-%M-%S').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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" +gamelogfile="\"gamelog-$(date '+%Y-%m-%d-%H-%M-%S').log\"" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -176,8 +200,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/SeriousSam3BFE/cfg/lgsm-default.ini b/SeriousSam3BFE/cfg/lgsm-default.ini deleted file mode 100644 index 1bf1a3c90..000000000 --- a/SeriousSam3BFE/cfg/lgsm-default.ini +++ /dev/null @@ -1,49 +0,0 @@ --- Generated with Server GUI 3 --- http://mrag.nl/sgui3/ - --- General -rcts_strWelcomeNote = "Server RCON MOTD"; -rcts_strAdminPassword = "rconpassword"; -prj_strLogFile = ""; -net_strLocalHost = ""; -gam_idGameMode = "Cooperative"; -ser_iMaxClientBPS = 11000; -prj_iDedicatedFPS = 100; -gam_ctMaxPlayers = 12; -prj_uwPort = 27015; -prj_strMultiplayerSessionName = "Serious Sam 3 Server"; - --- Options -gam_bAllowJoinInProgress = 1; -gam_bAllowPowerupItems = 1; -gam_bAllowArmorItems = 1; -gam_bWeaponsStay = 1; -gam_bAmmoStays = 1; -gam_bArmorStays = 1; -gam_bHealthStays = 1; -gam_bAllowHealthItems = 1; -gam_bInfiniteAmmo = 0; - --- Levels -local mapList = ""; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\01_CairoSquare\01_CairoSquare.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\02_CairoMuseum\02_CairoMuseum.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\03_IbnTulun\03_IbnTulun.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\04_IbnTulun\04_Medina.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\05_CairoTown\05_CairoTown.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\06_Pyramids\06_Pyramids.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\07_Karnak1\07_Karnak1.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\08_Karnak2\08_Karnak2.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\09_Luxor\09_Luxor.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\10_LostNubianTemples\10_LostNubianTemples.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\11_Ramesseum\11_Ramesseum.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\01_BFE\12_HatshepsutTemple\12_HatshepsutTemple.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\02_DLC\01_Philae\01_Philae.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\02_DLC\02_AbuSimbel\02_AbuSimbel.wld;"; -mapList = mapList .. "Content\SeriousSam3\Levels\02_DLC\03_TempleOfSethirkopshef\03_TempleOfSethirkopshef.wld;"; -prj_StrMapList = mapList; - --- Scripts - --- Custom - diff --git a/SeriousSam3BFE/help/DedicatedServer_Readme.txt b/SeriousSam3BFE/help/DedicatedServer_Readme.txt deleted file mode 100644 index cf5aa8094..000000000 --- a/SeriousSam3BFE/help/DedicatedServer_Readme.txt +++ /dev/null @@ -1,139 +0,0 @@ -Serious Engine Dedicated Server -=============================== - -1. Starting and stopping the dedicated server ---------------------------------------------- - -You can launch the dedicated server either from the Steam client's Tools tab, or by directly starting its executable file. In either case, a Steam client needs to be running on that machine, though the user logged in doesn't have to actually own the game. - -In absence of any further configuration, the server will start the first level of the Coop campaign, with all default settings, on the default port. - -The server will pause immediately after the first level is loaded, and wait for players to join, to conserve the game state. When the first player joins, the game will unpause. - -When all players disconnect, the server will restart its session from the first level again. - -To stop the server, press Ctrl+C in its console window and wait until it shuts down. - -2. Server ports ---------------- - -The server will be immediately visible on your LAN, but to make sure it is also visible on the internet, you need to open the port 27016. Note that this is only game enumeration port, as the game traffic port cannot be specified at the moment, thus this will not alleviate the need for NAT punching. I.e. it is not recommended to run a dedicated server behind a NAT/router that doesn't properly support NAT punching, or otherwise all connections to it will have very high pings. We expect the game traffic port to be specifiable in one of the future updates, but it is not currently possible. - -If you want to allow remote administration (see the section about remote administration below), you need to also forward port 27015 (TCP-only). - -You can change the port that the server is running on using the command-line option "+port". The server will use the given port for Rcon administration and the given port +1 for game enumeration (see above). So, e.g. if you use "+port 25600", game enumeration will work on port 25601 and rcon on port 25600. When game traffic specification becomes possible, it will be on port 25600 in the example, but this is currently not supported. - -You can change the network interface that the server will bind to using the command-line option "+ip". This is used both fr Rcon administration and for game enumeration. When game traffic specification becomes possible, it will also use this, but this is currently not supported (game traffic chooses an interface automatically). - -3. Command line ---------------- - -Command line options can be used to modify any cvar using this format: - -SamHD_DedicatedServer.exe +cvarname1 cvarvalue1 +cvarname2 cvarvalue2 ... +cvarnameN cvarvalueN - -Quotes are needed around values that contain spaces. Cvar names in the command line can be either short names (e.g. +level "Path/Level") where available, or long names (+gam_strLevel "Path/Level"). - -4. Configuration scripts ------------------------- - -When starting, in addition to the command line option, the server will read configuration parameters from the following sources (in this order): - * Content/SeriousSamHD/Config/dedicatedserver.cfg, - * eventual custom script specified via the +exec command line option, - * eventual per-session script specified via the +gameoptions command line option. -The first two are read once on boot, the last one is read on each session start and restart. (When all player's disconnect, the server will load this again before starting the first level.) - -All of those scripts are fully-featured console scripts, i.e. they use the Lua programming language, so you can put ifs, functions and other programming constructs in them. For a full syntax description and other documentation regarding the Lua programming language, please visit: http://www.lua.org . - -Dedicated server does not load or save any .ini files. - -5. Most relevant command line options and cvars ------------------------------------------------ -(long name shown in parentheses) - * +gamemode (gam_idGameMode) - Valid values are: - (cooperative group) - Cooperative (this is the default) - CooperativeCoinOp - TeamSurvival - (versus group) - BeastHunt - CaptureTheFlag - Deathmatch - InstantKill - LastManStanding - LastTeamStanding - MyBurden - TeamBeastHunt - TeamDeathmatch - Note that players can vote to change the game mode, but they cannot switch a server from Cooperative modes to Versus modes or vice versa. - IMPORTANT: Changing this option resets all other gam_ options to defaults for that game mode. If you are also customizing other gam_ options from a script or via Rcon, make sure you change gam_idGameMode first, and then change all others! - * +level (gam_strLevel) - Specifies which level to start. Path is relative to the folder the game was installed in. If not specified, the server will start the default first level. - * +maxplayers (gam_ctMaxPlayers) - Max number of players in the session. Cannot be higher than 16. - * +port (prj_uwPort) - Specifies the port number to start the server on. Default is 27015. - * +ip (net_strLocalHost) - Specifies the network interface to start the server on. Default is empty, meaning automatic. - * +fps (prj_iDedicatedFPS) - Specifies the framerate the dedicated server will run in (min 10). - * +exec (prj_strExecCfg) - Specifies the configuration file to execute when the server first starts. - * +gameoptions (prj_strOptionsScript) - Specifies the game options script to execute. It is executed whenever the server (re)starts the first level. - * +sessionname (prj_strMultiplayerSessionName) - Session name that will be displayed in the server browser. If you don't set this, current username from Windows will be shown. - * +rconpass (rcts_strAdminPassword) - Password used to connect to the server via Rcon (see "Remote administration" above). - * +logfile (prj_strLogFile) - Save the DedicatedServer.log into a different file. Useful if you want to run multiple servers from the same installation. - -NOTE: You can use any of the standard game options like gam_bInifiniteAmmo that customize the gameplay, but note that gam_bCustomizeDifficulty is required for them to take effect! - -6. Some other useful console variables and functions ----------------------------------------------------- - - * gamListPlayers() - print the list of all players to the console in format: 'playerindex: playername' - * gamKickByName() - kick the client with the given player name out of the game - * gamKickByIndex() - kick the client with the given index out of the game - * gamBanByName() - ban the client with the given player name out of the game - * gamBanByIndex() - ban the client with the given index out of the game - - * gamRestartServer() - restarts the dedicated server (disconnects all players) so any changes to game settings or other server options can take effect - * gamRestartGame() - restart game with new session params without disconnecting players - * samRestartMap() - restart the current map (without disconnecting all players) so any changes to game difficulty and similar options can take effect - * gamStop() - stops the current game - * gamStart() - start game with new session params without disconnecting players - * samVotePass() - force the current vote to pass - * samVoteFail() - force the current vote to fail - - * ser_iMaxClientBPS - limit the bandwidth used by each individual client on the server. This caps the cli_iMaxBPS on the server side. - * prj_strMapList - Semicolon separated list of maps used for multiplayer map rotation. - * prj_strMapListFile - Path to the file containing a list of maps used for multiplayer map rotation. - * prj_strDefaultMapDir - Default map folder to use for the map list (specified either by prj_strMapList or prj_strMapListFile). To make it posible to specify map names in a short form, if a '#' prefix is used in a map path, the '#' char will be replaced by the value of this cvar. - -All other cvars and cfuncs can be used, most notable are cvars with "gam_" prefix which can be used to setup difficulty options and similar. To get the list of those or more details about them, use the game client's console with its autocompletion and help. - -7. Remote administration (RCon) -------------------------------- - -Remote administration of Serious Sam HD dedicated servers is implemented via the Telnet protocol. Use any telnet client (e.g. telnet.exe) to connect to the IP and port the server is running on (default is 27015). - -Example: -C:\> telnet my.server.ip 27015 - -(*) NOTE: On Vista and Win7, the telnet command is not installed by default. You need to enable it using the "Turn Windows features on or off" section of the Control Panel. - -You need to specify the rcon password (using the +rconpass "password" command-line option) when starting the server, otherwise it won't allow you to connect to it via Rcon. Also make sure the appropriate port is open, as explained above. - -After entering the correct rcon password, the telnet client will behave similarly to the in-game console (except that SHIFT+TAB combo doesn't work). Additionally you can type a question mark ("?"), followed by a cvar or cfunc to get the help about it. - -8. Example configuration script -------------------------------- - -Here's an example config script. Put that in a text file named "server.cfg" in the root of the game installation (parent of Bin/), and specify "+exec server.cfg" in the command line (without quotes). - ---------8<----- cut here ----------- - -rconpass = "SuperSecretPassword"; -- MAKE SURE YOU CHANGE THIS!!!! -sessionname = "My Server Name" -- set this to the name of your server - -gam_ctMaxPlayers = 8 -gamemode="Deathmatch" -gam_bAutoCycleMaps = 1 - -local prj_strMapList = { - "#SunPalace.wld", -- put a list of map file names for rotation here -} - ---------8<------cut here ---------- \ No newline at end of file diff --git a/SeriousSam3BFE/ss3sserver b/SeriousSam3BFE/ss3sserver index 21dfeb281..f0b1181e9 100644 --- a/SeriousSam3BFE/ss3sserver +++ b/SeriousSam3BFE/ss3sserver @@ -1,67 +1,89 @@ #!/bin/bash -# Serious Sam 3: BFE -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Sam 3: BFE | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### + +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +ip="0.0.0.0" + +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://raw.githubusercontent.com/GameServerManagers/Game-Server-Configs/master/SeriousSam3BFE/help/DedicatedServer_Readme.txt +fn_parms(){ +parms="+ip ${ip} +logfile ${gamelog} +exec ${servercfgfullpath}" +} + +#### LinuxGSM Settings #### -# Email +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email emailalert="off" email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables -ip="0.0.0.0" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" -# https://raw.githubusercontent.com/GameServerManagers/LinuxGSM/master/SeriousSam3BFE/help/DedicatedServer_Readme.txt -fn_parms(){ -parms="+ip ${ip} +logfile ${gamelog} +exec ${servercfgfullpath}" -} +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" -#### Advanced Variables #### +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +#### LinuxGSM Advanced Settings #### -# Steam +## SteamCMD Settings +# Server appid appid="41080" - # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta publicbeta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="ss3-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Serious Sam 3: BFE" engine="seriousengine35" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ss3-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +92,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/Bin" executable="./runSam3_DedicatedServer.sh" executabledir="${systemdir}" @@ -77,26 +101,28 @@ servercfg="${servicename}.ini" servercfgdefault="server.ini" servercfgdir="${filesdir}/Content/SeriousSam3/Config" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log/server" scriptlogdir="${rootdir}/log/script" consolelogdir="${rootdir}/log/console" -consolelogging="on" - gamelog="${gamelogdir}/${servicename}-game.log" scriptlog="${scriptlogdir}/${servicename}-script.log" consolelog="${consolelogdir}/${servicename}-console.log" emaillog="${scriptlogdir}/${servicename}-email.log" -gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%d-%m-%Y-%H-%M-%S').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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" +gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -153,8 +179,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Starbound/cfg/lgsm-default.config b/Starbound/cfg/lgsm-default.config deleted file mode 100644 index 275898d2b..000000000 --- a/Starbound/cfg/lgsm-default.config +++ /dev/null @@ -1,49 +0,0 @@ -{ - "allowAdminCommands" : true, - "allowAdminCommandsFromAnyone" : false, - "allowAnonymousConnections" : true, - "allowAssetsMismatch" : true, - "anonymousConnectionsAreAdmin" : false, - "bannedIPs" : [], - "bannedUuids" : [], - "checkAssetsDigest" : false, - "clearPlayerFiles" : false, - "clearUniverseFiles" : false, - "clientIPJoinable" : false, - "clientP2PJoinable" : true, - "configurationVersion" : { - "basic" : 1, - "server" : 4 - }, - "crafting" : { - "filterHaveMaterials" : false - }, - "gameServerBind" : "::", - "gameServerPort" : 21025, - "interactiveHighlight" : true, - "inventory" : { - "pickupToActionBar" : true - }, - "maxPlayers" : 8, - "maxTeamSize" : 4, - "playerBackupFileCount" : 3, - "queryServerBind" : "::", - "queryServerPort" : 21025, - "rconServerBind" : "::", - "rconServerPassword" : "", - "rconServerPort" : 21026, - "rconServerTimeout" : 1000, - "runQueryServer" : false, - "runRconServer" : false, - "safeScripts" : true, - "scriptInstructionLimit" : 10000000, - "scriptInstructionMeasureInterval" : 10000, - "scriptProfilingEnabled" : false, - "scriptRecursionLimit" : 100, - "serverFidelity" : "automatic", - "serverName" : "", - "serverOverrideAssetsDigest" : null, - "serverUsers" : { - }, - "tutorialMessages" : true -} \ No newline at end of file diff --git a/Starbound/sbserver b/Starbound/sbserver index 5b572669d..dd5e70e4e 100644 --- a/Starbound/sbserver +++ b/Starbound/sbserver @@ -1,66 +1,93 @@ #!/bin/bash -# Starbound -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Starbound | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters ip="0.0.0.0" -updateonstart="off" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care fn_parms(){ parms="" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="211820" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="211820" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="sb-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Starbound" engine="starbound" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="sb-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -69,6 +96,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}/linux" executable="./starbound_server" @@ -76,24 +105,26 @@ servercfg="starbound_server.config" servercfgdefault="starbound_server.config" servercfgdir="${filesdir}/storage" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${filesdir}/storage" 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -150,8 +181,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/SvenCoop/cfg/lgsm-default.cfg b/SvenCoop/cfg/lgsm-default.cfg deleted file mode 100644 index 6bc0822bc..000000000 --- a/SvenCoop/cfg/lgsm-default.cfg +++ /dev/null @@ -1,36 +0,0 @@ -//---------------------------------------------- -// Sven Co-op v5.0 Default Server CFG -//---------------------------------------------- - -//---------------------------------------------- -// See server_example.cfg for more available -// commands and settings. -//---------------------------------------------- - -hostname "" -log "on" - -rcon_password "" -//sv_password "" - -sys_ticrate 100 -deathmatch 1 -decalfrequency 30 -hpk_maxsize 2 -pausable 0 - -sv_aim 0 -sv_allowdownload 1 -sv_allowupload 1 -sv_region 255 -sv_send_resources 1 -sv_voicecodec "voice_speex" -sv_voiceenable 1 -sv_voicequality 5 - -mp_telefrag 1 -mp_timelimit 99 -mp_weaponstay 1 - -exec banned.cfg -exec listip.cfg \ No newline at end of file diff --git a/SvenCoop/svenserver b/SvenCoop/svenserver index 59b9c750e..82101fefa 100644 --- a/SvenCoop/svenserver +++ b/SvenCoop/svenserver @@ -1,71 +1,93 @@ #!/bin/bash -# Sven Co-op -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Sven Co-op | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="svencoop1" maxplayers="16" port="27015" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game svencoop -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Steam -appid="276060" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="276060" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta release_candidate_public" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="svencoop-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Sven Co-op" engine="goldsource" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="svencoop-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -74,6 +96,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/svencoop" executabledir="${filesdir}" executable="./svends_run" @@ -81,24 +105,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -155,8 +181,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/TeamFortress2/cfg/lgsm-default.cfg b/TeamFortress2/cfg/lgsm-default.cfg deleted file mode 100644 index c2b66dcbc..000000000 --- a/TeamFortress2/cfg/lgsm-default.cfg +++ /dev/null @@ -1,15 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 \ No newline at end of file diff --git a/TeamFortress2/tf2server b/TeamFortress2/tf2server index b16193239..5adfaa87b 100644 --- a/TeamFortress2/tf2server +++ b/TeamFortress2/tf2server @@ -1,77 +1,97 @@ #!/bin/bash -# Team Fortress 2 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Team Fortress 2 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login -steamuser="anonymous" -steampass="" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="cp_badlands" maxplayers="16" port="27015" sourcetvport="27020" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# Optional: Game Server Login Token +## Optional: Game Server Login Token # GSLT can be used for running a public server. # More info: https://gameservermanagers.com/gslt gslt="" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game tf -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +sv_setsteamaccount ${gslt} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" -# Steam -appid="232250" +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="232250" # Steam App Branch Select # Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta beta" +# Example: "-beta latest_experimental" branch="" -# Server Details -servicename="tf2-server" +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Team Fortress 2" engine="source" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="tf2-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -80,6 +100,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/tf" executabledir="${filesdir}" executable="./srcds_run" @@ -87,24 +109,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/cfg" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -161,8 +185,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/TeamFortressClassic/cfg/lgsm-default.cfg b/TeamFortressClassic/cfg/lgsm-default.cfg deleted file mode 100644 index ceb8f9374..000000000 --- a/TeamFortressClassic/cfg/lgsm-default.cfg +++ /dev/null @@ -1,38 +0,0 @@ -// Server Name -hostname "" - -// RCON Password -rcon_password "" - -// Server Password -sv_password "" - -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 -sv_logfile 1 -sv_log_onefile 0 - -// disable autoaim -sv_aim 0 - -// disable clients' ability to pause the server -pausable 0 - -// maximum client movement speed -sv_maxspeed 320 - -// 20 minute timelimit -mp_timelimit 20 - -// cheats off -sv_cheats 0 - -// load ban files -exec listip.cfg -exec banned.cfg - - - - diff --git a/TeamFortressClassic/tfcserver b/TeamFortressClassic/tfcserver index cf754b700..8b6994e4a 100644 --- a/TeamFortressClassic/tfcserver +++ b/TeamFortressClassic/tfcserver @@ -1,67 +1,94 @@ #!/bin/bash -# Team Fortress Classic -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Team Fortress Classic | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### - -# Notification Alerts -# (on|off) - -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +version="161030" -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +########################## +######## Settings ######## +########################## -# Steam login -steamuser="anonymous" -steampass="" +#### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="dustbowl" maxplayers="16" port="27015" clientport="27005" ip="0.0.0.0" -updateonstart="off" -# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game tfc -strictportbind _ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## SteamCMD Settings +# Server appid +appid="90" +appidmod="tfc" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="90" -appidmod="tfc" - -# Server Details -servicename="tfc-server" +## LinuxGSM Server Details +# Do not edit gamename="Team Fortress Classic" engine="goldsource" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="tfc-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -70,6 +97,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/tfc" executabledir="${filesdir}" executable="./hlds_run" @@ -77,24 +106,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${systemdir}/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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -151,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/TeamSpeak3/cfg/lgsm-default.ini b/TeamSpeak3/cfg/lgsm-default.ini deleted file mode 100644 index 0fca88d4d..000000000 --- a/TeamSpeak3/cfg/lgsm-default.ini +++ /dev/null @@ -1,20 +0,0 @@ -machine_id= -default_voice_port=9987 -voice_ip=0.0.0.0, :: -licensepath= -filetransfer_port=30033 -filetransfer_ip=0.0.0.0, :: -query_port=10011 -query_ip=0.0.0.0, :: -query_ip_whitelist=query_ip_whitelist.txt -query_ip_blacklist=query_ip_blacklist.txt -dbplugin=ts3db_sqlite3 -dbpluginparameter= -dbsqlpath=sql/ -dbsqlcreatepath=create_sqlite/ -dbconnections=10 -logpath=logs -logquerycommands=0 -dbclientkeepdays=30 -logappend=0 -query_skipbruteforcecheck=0 diff --git a/TeamSpeak3/ts3server b/TeamSpeak3/ts3server index 527b7324e..f0bfbb8ea 100644 --- a/TeamSpeak3/ts3server +++ b/TeamSpeak3/ts3server @@ -1,40 +1,73 @@ #!/bin/bash -# TeamSpeak 3 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: TeamSpeak 3 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +# Edit serverfiles/ts3-server.ini after installation + +#### LinuxGSM Settings #### -# Email +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email emailalert="off" email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Start Variables +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" -# Server Details +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="TeamSpeak 3" servername="TeamSpeak 3 Server" + +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers servicename="ts3-server" -# Directories +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -43,6 +76,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./ts3server_startscript.sh" @@ -50,27 +85,23 @@ servercfg="${servicename}.ini" servercfgdefault="ts3server.ini" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${filesdir}/logs" scriptlogdir="${rootdir}/log/script" - scriptlog="${scriptlogdir}/${servicename}-script.log" emaillog="${scriptlogdir}/${servicename}-email.log" -scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%d-%m-%Y-%H-%M-%S').log" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" - -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -127,8 +158,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Teeworlds/cfg/ctf.cfg b/Teeworlds/cfg/ctf.cfg deleted file mode 100644 index a92b1a494..000000000 --- a/Teeworlds/cfg/ctf.cfg +++ /dev/null @@ -1,7 +0,0 @@ -sv_gametype ctf -sv_powerups 1 -sv_scorelimit 500 -sv_spectator_slots 0 -sv_timelimit 0 -sv_tournament_mode 0 -sv_map_reload 1 \ No newline at end of file diff --git a/Teeworlds/cfg/dm.cfg b/Teeworlds/cfg/dm.cfg deleted file mode 100644 index 426386d1d..000000000 --- a/Teeworlds/cfg/dm.cfg +++ /dev/null @@ -1,7 +0,0 @@ -sv_gametype dm -sv_powerups 1 -sv_scorelimit 20 -sv_spectator_slots 0 -sv_timelimit 0 -sv_tournament_mode 0 -sv_map_reload 1 \ No newline at end of file diff --git a/Teeworlds/cfg/duel.cfg b/Teeworlds/cfg/duel.cfg deleted file mode 100644 index b70e632a2..000000000 --- a/Teeworlds/cfg/duel.cfg +++ /dev/null @@ -1,7 +0,0 @@ -sv_gametype tdm -sv_powerups 0 -sv_scorelimit 10 -sv_spectator_slots 10 -sv_timelimit 5 -sv_tournament_mode 1 -sv_map_reload 1 \ No newline at end of file diff --git a/Teeworlds/cfg/lgsm-default.cfg b/Teeworlds/cfg/lgsm-default.cfg deleted file mode 100644 index efefdf149..000000000 --- a/Teeworlds/cfg/lgsm-default.cfg +++ /dev/null @@ -1,26 +0,0 @@ -sv_name "" -sv_rcon_password "" -password "" -sv_max_clients 12 -sv_port 8303 -sv_register 1 -sv_spamprotection 0 -sv_vote_map 1 -sv_warmup 10 -logfile "" -addvote restart 10 -addvote exec dm.cfg -addvote exec ctf.cfg -addvote exec duel.cfg -addvote exec tdm.cfg -addvote "change_map ctf1" -addvote "change_map ctf2" -addvote "change_map ctf3" -addvote "change_map ctf4" -addvote "change_map ctf5" -addvote "change_map dm1" -addvote "change_map dm2" -addvote "change_map dm6" -addvote "change_map dm7" -addvote "change_map dm8" -addvote "change_map dm9" \ No newline at end of file diff --git a/Teeworlds/cfg/tdm.cfg b/Teeworlds/cfg/tdm.cfg deleted file mode 100644 index 4cde3cd33..000000000 --- a/Teeworlds/cfg/tdm.cfg +++ /dev/null @@ -1,14 +0,0 @@ -// **************************************************************************** -// * -// Teeworlds - tdm.cfg * -// Version 281015 * -// * -// **************************************************************************** - -sv_gametype tdm -sv_powerups 1 -sv_scorelimit 50 -sv_spectator_slots 0 -sv_timelimit 0 -sv_tournament_mode 0 -sv_map_reload 1 \ No newline at end of file diff --git a/Teeworlds/twserver b/Teeworlds/twserver index a16daae1e..bae6a0427 100644 --- a/Teeworlds/twserver +++ b/Teeworlds/twserver @@ -1,62 +1,93 @@ #!/bin/bash -# Teeworlds -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs -# Contributor: Bryce Van Dyk (SingingTree) +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Teeworlds | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161030" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +#### Server Settings #### -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters ip="0.0.0.0" -updateonstart="off" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care fn_parms(){ parms="-f ${servercfgfullpath}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## SteamCMD Settings +# Server appid +appid="380840" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="380840" - -# Server Details -servicename="tw-server" +## LinuxGSM Server Details +# Do not edit gamename="Teeworlds" engine="teeworlds" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="tw-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -65,6 +96,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./teeworlds_srv" @@ -72,25 +105,27 @@ servercfg="${servicename}.cfg" # Teeworlds can also auto load any config if an a servercfgdefault="server.cfg" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log/server" scriptlogdir="${rootdir}/log/script" consolelogdir="${rootdir}/log/console" -consolelogging="on" - gamelog="${gamelogdir}/${servicename}-game.log" 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -147,8 +182,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/Terraria/cfg/lgsm-default.txt b/Terraria/cfg/lgsm-default.txt deleted file mode 100644 index 9a907e61d..000000000 --- a/Terraria/cfg/lgsm-default.txt +++ /dev/null @@ -1,68 +0,0 @@ -#this is an example config file for TerrariaServer.exe -#use the command 'TerrariaServer.exe -config serverconfig.txt' to use this configuration or run start-server.bat -#please report crashes by emailing crashlog.txt to support@terraria.org - -#the following is a list of available command line parameters: - -#-config Specifies the configuration file to use. -#-port Specifies the port to listen on. -#-players / -maxplayers Sets the max number of players -#-pass / -password Sets the server password -#-world Load a world and automatically start the server. -#-autocreate <#> Creates a world if none is found in the path specified by -world. World size is specified by: 1(small), 2(medium), and 3(large). -#-banlist Specifies the location of the banlist. Defaults to "banlist.txt" in the working directory. -#-worldname Sets the name of the world when using -autocreate. -#-secure Adds addition cheat protection to the server. -#-noupnp Disables automatic port forwarding -#-steam Enables Steam Support -#-lobby or Allows friends to join the server or sets it to private if Steam is enabled -#-ip Sets the IP address for the server to listen on -#-forcepriority Sets the process priority for this task. If this is used the "priority" setting below will be ignored. - -#remove the # in front of commands to enable them. - -#Load a world and automatically start the server. -world=~/.local/share/Terraria/Worlds/world1.wld - -#Creates a new world if none is found. World size is specified by: 1(small), 2(medium), and 3(large). -autocreate=1 - -#Sets the name of the world when using autocreate -worldname=Terraria - -#Sets the difficulty of the world when using autocreate 0(normal), 1(expert) -difficulty=0 - -#Sets the max number of players allowed on a server. Value must be between 1 and 255 -maxplayers=8 - -#Set the port number -port=7777 - -#Set the server password -password=p@55w0rd - -#Set the message of the day -motd=Please don’t cut the purple trees! - -#Sets the folder where world files will be stored -worldpath=~/.local/share/Terraria/Worlds/ - -#The location of the banlist. Defaults to "banlist.txt" in the working directory. -banlist=banlist.txt - -#Adds addition cheat protection. -secure=1 - -#Sets the server language 1:English, 2:German, 3:Italian, 4:French, 5:Spanish -lang=1 - -#Automatically forward ports with uPNP -#upnp=1 - -#Reduces enemy skipping but increases bandwidth usage. The lower the number the less skipping will happen, but more data is sent. 0 is off. -#npcstream=60 - -#Default system priority 0:Realtime, 1:High, 2:AboveNormal, 3:Normal, 4:BelowNormal, 5:Idle -#priority=1 - diff --git a/Terraria/terrariaserver b/Terraria/terrariaserver index 7811110cf..a7b2b6c8b 100644 --- a/Terraria/terrariaserver +++ b/Terraria/terrariaserver @@ -1,62 +1,93 @@ #!/bin/bash -# Terraria -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs -# Contributor: Bryce Van Dyk (SingingTree) +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Terraria | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161030" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +#### Server Settings #### -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Steam login +## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" steampass="password" -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters ip="0.0.0.0" -updateonstart="off" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care fn_parms(){ parms="-config ${servercfgfullpath}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## SteamCMD Settings +# Server appid +appid="105600" +# Steam App Branch Select +# Allows to opt into the various Steam app branches. Default branch is "". +# Example: "-beta latest_experimental" +branch="" + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Steam -appid="105600" - -# Server Details -servicename="terraria-server" +## LinuxGSM Server Details +# Do not edit gamename="Terraria" engine="terraria" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="terraria-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -65,6 +96,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./TerrariaServer" @@ -72,24 +105,26 @@ servercfg="${servicename}.txt" servercfgdefault="serverconfig.txt" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories #gamelogdir="" # Terraria Doesn't Have a Server Log 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -146,8 +181,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/UnrealTournament/cfg/Engine.ini b/UnrealTournament/cfg/Engine.ini deleted file mode 100644 index 177eaafdb..000000000 --- a/UnrealTournament/cfg/Engine.ini +++ /dev/null @@ -1,3 +0,0 @@ -[/Script/UnrealTournament.UTGameEngine] -bFirstRun=False -RconPassword="" diff --git a/UnrealTournament/cfg/Game.ini b/UnrealTournament/cfg/Game.ini deleted file mode 100644 index 15a1c9159..000000000 --- a/UnrealTournament/cfg/Game.ini +++ /dev/null @@ -1,4 +0,0 @@ -[/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 ff84f9979..d011b93ad 100644 --- a/UnrealTournament/utserver +++ b/UnrealTournament/utserver @@ -1,59 +1,84 @@ #!/bin/bash # Unreal Tournament -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Unreal Tournament | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161030" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +#### Server Settings #### -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +# For CTF: defaultmap="CTF-Face" gametype="CTF" defaultmap="DM-Underland" gametype="DM" -#defaultmap="CTF-Face" -#gametype="CTF" timelimit="10" ip="0.0.0.0" port="7777" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care fn_parms(){ parms="UnrealTournament ${defaultmap}?Game=${gametype}?TimeLimit=${timelimit} -port=${port}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Server Details -servicename="ut-server" +## LinuxGSM Server Details +# Do not edit gamename="Unreal Tournament" engine="unreal4" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ut-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -62,30 +87,34 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/LinuxServer" executabledir="${systemdir}/Engine/Binaries/Linux" executable="./UE4Server-Linux-Shipping" servercfg="Game.ini" servercfgdir="${systemdir}/UnrealTournament/Saved/Config/LinuxServer" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -142,8 +171,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/UnrealTournament2004/ut2k4server b/UnrealTournament2004/ut2k4server index 3c6b76cc6..c8c1f55ee 100644 --- a/UnrealTournament2004/ut2k4server +++ b/UnrealTournament2004/ut2k4server @@ -1,45 +1,79 @@ #!/bin/bash -# Unreal Tournament 2004 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Unreal Tournament 2004 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="DM-Rankin" ip="0.0.0.0" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | fn_parms(){ parms="server ${defaultmap}?game=XGame.xDeathMatch -nohomedir ini=${servercfg} log=${gamelog}" } -# Server Details -servicename="ut2k4-server" +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit gamename="Unreal Tournament 2004" engine="unreal2" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ut2k4-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -48,6 +82,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/System" executabledir="${systemdir}" executable="./ucc-bin" @@ -56,33 +92,28 @@ servercfgdefault="UT2004.ini" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" compressedmapsdir="${rootdir}/Maps-Compressed" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log/server" scriptlogdir="${rootdir}/log/script" consolelogdir="${rootdir}/log/console" -consolelogging="on" - gamelog="${gamelogdir}/${servicename}-game.log" scriptlog="${scriptlogdir}/${servicename}-script.log" consolelog="${consolelogdir}/${servicename}-console.log" emaillog="${scriptlogdir}/${servicename}-email.log" -gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%d-%m-%Y-%H-%M-%S').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" - -# Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" +gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -139,8 +170,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/UnrealTournament3/ut3server b/UnrealTournament3/ut3server index 5788b40ef..b65b633bb 100644 --- a/UnrealTournament3/ut3server +++ b/UnrealTournament3/ut3server @@ -1,32 +1,28 @@ #!/bin/bash -# Unreal Tournament 3 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Unreal Tournament 3 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161030" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +#### Server Settings #### -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters ip="0.0.0.0" port="7777" queryport="25300" @@ -41,26 +37,54 @@ pureserver="1" allowjoininprogress="true" maxplayers="32" -#list of game types and mutators : http://wiki.unrealadmin.org/FAQ:UT3 +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care | List of game types and mutators : http://wiki.unrealadmin.org/FAQ:UT3 fn_parms(){ parms="server ${defaultmap}?Game=${game}?bIsDedicated=${isdedicated}?bIsLanMatch=${islanmatch}?bUsesStats=${usesstats}?bShouldAdvertise=${shouldadvertise}?PureServer=${pureserver}?bAllowJoinInProgress=${allowjoininprogress}?MaxPlayers=${maxplayers}?Mutator=${mutators} -port=${port} -queryport=${queryport} -multihome=${ip} -nohomedir -unattended -log=${gamelog}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Server Details -servicename="ut3-server" +## LinuxGSM Server Details +# Do not edit gamename="Unreal Tournament 3" engine="unreal3" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ut3-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -69,6 +93,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${systemdir}/Binaries" executable="./ut3" @@ -76,26 +102,28 @@ servercfg="${servicename}.ini" servercfgdefault="UTGame.ini" servercfgdir="${systemdir}/UTGame/Config" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${rootdir}/log/server" scriptlogdir="${rootdir}/log/script" consolelogdir="${rootdir}/log/console" -consolelogging="on" - gamelog="${gamelogdir}/${servicename}-game.log" scriptlog="${scriptlogdir}/${servicename}-script.log" consolelog="${consolelogdir}/${servicename}-console.log" emaillog="${scriptlogdir}/${servicename}-email.log" -gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%d-%m-%Y-%H-%M-%S').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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" +gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -152,8 +180,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/UnrealTournament99/ut99server b/UnrealTournament99/ut99server index 652ac3772..8787df657 100644 --- a/UnrealTournament99/ut99server +++ b/UnrealTournament99/ut99server @@ -1,54 +1,79 @@ #!/bin/bash -# Unreal Tournament 99 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Unreal Tournament 99 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" - -#### Variables #### +version="161030" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" -#emailfrom="email@example.com" +#### Server Settings #### -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="DM-Deck16][" ip="0.0.0.0" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care fn_parms(){ parms="server ${defaultmap}.unr ini=${servercfgfullpath}" } -#### Advanced Variables #### +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Server Details -servicename="ut99-server" +## LinuxGSM Server Details +# Do not edit gamename="Unreal Tournament 99" engine="unreal" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="ut99-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -57,6 +82,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}/System" executabledir="${systemdir}" executable="./ucc-bin" @@ -65,24 +92,26 @@ servercfgdefault="Default.ini" servercfgdir="${systemdir}" servercfgfullpath="${servercfgdir}/${servercfg}" compressedmapsdir="${rootdir}/Maps-Compressed" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -139,8 +168,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/WolfensteinEnemyTerritory/cfg/lgsm-default.cfg b/WolfensteinEnemyTerritory/cfg/lgsm-default.cfg deleted file mode 100644 index 326e27fc9..000000000 --- a/WolfensteinEnemyTerritory/cfg/lgsm-default.cfg +++ /dev/null @@ -1,125 +0,0 @@ -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/WolfensteinEnemyTerritory/wetserver b/WolfensteinEnemyTerritory/wetserver index f400c20e6..c4a5a0db8 100644 --- a/WolfensteinEnemyTerritory/wetserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -1,52 +1,81 @@ #!/bin/bash -# Enemy Territory -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Enemy Territory | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -version="211016" +version="161030" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### + +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +# Please use Enemy Territory config file. -# Email +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care +fn_parms(){ + parms="+set net_strict 1 +set fs_homepath ${filesdir} +exec ${servercfg}" +} + +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email emailalert="off" email="email@example.com" -#emailfrom="email@example.com" - -# Pushbullet -# https://www.pushbullet.com/#settings +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Start Variables +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" -fn_parms(){ - parms="+set net_strict 1 +set fs_homepath ${filesdir} +exec ${servercfg}" -} +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" -#### Advanced Variables #### +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -# Github Branch Select +#### LinuxGSM Advanced Settings #### + +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Server Details -servicename="et-server" +## LinuxGSM Server Details +# Do not edit gamename="Wolfenstein: Enemy Territory" engine="idtech3" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="et-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -55,6 +84,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${systemdir}" executable="./etded" @@ -62,24 +93,26 @@ servercfg="${servicename}.cfg" servercfgdefault="server.cfg" servercfgdir="${systemdir}/etmain" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories 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" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ @@ -136,8 +169,18 @@ functionfile="${FUNCNAME}" fn_fetch_core_dl } +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + core_dl.sh core_functions.sh - getopt=$1 -core_getopt.sh +core_getopt.sh \ No newline at end of file diff --git a/lgsm/functions/check_config.sh b/lgsm/functions/check_config.sh index 9ad4c7baa..72ea95c5c 100644 --- a/lgsm/functions/check_config.sh +++ b/lgsm/functions/check_config.sh @@ -15,7 +15,8 @@ if [ ! -e "${servercfgfullpath}" ]; then echo "${servercfgfullpath}" fn_script_log_warn "Configuration file missing!" fn_script_log_warn "${servercfgfullpath}" - sleep 2 + sleep 1 + install_config.sh fi fi diff --git a/lgsm/functions/check_steamcmd.sh b/lgsm/functions/check_steamcmd.sh index 06e941ff4..20a36afea 100644 --- a/lgsm/functions/check_steamcmd.sh +++ b/lgsm/functions/check_steamcmd.sh @@ -27,13 +27,12 @@ fn_check_steamcmd_user(){ fi # Anonymous user is set if steamuser is missing if [ -z "${steamuser}" ]; then - fn_print_error_nl "Steam login not set. Using anonymous login." if [ -d "${scriptlogdir}" ]; then - fn_script_log_error "Steam login not set. Using anonymous login." + fn_script_log_info "Using anonymous Steam login." fi steamuser="anonymous" steampass="" - sleep 2 + sleep 1 fi } @@ -69,4 +68,4 @@ fn_check_steamcmd_guard(){ fn_check_steamcmd_user fn_check_steamcmd_sh # stdbuf has now replaced unbuffer. This should not longer be required. -#fn_check_steamcmd_guard \ No newline at end of file +#fn_check_steamcmd_guard diff --git a/lgsm/functions/check_tmuxception.sh b/lgsm/functions/check_tmuxception.sh index d23fd88a4..5b906f53e 100644 --- a/lgsm/functions/check_tmuxception.sh +++ b/lgsm/functions/check_tmuxception.sh @@ -10,7 +10,7 @@ local commandname="check" fn_check_is_in_tmux(){ if [ -n "${TMUX}" ];then fn_print_fail_nl "tmuxception error: Sorry Cobb you cannot start a tmux session inside of a tmux session." - fn_script_log_fatal "tmuxception error: Attempted to start a tmux session inside of a tmux session." + fn_script_log_fatal "Tmuxception error: Attempted to start a tmux session inside of a tmux session." fn_print_information_nl "LGSM creates a tmux session when starting the server." echo "It is not possible to run a tmux session inside another tmux session" echo "https://github.com/GameServerManagers/LinuxGSM/wiki/Tmux#tmuxception" @@ -18,9 +18,9 @@ fn_check_is_in_tmux(){ fi } fn_check_is_in_screen(){ - if [ "$TERM" == "screen" ];then + if [ -n "${STY}" ];then fn_print_fail_nl "tmuxception error: Sorry Cobb you cannot start a tmux session inside of a screen session." - fn_script_log_fatal "tmuxception error: Attempted to start a tmux session inside of a screen session." + fn_script_log_fatal "Tmuxception error: Attempted to start a tmux session inside of a screen session." fn_print_information_nl "LGSM creates a tmux session when starting the server." echo "It is not possible to run a tmux session inside screen session" echo "https://github.com/GameServerManagers/LinuxGSM/wiki/Tmux#tmuxception" diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index ca6fe9607..34d014c42 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -1,6 +1,7 @@ #!/bin/bash # LGSM command_backup.sh function # Author: Daniel Gibbs +# Contributor: UltimateByte # Website: https://gameservermanagers.com # Description: Creates a .tar.gz file in the backup directory. @@ -9,51 +10,193 @@ local commandaction="Backup" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh -info_distro.sh -backupname="${servicename}-$(date '+%Y-%m-%d-%H%M%S')" -fn_print_dots "" -sleep 0.5 -fn_print_info_nl "A total of ${rootdirduexbackup} will be compressed into the following backup:" -echo "${backupdir}/${backupname}.tar.gz" -echo "" -while true; do - read -e -i "y" -p "Continue? [Y/N]" yn - case $yn in - [Yy]* ) break;; - [Nn]* ) echo Exiting; return;; - * ) echo "Please answer yes or no.";; -esac -done -echo "" -check_status.sh -if [ "${status}" != "0" ]; then + +# Trap to remove lockfile on quit. +fn_backup_trap(){ echo "" - fn_print_warning_nl "${servicename} is currently running." + echo -ne "backup ${backupname}.tar.gz..." + fn_print_canceled_eol_nl + fn_script_log_info "backup ${backupname}.tar.gz: CANCELED" + sleep 1 + rm -f "${backupdir}/${backupname}.tar.gz" | tee -a "${scriptlog}" + echo -ne "backup ${backupname}.tar.gz..." + fn_print_removed_eol_nl + fn_script_log_info "backup ${backupname}.tar.gz: REMOVED" + # Remove lock file + rm -f "${tmpdir}/.backup.lock" + core_exit.sh +} + +# Check if a backup is pending or has been aborted using .backup.lock +fn_backup_check_lockfile(){ + if [ -f "${tmpdir}/.backup.lock" ]; then + fn_print_info_nl "Lock file found: Backup is currently running" + fn_script_log_error "Lock file found: Backup is currently running: ${tmpdir}/.backup.lock" + core_exit.sh + fi +} + +# Initialisation +fn_backup_init(){ + # Backup file name with servicename and current date + backupname="${servicename}-$(date '+%Y-%m-%d-%H%M%S')" + + info_distro.sh + fn_print_dots "Backup starting" + fn_script_log_info "Backup starting" + sleep 1 + fn_print_ok "Backup starting" sleep 1 - while true; do - read -p "Stop ${servicename} while running the backup? [Y/N]" yn - case $yn in - [Yy]* ) command_stop.sh; break;; - [Nn]* ) break;; - * ) echo "Please answer yes or no.";; - esac - done -fi - -fn_print_dots "Backup in progress, please wait..." -fn_script_log_info "Started backup" -sleep 2 -if [ ! -d "${backupdir}" ]; then - mkdir "${backupdir}" -fi -tar -czf "${backupdir}/${backupname}.tar.gz" -C "${rootdir}" --exclude "backups" ./* -if [ $? == 0 ]; then - fn_print_ok_nl "Backup created: ${backupname}.tar.gz is $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}') size" - fn_script_log_pass "Backup created: ${backupdir}/${backupname}.tar.gz is $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}') size" -else - fn_print_error_nl "Backup failed: ${backupname}.tar.gz" - fn_script_log_error "Backup failed: ${backupname}.tar.gz" -fi -sleep 1 -echo "" + echo -ne "\n" + if [ ! -d "${backupdir}" ]||[ "${backupcount}" == "0" ]; then + fn_print_info_nl "There are no previous backups" + else + if [ "${lastbackupdaysago}" == "0" ]; then + daysago="less than 1 day ago" + elif [ "${lastbackupdaysago}" == "1" ]; then + daysago="1 day ago" + else + daysago="${lastbackupdaysago} days ago" + fi + echo " * Previous backup was created ${daysago}, total size ${lastbackupsize}" + sleep 1 + fi +} + + +# Check if server is started and wether to stop it +fn_backup_stop_server(){ + check_status.sh + # Server is stopped + if [ "${status}" == "0" ]; then + serverstopped="no" + # Server is running and stoponbackup=off + elif [ "${stoponbackup}" == "off" ]; then + serverstopped="no" + fn_print_warn_nl "${servicename} is currently running" + echo " * Although unlikely; creating a backup while ${servicename} is running might corrupt the backup." + fn_script_log_warn "${servicename} is currently running" + fn_script_log_warn "Although unlikely; creating a backup while ${servicename} is running might corrupt the backup" + # Server is running and will be stopped if stoponbackup=on or unset + else + fn_print_warn_nl "${servicename} will be stopped during the backup" + fn_script_log_warn "${servicename} will be stopped during the backup" + sleep 4 + serverstopped="yes" + exitbypass=1 + command_stop.sh + fi +} + +# Create required folders +fn_backup_dir(){ + # Create backupdir if it doesn't exist + if [ ! -d "${backupdir}" ]; then + mkdir -p "${backupdir}" + fi +} + +fn_backup_create_lockfile(){ + # Create lockfile + date > "${tmpdir}/.backup.lock" + fn_script_log_info "Lockfile generated" + fn_script_log_info "${tmpdir}/.backup.lock" + # trap to remove lockfile on quit. + trap fn_backup_trap INT +} + +# Compressing files +fn_backup_compression(){ + # Tells how much will be compressed using rootdirduexbackup value from info_distro and prompt for continue + fn_print_info "A total of ${rootdirduexbackup} will be compressed." + fn_script_log_info "A total of ${rootdirduexbackup} will be compressed: ${backupdir}/${backupname}.tar.gz" + sleep 2 + fn_print_dots "Backup (${rootdirduexbackup}) ${backupname}.tar.gz, in progress..." + fn_script_log_info "backup ${rootdirduexbackup} ${backupname}.tar.gz, in progress" + tar -czf "${backupdir}/${backupname}.tar.gz" -C "${rootdir}" --exclude "backups" ./* + local exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol + fn_script_log_fatal "Backup in progress: FAIL" + echo "${tarcmd}" | tee -a "${scriptlog}" + fn_print_fail_nl "Starting backup" + fn_script_log_fatal "Starting backup" + else + fn_print_ok_eol + sleep 1 + fn_print_ok_nl "Completed: ${backupname}.tar.gz, total size $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}')" + fn_script_log_pass "Backup created: ${backupname}.tar.gz, total size $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}')" + fi +} + +# Clear old backups according to maxbackups and maxbackupdays variables +fn_backup_prune(){ + # How many backups there are + info_distro.sh + # How many backups exceed maxbackups + backupquotadiff=$((backupcount-maxbackups)) + # How many backups exceed maxbackupdays + backupsoudatedcount=$(find "${backupdir}"/ -type f -name "*.tar.gz" -mtime +"${maxbackupdays}"|wc -l) + # If backup variables are set + if [ -n "${maxbackupdays}" ]&&[ -n "${maxbackups}" ]; then + # If anything can be cleared + if [ "${backupquotadiff}" -gt "0" ]||[ "${backupsoudatedcount}" -gt "0" ]; then + fn_print_dots "Pruning" + fn_script_log_info "Backup pruning activated" + sleep 1 + fn_print_ok_nl "Pruning" + sleep 1 + # If maxbackups greater or equal to backupsoutdatedcount, then it is over maxbackupdays + if [ "${backupquotadiff}" -ge "${backupsoudatedcount}" ]; then + # Display how many backups will be cleared + echo " * Pruning: ${backupquotadiff} backup(s) has exceeded the ${maxbackups} backups limit" + fn_script_log_info "Pruning: ${backupquotadiff} backup(s) has exceeded the ${maxbackups} backups limit" + sleep 1 + fn_print_dots "Pruning: Clearing ${backupquotadiff} backup(s)" + fn_script_log_info "Pruning: Clearing ${backupquotadiff} backup(s)" + sleep 1 + # Clear backups over quota + find "${backupdir}"/ -type f -name "*.tar.gz" -printf '%T@ %p\n' | sort -rn | tail -${backupquotadiff} | cut -f2- -d" " | xargs rm + fn_print_ok_nl "Pruning: Clearing ${backupquotadiff} backup(s)" + fn_script_log_pass "Pruning: Cleared ${backupquotadiff} backup(s)" + # If maxbackupdays is used over maxbackups + elif [ "${backupquotadiff}" -lt "${backupsoudatedcount}" ]; then + # Display how many backups will be cleared + echo " * Pruning: ${backupsoudatedcount} backup(s) are older than ${maxbackupdays} days." + fn_script_log_info "Pruning: ${backupsoudatedcount} backup(s) older than ${maxbackupdays} days." + sleep 1 + fn_print_dots "Pruning: Clearing ${backupquotadiff} backup(s)." + fn_script_log_info "Pruning: Clearing ${backupquotadiff} backup(s)" + sleep 1 + # Clear backups over quota + find "${backupdir}"/ -type f -mtime +"${maxbackupdays}" -exec rm -f {} \; + fn_print_ok_nl "Pruning: Clearing ${backupquotadiff} backup(s)" + fn_script_log_pass "Pruning: Cleared ${backupquotadiff} backup(s)" + fi + sleep 1 + fi + fi +} + +# Restart the server if it was stopped for the backup +fn_backup_start_server(){ + if [ "${serverstopped}" == "yes" ]; then + exitbypass=1 + command_start.sh + fi +} + +# Run functions +fn_backup_check_lockfile +fn_backup_create_lockfile +fn_backup_init +fn_backup_stop_server +fn_backup_dir +fn_backup_compression +fn_backup_prune +fn_backup_start_server + +# Remove lock file +rm -f "${tmpdir}/.backup.lock" + core_exit.sh diff --git a/lgsm/functions/command_debug.sh b/lgsm/functions/command_debug.sh index 98bd3082c..ac1d0add8 100644 --- a/lgsm/functions/command_debug.sh +++ b/lgsm/functions/command_debug.sh @@ -10,7 +10,7 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" # Trap to remove lockfile on quit. fn_lockfile_trap(){ - # Remove lock file + # Remove lockfile rm -f "${rootdir}/${lockselfname}" # resets terminal. Servers can sometimes mess up the terminal on exit. reset @@ -87,8 +87,10 @@ fn_script_log_info "Starting debug" sleep 1 fn_print_ok_nl "Starting debug" -# create lock file. +# Create lockfile date > "${rootdir}/${lockselfname}" +fn_script_log_info "Lockfile generated" +fn_script_log_info "${rootdir}/${lockselfname}" # trap to remove lockfile on quit. trap fn_lockfile_trap INT diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 22f8e2a5f..5743e17b0 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -262,7 +262,13 @@ fn_details_backup(){ { echo -e "${blue}No. of backups:\t${default}${backupcount}" echo -e "${blue}Latest backup:${default}" - echo -e "${blue} date:\t${default}${lastbackupdate}" + if [ "${lastbackupdaysago}" == "0" ]; then + echo -e "${blue} date:\t${default}${lastbackupdate} (less than 1 day ago)" + elif [ "${lastbackupdaysago}" == "1" ]; then + echo -e "${blue} date:\t${default}${lastbackupdate} (1 day ago)" + else + echo -e "${blue} date:\t${default}${lastbackupdate} (${lastbackupdaysago} days ago)" + fi echo -e "${blue} file:\t${default}${lastbackup}" echo -e "${blue} size:\t${default}${lastbackupsize}" } | column -s $'\t' -t diff --git a/lgsm/functions/command_monitor.sh b/lgsm/functions/command_monitor.sh index b11015e40..3c6d7fad4 100644 --- a/lgsm/functions/command_monitor.sh +++ b/lgsm/functions/command_monitor.sh @@ -13,8 +13,8 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" fn_monitor_check_lockfile(){ # Monitor does not run it lockfile is not found if [ ! -f "${rootdir}/${lockselfname}" ]; then - fn_print_error_nl "Disabled: No lock file found" - fn_script_log_error "Disabled: No lock file found" + fn_print_error_nl "Disabled: No lockfile found" + fn_script_log_error "Disabled: No lockfile found" echo " * To enable monitor run ./${selfname} start" core_exit.sh fi diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index f7f324bf1..57dcbfa60 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -33,7 +33,7 @@ fn_start_teamspeak3(){ fi mv "${scriptlog}" "${scriptlogdate}" - # Create lock file + # Create lockfile date > "${rootdir}/${lockselfname}" cd "${executabledir}" if [ "${ts3serverpass}" == "1" ];then @@ -78,7 +78,7 @@ fn_start_tmux(){ core_exit.sh fi - # Create lock file + # Create lockfile date > "${rootdir}/${lockselfname}" cd "${executabledir}" tmux new-session -d -s "${servicename}" "${executable} ${parms}" 2> "${scriptlogdir}/.${servicename}-tmux-error.tmp" diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index 489013e3d..95aa10536 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -234,7 +234,7 @@ fn_stop_teamspeak3(){ ${filesdir}/ts3server_startscript.sh stop > /dev/null 2>&1 check_status.sh if [ "${status}" == "0" ]; then - # Remove lock file + # Remove lockfile rm -f "${rootdir}/${lockselfname}" fn_print_ok_nl "${servername}" fn_script_log_pass "Stopped ${servername}" @@ -253,7 +253,7 @@ fn_stop_mumble(){ sleep 1 check_status.sh if [ "${status}" == "0" ]; then - # Remove lock file + # Remove lockfile rm -f "${rootdir}/${lockselfname}" fn_stop_tmux fn_script_log_pass "Stopped ${servername}" @@ -272,7 +272,7 @@ fn_stop_tmux(){ sleep 0.5 check_status.sh if [ "${status}" == "0" ]; then - # Remove lock file + # Remove lockfile rm -f "${rootdir}/${lockselfname}" # ARK doesn't clean up immediately after tmux is killed. # Make certain the ports are cleared before continuing. diff --git a/lgsm/functions/core_dl.sh b/lgsm/functions/core_dl.sh index e6e563fc7..6d971b997 100644 --- a/lgsm/functions/core_dl.sh +++ b/lgsm/functions/core_dl.sh @@ -78,14 +78,14 @@ fn_dl_extract(){ # Trap to remove file download if canceled before completed fn_fetch_trap(){ echo "" - echo -ne "downloading ${filename}: " + echo -ne "downloading ${filename}..." fn_print_canceled_eol_nl - fn_script_log_info "downloading ${filename}: CANCELED" + fn_script_log_info "downloading ${filename}...CANCELED" sleep 1 rm -f "${filedir}/${filename}" | tee -a "${scriptlog}" - echo -ne "downloading ${filename}: " + echo -ne "downloading ${filename}..." fn_print_removed_eol_nl - fn_script_log_info "downloading ${filename}: REMOVED" + fn_script_log_info "downloading ${filename}...REMOVED" core_exit.sh } diff --git a/lgsm/functions/core_messages.sh b/lgsm/functions/core_messages.sh index 98814cf03..540729af7 100644 --- a/lgsm/functions/core_messages.sh +++ b/lgsm/functions/core_messages.sh @@ -350,4 +350,4 @@ fn_print_update_eol(){ fn_print_update_eol_nl(){ echo -e "${cyan}UPDATE${default}" -} \ No newline at end of file +} diff --git a/lgsm/functions/info_distro.sh b/lgsm/functions/info_distro.sh index a203a2c47..cc4037d72 100644 --- a/lgsm/functions/info_distro.sh +++ b/lgsm/functions/info_distro.sh @@ -73,6 +73,9 @@ physmemtotalmb=$(free -m | awk '/Mem:/ {print $2}') physmemused=$(free ${humanreadable} | awk '/Mem:/ {print $3}') physmemfree=$(free ${humanreadable} | awk '/Mem:/ {print $4}') physmemcached=$(free ${humanreadable} | awk '/cache:/ {print $4}') +if [ -z "${physmemcached}" ]; then + physmemcached=$(free ${humanreadable} | awk '/Mem:/ {print $5}') +fi swaptotal=$(free ${humanreadable} | awk '/Swap:/ {print $2}') swapused=$(free ${humanreadable} | awk '/Swap:/ {print $3}') swapfree=$(free ${humanreadable} | awk '/Swap:/ {print $4}') @@ -105,19 +108,23 @@ fi ## Backup info if [ -d "${backupdir}" ]; then - # used space in backups dir. + # Ued space in backups dir. backupdirdu=$(du -sh "${backupdir}" | awk '{print $1}') + # If no backup dir, size is 0M if [ -z "${backupdirdu}" ]; then backupdirdu="0M" fi - - # number of backups. - backupcount=$(find "${backupdir}"/*.tar.gz | wc -l) - # most recent backup. - lastbackup=$(ls -t "${backupdir}"/*.tar.gz | head -1) - # date of most recent backup. - lastbackupdate=$(date -r "${lastbackup}") - # size of most recent backup. - lastbackupsize=$(du -h "${lastbackup}" | awk '{print $1}') - + # If there are backups in backup dir. + if [ $(find "${backupdir}" -name "*.tar.gz" | wc -l) -ne "0" ]; then + # number of backups. + backupcount=$(find "${backupdir}"/*.tar.gz | wc -l) + # most recent backup. + lastbackup=$(ls -t "${backupdir}"/*.tar.gz | head -1) + # date of most recent backup. + lastbackupdate=$(date -r "${lastbackup}") + # no of days since last backup. + lastbackupdaysago=$(( ( $(date +'%s') - $(date -r "${lastbackup}" +'%s') )/60/60/24 )) + # size of most recent backup. + lastbackupsize=$(du -h "${lastbackup}" | awk '{print $1}') + fi fi diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index ad219cc4b..bdd7cb23e 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -274,7 +274,6 @@ elif [ "${gamename}" == "Mumble" ]; then array_configs+=( murmur.ini ) fn_fetch_default_config fn_default_config_remote - fn_set_config_vars elif [ "${gamename}" == "Natural Selection 2" ]; then : elif [ "${gamename}" == "NS2: Combat" ]; then @@ -325,10 +324,10 @@ elif [ "${gamename}" == "Ricochet" ]; then fn_set_config_vars elif [ "${gamename}" == "Rust" ]; then gamedirname="Rust" + fn_check_cfgdir array_configs+=( server.cfg ) fn_fetch_default_config fn_default_config_remote - fn_set_config_vars elif [ "${gamename}" == "Serious Sam 3: BFE" ]; then gamedirname="SeriousSam3BFE" array_configs+=( server.ini ) @@ -364,7 +363,6 @@ elif [ "${gamename}" == "TeamSpeak 3" ]; then array_configs+=( ts3server.ini ) fn_fetch_default_config fn_default_config_remote - fn_set_config_vars elif [ "${gamename}" == "Teeworlds" ]; then gamedirname="Teeworlds" array_configs+=( server.cfg ctf.cfg dm.cfg duel.cfg tdm.cfg ) diff --git a/lgsm/functions/logs.sh b/lgsm/functions/logs.sh index 4bf9ab903..32ad0deae 100644 --- a/lgsm/functions/logs.sh +++ b/lgsm/functions/logs.sh @@ -29,6 +29,9 @@ fi # Log manager will start the cleanup if it finds logs older than "${logdays}" if [ $(find "${scriptlogdir}"/ -type f -mtime +"${logdays}"|wc -l) -ne "0" ]; then fn_print_dots "Starting" + # Set common logs directories + commonlogs="${systemdir}/logs" + commonsourcelogs="${systemdir}/*/logs" # Set addon logs directories sourcemodlogdir="${systemdir}/addons/sourcemod/logs" ulxlogdir="${systemdir}/data/ulx_logs" @@ -57,6 +60,17 @@ if [ $(find "${scriptlogdir}"/ -type f -mtime +"${logdays}"|wc -l) -ne "0" ]; th consolecount=$(find "${consolelogdir}"/ -type f -mtime +"${logdays}"|wc -l) find "${consolelogdir}"/ -mtime +"${logdays}" -type f -exec rm -f {} \; fi + # Common logfiles + if [ -d ${commonlogs} ]; then + find "${commonlogs}"/ -type f -mtime +"${logdays}"| tee >> "${scriptlog}" + smcount=$(find "${commonlogs}"/ -type f -mtime +"${logdays}"|wc -l) + find "${commonlogs}"/ -mtime +"${logdays}" -type f -exec rm -f {} \; + fi + if [ -d ${commonsourcelogs} ]; then + find "${commonsourcelogs}"/* -type f -mtime +"${logdays}"| tee >> "${scriptlog}" + smcount=$(find "${commonsourcelogs}"/* -type f -mtime +"${logdays}"|wc -l) + find "${commonsourcelogs}"/* -mtime +"${logdays}" -type f -exec rm -f {} \; + fi # Source addons logfiles if [ "${engine}" == "source" ]; then # SourceMod logfiles diff --git a/lgsm/functions/update_steamcmd.sh b/lgsm/functions/update_steamcmd.sh index 574fbe2b9..37b48781d 100644 --- a/lgsm/functions/update_steamcmd.sh +++ b/lgsm/functions/update_steamcmd.sh @@ -8,8 +8,9 @@ local commandname="UPDATE" local commandaction="Update" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" +check.sh + fn_update_steamcmd_dl(){ - check.sh info_config.sh fn_print_dots "SteamCMD" sleep 1 @@ -235,4 +236,4 @@ if [ "${engine}" == "goldsource" ]||[ "${forceupdate}" == "1" ]; then else fn_update_request_log fn_update_steamcmd_check -fi \ No newline at end of file +fi From 1a5fc1471b95e551301aa6064e525c3c842dd672 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 31 Oct 2016 22:13:37 +0000 Subject: [PATCH 239/246] Fixes bug allowing backups to show when there are no backups Backups were being displayed in details even if the backups dir did not contain backups --- lgsm/functions/info_distro.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/info_distro.sh b/lgsm/functions/info_distro.sh index cc4037d72..4b07d537b 100644 --- a/lgsm/functions/info_distro.sh +++ b/lgsm/functions/info_distro.sh @@ -108,16 +108,16 @@ fi ## Backup info if [ -d "${backupdir}" ]; then - # Ued space in backups dir. + # Used space in backups dir. backupdirdu=$(du -sh "${backupdir}" | awk '{print $1}') # If no backup dir, size is 0M if [ -z "${backupdirdu}" ]; then backupdirdu="0M" fi + # number of backups. + backupcount=$(find "${backupdir}"/*.tar.gz | wc -l) # If there are backups in backup dir. if [ $(find "${backupdir}" -name "*.tar.gz" | wc -l) -ne "0" ]; then - # number of backups. - backupcount=$(find "${backupdir}"/*.tar.gz | wc -l) # most recent backup. lastbackup=$(ls -t "${backupdir}"/*.tar.gz | head -1) # date of most recent backup. From fb918470e4996f1ec0e5a5a0e5fbf9396dc90f7b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 31 Oct 2016 22:13:56 +0000 Subject: [PATCH 240/246] removed return --- lgsm/functions/info_config.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 7982ebd69..63ec0a85d 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -103,7 +103,6 @@ fn_info_config_minecraft(){ gamemode="${unavailable}" gameworld="${unavailable}" else - servername=$(grep "motd" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/motd//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') rconpassword=$(grep "rcon.password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/rcon.password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') rconport=$(grep "rcon.port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') From c896c1b25d80efab079c9940c4459215a53f3314 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 31 Oct 2016 22:20:51 +0000 Subject: [PATCH 241/246] backupcount=0 by default Previous solution 1a5fc1471b95e551301aa6064e525c3c842dd672 caused issue with the find command showing an error. --- lgsm/functions/info_distro.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/info_distro.sh b/lgsm/functions/info_distro.sh index 4b07d537b..16973cfc1 100644 --- a/lgsm/functions/info_distro.sh +++ b/lgsm/functions/info_distro.sh @@ -114,10 +114,14 @@ if [ -d "${backupdir}" ]; then if [ -z "${backupdirdu}" ]; then backupdirdu="0M" fi - # number of backups. - backupcount=$(find "${backupdir}"/*.tar.gz | wc -l) + + # number of backups set to 0 by default + backupcount=0 + # If there are backups in backup dir. if [ $(find "${backupdir}" -name "*.tar.gz" | wc -l) -ne "0" ]; then + # number of backups. + backupcount=$(find "${backupdir}"/*.tar.gz | wc -l) # most recent backup. lastbackup=$(ls -t "${backupdir}"/*.tar.gz | head -1) # date of most recent backup. From f7a2ec60fca9ee6e960baba1793d668b21791425 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 1 Nov 2016 21:29:09 +0100 Subject: [PATCH 242/246] Fixes #991 (#1165) * stbuf will no longer be used on x64 #991 --- lgsm/functions/install_server_files.sh | 7 ++++--- lgsm/functions/update_steamcmd.sh | 5 +++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 7f4072a81..00e8abc08 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -61,8 +61,9 @@ fn_install_server_files_steamcmd(){ check_steamcmd.sh fi - # Detects if unbuffer command is available. - if [ $(command -v stdbuf) ]; then + # Detects if unbuffer command is available for 32 bit distributions only. + info_distro.sh + if [ $(command -v stdbuf) ]&&[ "${arch}" != "x86_64" ]; then unbuffer="stdbuf -i0 -o0 -e0" fi @@ -134,4 +135,4 @@ if [ -z "${autoinstall}" ]; then * ) echo "Please answer yes or no.";; esac done -fi \ No newline at end of file +fi diff --git a/lgsm/functions/update_steamcmd.sh b/lgsm/functions/update_steamcmd.sh index 37b48781d..167daf5fb 100644 --- a/lgsm/functions/update_steamcmd.sh +++ b/lgsm/functions/update_steamcmd.sh @@ -19,8 +19,9 @@ fn_update_steamcmd_dl(){ cd "${rootdir}/steamcmd" - # Detects if unbuffer command is available. - if [ $(command -v stdbuf) ]; then + # Detects if unbuffer command is available for 32 bit distributions only. + info_distro.sh + if [ $(command -v stdbuf) ]&&[ "${arch}" != "x86_64" ]; then unbuffer="stdbuf -i0 -o0 -e0" fi From c978dde5c9d449e66216a4023a029553538c2a41 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 2 Nov 2016 18:00:58 +0000 Subject: [PATCH 243/246] Added BF1942 ncurses requirement to CentOS --- lgsm/functions/check_deps.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index eb9d21f03..c0c5cf9ec 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -254,6 +254,9 @@ elif [ -n "$(command -v yum)" ]; then # Brainbread 2 and Don't Starve Together elif [ "${gamename}" == "Brainbread 2" ]||[ "${gamename}" == "Don't Starve Together" ]; then array_deps_required+=( libcurl.i686 ) + # Battlefield: 1942 + elif [ "${gamename}" == "Battlefield: 1942" ]; then + array_deps_required+=( ncurses-libs.i686 ) # Project Zomboid and Minecraft elif [ "${engine}" == "projectzomboid" ]||[ "${engine}" == "lwjgl2" ]; then javaversion=$(java -version 2>&1 | grep "version") From 1e0215734d21437fe1e4d56965f331b7dcb07e17 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 2 Nov 2016 18:12:58 +0000 Subject: [PATCH 244/246] Updated comment --- lgsm/functions/check_deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index c0c5cf9ec..3f0c0eb55 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -185,7 +185,7 @@ if [ -n "$(command -v dpkg-query)" ]; then # Brainbread 2 and Don't Starve Together elif [ "${gamename}" == "Brainbread 2" ]||[ "${gamename}" == "Don't Starve Together" ]; then array_deps_required+=( libcurl4-gnutls-dev:i386 ) - # Battlefield: 1942 requies ncurses + # Battlefield: 1942 elif [ "${gamename}" == "Battlefield: 1942" ]; then array_deps_required+=( libncurses5:i386 ) # Project Zomboid and Minecraft From 7d16230522752d216d9920c4b9785b89b26beca0 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Wed, 2 Nov 2016 14:50:48 -0400 Subject: [PATCH 245/246] adding Call of Duty (#1118) * adding codserver Call of Duty 1 --- CallOfDuty/codserver | 185 +++++++++++++++++++++++++ lgsm/functions/check_deps.sh | 6 + lgsm/functions/command_details.sh | 11 ++ lgsm/functions/command_install.sh | 2 +- lgsm/functions/core_getopt.sh | 2 +- lgsm/functions/fix_glibc.sh | 2 +- lgsm/functions/info_config.sh | 16 +++ lgsm/functions/info_glibc.sh | 3 + lgsm/functions/install_config.sh | 6 + lgsm/functions/install_server_files.sh | 2 + 10 files changed, 232 insertions(+), 3 deletions(-) create mode 100755 CallOfDuty/codserver diff --git a/CallOfDuty/codserver b/CallOfDuty/codserver new file mode 100755 index 000000000..ae19879e8 --- /dev/null +++ b/CallOfDuty/codserver @@ -0,0 +1,185 @@ +#!/bin/bash +# Project: Game Server Managers - LinuxGSM +# Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Call of Duty | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki +# Website: https://gameservermanagers.com + +# Debugging +if [ -f ".dev-debug" ]; then + exec 5>dev-debug.log + BASH_XTRACEFD="5" + set -x +fi + +version="161030" + +########################## +######## Settings ######## +########################## + +#### Server Settings #### + +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +defaultmap="mp_neuville" +maxclients="20" +port="28960" +ip="0.0.0.0" + +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +fn_parms(){ +parms="+set sv_punkbuster 0 +set fs_basepath ${filesdir} +set dedicated 1 +set net_ip ${ip} +set net_port ${port} +set sv_maxclients ${maxclients} +exec ${servercfg} +map ${defaultmap}" +} + +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### Advanced Variables #### + +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit +gamename="Call of Duty" +engine="idtech3" + +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="cod-server" + +#### Directories #### +# Edit with care + +## Work 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" +tmpdir="${lgsmdir}/tmp" +filesdir="${rootdir}/serverfiles" + +## Server Specific Directories +systemdir="${filesdir}" +executabledir="${filesdir}" +executable="./cod_lnxded" +servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" +servercfgdir="${systemdir}/main" +servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory +backupdir="${rootdir}/backups" + +## Logging Directories +gamelogdir="${filesdir}/Logs" +scriptlogdir="${rootdir}/log/script" +consolelogdir="${rootdir}/log/console" +scriptlog="${scriptlogdir}/${servicename}-script.log" +consolelog="${consolelogdir}/${servicename}-console.log" +emaillog="${scriptlogdir}/${servicename}-email.log" + +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%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 +} + +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + +core_dl.sh +core_functions.sh +getopt=$1 +core_getopt.sh \ No newline at end of file diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 3f0c0eb55..75b99a70a 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -188,6 +188,9 @@ if [ -n "$(command -v dpkg-query)" ]; then # Battlefield: 1942 elif [ "${gamename}" == "Battlefield: 1942" ]; then array_deps_required+=( libncurses5:i386 ) + # Call of Duty + elif [ "${gamename}" == "Call of Duty" ]; then + array_deps_required+=( libstdc++5:i386 ) # Project Zomboid and Minecraft elif [ "${engine}" == "projectzomboid" ]||[ "${engine}" == "lwjgl2" ]; then javaversion=$(java -version 2>&1 | grep "version") @@ -257,6 +260,9 @@ elif [ -n "$(command -v yum)" ]; then # Battlefield: 1942 elif [ "${gamename}" == "Battlefield: 1942" ]; then array_deps_required+=( ncurses-libs.i686 ) + # Call of Duty + elif [ "${gamename}" == "Call of Duty" ]; then + array_deps_required+=( compat-libstdc++-33.i686 ) # Project Zomboid and Minecraft elif [ "${engine}" == "projectzomboid" ]||[ "${engine}" == "lwjgl2" ]; then javaversion=$(java -version 2>&1 | grep "version") diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 5743e17b0..4f39fe2ef 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -341,6 +341,15 @@ fn_details_avalanche(){ } | column -s $'\t' -t } +fn_details_cod(){ + echo -e "netstat -atunp | grep cod_lnxded" + echo -e "" + { + echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" + echo -e "> Game\tINBOUND\t${port}\tudp" + } | column -s $'\t' -t +} + fn_details_dontstarve(){ echo -e "netstat -atunp | grep dontstarve" echo -e "" @@ -698,6 +707,8 @@ fn_display_details() { fn_details_sdtd elif [ "${gamename}" == "ARK: Survivial Evolved" ]; then fn_details_ark + elif [ "${gamename}" == "Call of Duty" ]; then + fn_details_cod elif [ "${gamename}" == "Hurtworld" ]; then fn_details_hurtworld elif [ "${gamename}" == "QuakeWorld" ]; then diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index d2feadb05..43dc9daf5 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}" == "Battlefield: 1942" ]||[ "${gamename}" == "Minecraft" ]||[ "${gamename}" == "Quake 2" ]||[ "${gamename}" == "Quake 3: Arena" ]||[ "${gamename}" == "QuakeWorld" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament 3" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Mumble" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then +elif [ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Call of Duty" ]||[ "${gamename}" == "Minecraft" ]||[ "${gamename}" == "Quake 2" ]||[ "${gamename}" == "Quake 3: Arena" ]||[ "${gamename}" == "QuakeWorld" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament 3" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Mumble" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then installer=1 install_server_files.sh elif [ -n "${appid}" ]; then diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index d07f82d04..d629e3711 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -622,7 +622,7 @@ case "${getopt}" in if [ "${gamename}" == "Mumble" ]; then fn_getopt_mumble -elif [ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "QuakeWorld" ]||[ "${gamename}" == "Quake 2" ]||[ "${gamename}" == "Quake 3: Arena" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then +elif [ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Call of Duty" ]||[ "${gamename}" == "QuakeWorld" ]||[ "${gamename}" == "Quake 2" ]||[ "${gamename}" == "Quake 3: Arena" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fn_getopt_generic_no_update elif [ "${engine}" == "lwjgl2" ]; then fn_getopt_minecraft diff --git a/lgsm/functions/fix_glibc.sh b/lgsm/functions/fix_glibc.sh index 6408e3339..5abc18e9a 100644 --- a/lgsm/functions/fix_glibc.sh +++ b/lgsm/functions/fix_glibc.sh @@ -40,4 +40,4 @@ do fi done -export LD_LIBRARY_PATH=:"${libdir}" \ No newline at end of file +export LD_LIBRARY_PATH=:"${libdir}" diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 63ec0a85d..46e7445a6 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -66,6 +66,19 @@ fn_info_config_bf1942(){ fi } +fn_info_config_cod(){ + if [ ! -f "${servercfgfullpath}" ]; then + servername="${unavailable}" + rconpassword="${unavailable}" + else + servername=$(grep "sv_hostname " "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname //g' | tr -d '=\";,:' | xargs) + rconpassword=$(grep "rconpassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set rconpassword //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + + # Not Set + servername=${servername:-"NOT SET"} + rconpassword=${rconpassword=:-"NOT SET"} + fi +} fn_info_config_dontstarve(){ if [ ! -f "${servercfgfullpath}" ]; then @@ -509,6 +522,9 @@ if [ "${engine}" == "avalanche" ]; then # Battlefield: 1942 elif [ "${gamename}" == "Battlefield: 1942" ]; then fn_info_config_bf1942 +# Call of Duty +elif [ "${gamename}" == "Call of Duty" ]; then + fn_info_config_cod # Dont Starve Together elif [ "${engine}" == "dontstarve" ]; then fn_info_config_dontstarve diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index 73ef6251d..d5564bbe8 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -14,6 +14,9 @@ elif [ "${gamename}" == "Blade Symphony" ]; then glibcfix="yes" elif [ "${gamename}" == "BrainBread 2" ]; then glibcrequired="2.17" +elif [ "${gamename}" == "Call of Duty" ]; then + glibcrequired="2.1" + glibcfix="yes" elif [ "${gamename}" == "Day of Infamy" ]; then glibcrequired="2.15" glibcfix="yes" diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index bdd7cb23e..543315458 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -113,6 +113,12 @@ elif [ "${gamename}" == "Black Mesa: Deathmatch" ]; then fn_fetch_default_config fn_default_config_remote fn_set_config_vars +elif [ "${gamename}" == "Call of Duty" ]; then + gamedirname="CallOfDuty" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Codename CURE" ]; then gamedirname="CodenameCURE" array_configs+=( server.cfg ) diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 00e8abc08..18268fc3f 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -23,6 +23,8 @@ fn_install_server_files(){ fileurl="http://files.gameservermanagers.com/UnrealTournament/UnrealTournament-Server-XAN-3045522-Linux.zip"; filedir="${tmpdir}"; filename="UnrealTournament-Server-XAN-3045522-Linux.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="553fed5645a9fc623e92563049bf79f6" elif [ "${gamename}" == "GoldenEye: Source" ]; then fileurl="http://files.gameservermanagers.com/GoldenEyeSource/GoldenEye_Source_v5.0.1_full_server_linux.tar.bz2"; filedir="${tmpdir}"; filename="GoldenEye_Source_v5.0.1_server_full_Linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="ea227a150300abe346e757380325f84c" + elif [ "${gamename}" == "Call of Duty" ]; then + fileurl="http://files.gameservermanagers.com/CallOfDuty/cod-lnxded-1.5b-full.tar.bz2"; filedir="${tmpdir}"; filename="cod-lnxded-1.5-large.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="19629895a4cf6fd8f6d1ee198b5304cd" elif [ "${gamename}" == "Quake 2" ]; then fileurl="http://files.gameservermanagers.com/Quake2/quake2-3.20-glibc-i386-full-linux2.0.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="quake2-3.20-glibc-i386-full-linux2.0.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="0b8c7e2d51f40b56b328c69e986e7c5f" elif [ "${gamename}" == "Quake 3: Arena" ]; then From d8bd68e9c8cfbbbe258be78cd74c91fa3c3c87ac Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sat, 12 Nov 2016 18:30:32 -0500 Subject: [PATCH 246/246] adding Call of Duty 2 (#1127) * Added Call of Duty 2 --- CallOfDuty2/cod2server | 186 +++++++++++++++++++++++++ lgsm/functions/check_deps.sh | 4 +- lgsm/functions/command_details.sh | 10 ++ lgsm/functions/command_install.sh | 2 +- lgsm/functions/command_monitor.sh | 2 +- lgsm/functions/core_functions.sh | 5 + lgsm/functions/core_getopt.sh | 2 +- lgsm/functions/fix.sh | 2 + lgsm/functions/gsquery.py | 4 +- lgsm/functions/info_config.sh | 17 +++ lgsm/functions/info_glibc.sh | 5 +- lgsm/functions/install_config.sh | 6 + lgsm/functions/install_server_files.sh | 3 +- 13 files changed, 240 insertions(+), 8 deletions(-) create mode 100755 CallOfDuty2/cod2server diff --git a/CallOfDuty2/cod2server b/CallOfDuty2/cod2server new file mode 100755 index 000000000..74aafdb55 --- /dev/null +++ b/CallOfDuty2/cod2server @@ -0,0 +1,186 @@ +#!/bin/bash +# Project: Game Server Managers - LinuxGSM +# Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Call of Duty 2 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki +# Website: https://gameservermanagers.com + +# Debugging +if [ -f ".dev-debug" ]; then + exec 5>dev-debug.log + BASH_XTRACEFD="5" + set -x +fi + +version="161030" + +########################## +######## Settings ######## +########################## + +#### Server Settings #### + +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters + +defaultmap="mp_leningrad" +maxclients="20" +port="28960" +ip="0.0.0.0" + +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +fn_parms(){ +parms="+set sv_punkbuster 0 +set fs_basepath ${filesdir} +set dedicated 1 +set net_ip ${ip} +set net_port ${port} +set sv_maxclients ${maxclients} +exec ${servercfg} +map ${defaultmap}" +} + +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### Advanced Variables #### + +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit +gamename="Call of Duty 2" +engine="iw2.0" + +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="cod2-server" + +#### Directories #### +# Edit with care + +## Work 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" +tmpdir="${lgsmdir}/tmp" +filesdir="${rootdir}/serverfiles" + +## Server Specific Directories +systemdir="${filesdir}" +executabledir="${filesdir}" +executable="./cod2_lnxded" +servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" +servercfgdir="${systemdir}/main" +servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory +backupdir="${rootdir}/backups" + +## Logging Directories +gamelogdir="${filesdir}/Logs" +scriptlogdir="${rootdir}/log/script" +consolelogdir="${rootdir}/log/console" +scriptlog="${scriptlogdir}/${servicename}-script.log" +consolelog="${consolelogdir}/${servicename}-console.log" +emaillog="${scriptlogdir}/${servicename}-email.log" + +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%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 +} + +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + +core_dl.sh +core_functions.sh +getopt=$1 +core_getopt.sh \ No newline at end of file diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 75b99a70a..62d9ed6f6 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -189,7 +189,7 @@ if [ -n "$(command -v dpkg-query)" ]; then elif [ "${gamename}" == "Battlefield: 1942" ]; then array_deps_required+=( libncurses5:i386 ) # Call of Duty - elif [ "${gamename}" == "Call of Duty" ]; then + elif [ "${gamename}" == "Call of Duty" ]||[ "${gamename}" == "Call of Duty 2" ]; then array_deps_required+=( libstdc++5:i386 ) # Project Zomboid and Minecraft elif [ "${engine}" == "projectzomboid" ]||[ "${engine}" == "lwjgl2" ]; then @@ -261,7 +261,7 @@ elif [ -n "$(command -v yum)" ]; then elif [ "${gamename}" == "Battlefield: 1942" ]; then array_deps_required+=( ncurses-libs.i686 ) # Call of Duty - elif [ "${gamename}" == "Call of Duty" ]; then + elif [ "${gamename}" == "Call of Duty" ]||[ "${gamename}" == "Call of Duty 2" ]; then array_deps_required+=( compat-libstdc++-33.i686 ) # Project Zomboid and Minecraft elif [ "${engine}" == "projectzomboid" ]||[ "${engine}" == "lwjgl2" ]; then diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 4f39fe2ef..4ce097e1a 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -652,6 +652,14 @@ fn_details_ark(){ } | column -s $'\t' -t } +fn_details_cod2(){ + echo -e "netstat -atunp | grep cod2_lnxded" + echo -e "" + { + echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" + echo -e "> Game\tINBOUND\t${port}\tudp" + } | column -s $'\t' -t +} # Run checks and gathers details to display. @@ -709,6 +717,8 @@ fn_display_details() { fn_details_ark elif [ "${gamename}" == "Call of Duty" ]; then fn_details_cod + elif [ "${gamename}" == "Call of Duty 2" ]; then + fn_details_cod2 elif [ "${gamename}" == "Hurtworld" ]; then fn_details_hurtworld elif [ "${gamename}" == "QuakeWorld" ]; then diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index 43dc9daf5..e36ac5967 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}" == "Battlefield: 1942" ]||[ "${gamename}" == "Call of Duty" ]||[ "${gamename}" == "Minecraft" ]||[ "${gamename}" == "Quake 2" ]||[ "${gamename}" == "Quake 3: Arena" ]||[ "${gamename}" == "QuakeWorld" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament 3" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Mumble" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then +elif [ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Call of Duty" ]||[ "${gamename}" == "Call of Duty 2" ]||[ "${gamename}" == "Minecraft" ]||[ "${gamename}" == "Quake 2" ]||[ "${gamename}" == "Quake 3: Arena" ]||[ "${gamename}" == "QuakeWorld" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament 3" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Mumble" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then installer=1 install_server_files.sh elif [ -n "${appid}" ]; then diff --git a/lgsm/functions/command_monitor.sh b/lgsm/functions/command_monitor.sh index 3c6d7fad4..2e5de3402 100644 --- a/lgsm/functions/command_monitor.sh +++ b/lgsm/functions/command_monitor.sh @@ -79,7 +79,7 @@ fn_monitor_tmux(){ fn_print_ok_eol_nl fn_script_log_pass "Checking session: OK" # runs gsquery check on game with specific engines. - local allowed_engines_array=( avalanche goldsource idtech3 idtech3_ql quake refractor realvirtuality source spark unity3d unreal unreal2 ) + local allowed_engines_array=( avalanche goldsource idtech3 idtech3_ql iw2.0 quake refractor realvirtuality source spark unity3d unreal unreal2 ) for allowed_engine in "${allowed_engines_array[@]}" do if [ "${allowed_engine}" == "${engine}" ]; then diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index f5ba4ce9e..765b95712 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -544,6 +544,11 @@ functionfile="${FUNCNAME}" fn_fetch_function } +fix_cod2.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + # Calls the global Ctrl-C trap core_trap.sh diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index d629e3711..ec1e45713 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -622,7 +622,7 @@ case "${getopt}" in if [ "${gamename}" == "Mumble" ]; then fn_getopt_mumble -elif [ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Call of Duty" ]||[ "${gamename}" == "QuakeWorld" ]||[ "${gamename}" == "Quake 2" ]||[ "${gamename}" == "Quake 3: Arena" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then +elif [ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Call of Duty" ]||[ "${gamename}" == "Call of Duty 2" ]||[ "${gamename}" == "QuakeWorld" ]||[ "${gamename}" == "Quake 2" ]||[ "${gamename}" == "Quake 3: Arena" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fn_getopt_generic_no_update elif [ "${engine}" == "lwjgl2" ]; then fn_getopt_minecraft diff --git a/lgsm/functions/fix.sh b/lgsm/functions/fix.sh index 5671ed627..a57e179c4 100644 --- a/lgsm/functions/fix.sh +++ b/lgsm/functions/fix.sh @@ -37,6 +37,8 @@ if [ "${function_selfname}" != "command_install.sh" ]; then if [ "${gamename}" == "ARMA 3" ]; then fix_arma3.sh + elif [ "${gamename}" == "Call of Duty 2" ]; then + fix_cod2.sh elif [ "${gamename}" == "Counter-Strike: Global Offensive" ]; then fix_csgo.sh elif [ "${gamename}" == "Don't Starve Together" ]; then diff --git a/lgsm/functions/gsquery.py b/lgsm/functions/gsquery.py index cd46717cd..e45d891cb 100644 --- a/lgsm/functions/gsquery.py +++ b/lgsm/functions/gsquery.py @@ -26,6 +26,8 @@ class GameServer: self.query_prompt_string = b'\xff\xff\xff\xffstatus\x00' elif self.option.engine == 'idtech3': self.query_prompt_string = b'\xff\xff\xff\xffgetstatus' + elif self.option.engine == 'iw2.0': + self.query_prompt_string = b'\xff\xff\xff\xffgetstatus' elif self.option.engine == 'quake': self.query_prompt_string = b'\xff\xff\xff\xffstatus\x00' elif self.option.engine == 'quakelive': @@ -113,7 +115,7 @@ if __name__ == '__main__': action='store', dest='engine', default=False, - help='Engine type: avalanche, goldsource, idtech2, idtech3, realvirtuality, quake, quakelive, refractor, spark, source, unity3d, unreal, unreal2.' + help='Engine type: avalanche, goldsource, idtech2, idtech3, iw2.0, realvirtuality, quake, quakelive, refractor, spark, source, unity3d, unreal, unreal2.' ) parser.add_option( '-v', '--verbose', diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 46e7445a6..198ffa656 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -80,6 +80,20 @@ fn_info_config_cod(){ fi } +fn_info_config_cod2(){ + if [ ! -f "${servercfgfullpath}" ]; then + servername="${unavailable}" + rconpassword="${unavailable}" + else + servername=$(grep "sv_hostname " "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname //g' | tr -d '=\";,:' | xargs) + rconpassword=$(grep "rconpassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set rconpassword //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + + # Not Set + servername=${servername:-"NOT SET"} + rconpassword=${rconpassword=:-"NOT SET"} + fi +} + fn_info_config_dontstarve(){ if [ ! -f "${servercfgfullpath}" ]; then servername="${unavailable}" @@ -525,6 +539,9 @@ elif [ "${gamename}" == "Battlefield: 1942" ]; then # Call of Duty elif [ "${gamename}" == "Call of Duty" ]; then fn_info_config_cod +# Call of Duty 2 +elif [ "${gamename}" == "Call of Duty 2" ]; then + fn_info_config_cod2 # Dont Starve Together elif [ "${engine}" == "dontstarve" ]; then fn_info_config_dontstarve diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index d5564bbe8..b5e4cb0a2 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -16,7 +16,10 @@ elif [ "${gamename}" == "BrainBread 2" ]; then glibcrequired="2.17" elif [ "${gamename}" == "Call of Duty" ]; then glibcrequired="2.1" - glibcfix="yes" + glibcfix="no" +elif [ "${gamename}" == "Call of Duty 2" ]; then + glibcrequired="2.1.3" + glibcfix="no" elif [ "${gamename}" == "Day of Infamy" ]; then glibcrequired="2.15" glibcfix="yes" diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 543315458..57fcb7855 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -119,6 +119,12 @@ elif [ "${gamename}" == "Call of Duty" ]; then fn_fetch_default_config fn_default_config_remote fn_set_config_vars +elif [ "${gamename}" == "Call of Duty 2" ]; then + gamedirname="CallofDuty2" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Codename CURE" ]; then gamedirname="CodenameCURE" array_configs+=( server.cfg ) diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 18268fc3f..95e5cc379 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -11,6 +11,8 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" fn_install_server_files(){ if [ "${gamename}" == "Unreal Tournament 99" ]; then fileurl="http://files.gameservermanagers.com/UnrealTournament99/ut99-server-451-ultimate-linux.tar.bz2"; filedir="${tmpdir}"; filename="ut99-server-451-ultimate-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="49cb24d0550ff6ddeaba6007045c6edd" + elif [ "${gamename}" == "Call of Duty 2" ]; then + fileurl="http://files.gameservermanagers.com/CallOfDuty2/cod2-lnxded-1.3-full.tar.bz2"; filedir="${tmpdir}"; filename="cod2-lnxded-1.3-full.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="078128f83d06dc3d7699428dc2870214" elif [ "${gamename}" == "Unreal Tournament 2004" ]; then fileurl="http://files.gameservermanagers.com/UnrealTournament2004/ut2004-server-3339-ultimate-linux.tar.bz2"; filedir="${tmpdir}"; filename="ut2004-server-3339-ultimate-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="67c5e2cd9c2a4b04f163962ee41eff54" elif [ "${gamename}" == "Unreal Tournament 3" ]; then @@ -31,7 +33,6 @@ fn_install_server_files(){ fileurl="http://files.gameservermanagers.com/Quake3/quake3-1.32c-x86-full-linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="quake3-1.32c-x86-full-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="fd7258d827474f67663dda297bff4306" elif [ "${gamename}" == "QuakeWorld" ]; then fileurl="http://files.gameservermanagers.com/QuakeWorld/nquake.server.linux.083116.full.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="nquake.server.linux.083116.full.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="75a409cf08d808f075e4dacdc7b21b78" - fi fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" fn_dl_extract "${filedir}" "${filename}" "${filesdir}"