From c3964d17422bb08a72101cc389b7db9357c7d015 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Fri, 14 Oct 2016 02:51:20 -0400 Subject: [PATCH 001/169] adding Call of Duty: United Offensive --- .../cfg/lgsm-default.cfg | 4 + CallOfDutyUnitedOffensive/coduoserver | 145 ++++++++++++++++++ lgsm/functions/command_install.sh | 2 +- lgsm/functions/core_functions.sh | 5 + lgsm/functions/fix.sh | 2 + lgsm/functions/fix_coduo.sh | 12 ++ lgsm/functions/install_config.sh | 6 + lgsm/functions/install_server_files.sh | 2 + 8 files changed, 177 insertions(+), 1 deletion(-) create mode 100644 CallOfDutyUnitedOffensive/cfg/lgsm-default.cfg create mode 100755 CallOfDutyUnitedOffensive/coduoserver create mode 100644 lgsm/functions/fix_coduo.sh diff --git a/CallOfDutyUnitedOffensive/cfg/lgsm-default.cfg b/CallOfDutyUnitedOffensive/cfg/lgsm-default.cfg new file mode 100644 index 000000000..c865268b5 --- /dev/null +++ b/CallOfDutyUnitedOffensive/cfg/lgsm-default.cfg @@ -0,0 +1,4 @@ +set sv_hostname "" +set g_motd "LGSM CODUO Server" +set rconpassword "" + diff --git a/CallOfDutyUnitedOffensive/coduoserver b/CallOfDutyUnitedOffensive/coduoserver new file mode 100755 index 000000000..9e0c737a2 --- /dev/null +++ b/CallOfDutyUnitedOffensive/coduoserver @@ -0,0 +1,145 @@ +#!/bin/bash +# Call of Duty: United Offensive +# 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="mp_cassino" +maxclients="20" +ip="0.0.0.0" +port="28960" + +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}" +} + +#### 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="coduo" + +# Server Details +servicename="coduo-server" +gamename="Call of Duty: United Offensive" +engine="idtech3" + +# Directories +rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" +selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" +lockselfname=".${servicename}.lock" +lgsmdir="${rootdir}/lgsm" +functionsdir="${lgsmdir}/functions" +libdir="${lgsmdir}/lib" +filesdir="${rootdir}/serverfiles" +systemdir="${filesdir}" +executabledir="${filesdir}" +executable="./coduo_lnxded" +servercfg="${servicename}.cfg" +servercfgdir="${systemdir}/uo" +servercfgfullpath="${servercfgdir}/${servercfg}" +servercfgdefault="${servercfgdir}/lgsm-default.cfg" +backupdir="${rootdir}/backups" + +# Logging +logdays="7" +gamelogdir="${filesdir}/Logs" +scriptlogdir="${rootdir}/log/script" +consolelogdir="${rootdir}/log/console" +consolelogging="on" + +scriptlog="${scriptlogdir}/${servicename}-script.log" +consolelog="${consolelogdir}/${servicename}-console.log" +emaillog="${scriptlogdir}/${servicename}-email.log" + +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%d-%m-%Y-%H-%M-%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M-%S').log" + +##### Script ##### +# Do not edit + +# Fetches core_dl for file downloads +fn_fetch_core_dl(){ +github_file_url_dir="lgsm/functions" +github_file_url_name="${functionfile}" +filedir="${functionsdir}" +filename="${github_file_url_name}" +githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${github_file_url_name}" +# If the file is missing, then download +if [ ! -f "${filedir}/${filename}" ]; then + if [ ! -d "${filedir}" ]; then + mkdir -p "${filedir}" + fi + echo -e " fetching ${filename}...\c" + # Check curl exists and use available path + curlpaths="$(command -v curl 2>/dev/null) $(which curl >/dev/null 2>&1) /usr/bin/curl /bin/curl /usr/sbin/curl /sbin/curl)" + for curlcmd in ${curlpaths} + do + if [ -x "${curlcmd}" ]; then + break + fi + done + # If curl exists download file + if [ "$(basename ${curlcmd})" == "curl" ]; then + curlfetch=$(${curlcmd} -s --fail -o "${filedir}/${filename}" "${githuburl}" 2>&1) + if [ $? -ne 0 ]; then + echo -e "\e[0;31mFAIL\e[0m\n" + echo "${curlfetch}" + echo -e "${githuburl}\n" + exit 1 + else + echo -e "\e[0;32mOK\e[0m" + fi + else + echo -e "\e[0;31mFAIL\e[0m\n" + echo "Curl is not installed!" + echo -e "" + exit 1 + fi + chmod +x "${filedir}/${filename}" +fi +source "${filedir}/${filename}" +} + +core_dl.sh(){ +# Functions are defined in core_functions.sh. +functionfile="${FUNCNAME}" +fn_fetch_core_dl +} + +core_functions.sh(){ +# Functions are defined in core_functions.sh. +functionfile="${FUNCNAME}" +fn_fetch_core_dl +} + +core_dl.sh +core_functions.sh + +getopt=$1 +core_getopt.sh diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index bcfe36fd2..9b0bdcdc8 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}" == "Enemy Territory" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Minecraft" ]||[ "${gamename}" == "Mumble" ]||[ "${gamename}" == "Call of Duty: United Offensive" ]; then installer=1 install_server_files.sh elif [ -n "${appid}" ]; then diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index 388846276..d71278b9e 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -546,6 +546,11 @@ functionfile="${FUNCNAME}" fn_fetch_function } +fix_coduo.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + # Calls the global Ctrl-C trap core_trap.sh diff --git a/lgsm/functions/fix.sh b/lgsm/functions/fix.sh index 41e1ecc2f..4c1d7bfb4 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: United Offensive" ]; then + fix_coduo.sh elif [ "${gamename}" == "Counter-Strike: Global Offensive" ]; then fix_csgo.sh elif [ "${gamename}" == "Don't Starve Together" ]; then diff --git a/lgsm/functions/fix_coduo.sh b/lgsm/functions/fix_coduo.sh new file mode 100644 index 000000000..09835eadb --- /dev/null +++ b/lgsm/functions/fix_coduo.sh @@ -0,0 +1,12 @@ +#!/bin/bash +# LGSM fix_coduo.sh function +# Author: Alexander Hurd +# Website: https://gameservermanagers.com +# Description: Fixes for Call of Duty: United Offensive + +local commandname="FIX" +local commandaction="Fix" + +# Force glibc fix +fix_glibc.sh + diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 5a856f8e6..e6ffe3edf 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -256,6 +256,12 @@ elif [ "${gamename}" == "Blade Symphony" ]; then wget -N /dev/null ${githuburl}/BladeSymphony/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq sleep 1 fn_goldsourceconfig +elif [ "${gamename}" == "Call of Duty: United Offensive" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/CallOfDutyUnitedOffensive/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_defaultconfig + fn_userinputconfig 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 diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index e1b140bb8..8d54f07c2 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: United Offensive" ]; then + fileurl="https://s3.amazonaws.com/linuxgsm/coduo-lnxded-1.51b-full.tar.bz2"; filedir="${tmpdir}"; filename="coduo-lnxded-1.51b-full.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="f1804ef13036e2b4ab535db000b19e97" fi fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" fn_dl_extract "${filedir}" "${filename}" "${filesdir}" From 53d2a0401dbee86fc5b7d15353341e72db8904f5 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Fri, 14 Oct 2016 02:58:46 -0400 Subject: [PATCH 002/169] adding glibc fix --- lgsm/functions/fix_glibc.sh | 10 +++++++++- lgsm/lib/gcc3/libgcc_s.so.1 | Bin 0 -> 627675 bytes lgsm/lib/gcc3/libstdc++.so.5.0.3 | Bin 0 -> 2886540 bytes 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 lgsm/lib/gcc3/libgcc_s.so.1 create mode 100755 lgsm/lib/gcc3/libstdc++.so.5.0.3 diff --git a/lgsm/functions/fix_glibc.sh b/lgsm/functions/fix_glibc.sh index 6408e3339..bd793d72a 100644 --- a/lgsm/functions/fix_glibc.sh +++ b/lgsm/functions/fix_glibc.sh @@ -40,4 +40,12 @@ do fi done -export LD_LIBRARY_PATH=:"${libdir}" \ No newline at end of file +if [ "${gamename}" == "Call of Duty: United Offensive" ]; then + fn_fetch_file_github "lgsm/lib/gcc3" "libgcc_s.so.1" "${lgsmdir}/lib" "noexecutecmd" "norun" "noforce" "nomd5" + fn_fetch_file_github "lgsm/lib/gcc3" "libstdc++.so.5.0.3" "${lgsmdir}/lib" "noexecutecmd" "norun" "noforce" "nomd5" + if [ ! -f "${lgsmdir}/lib/libstdc++.so.5" ]; then + ln -s "${lgsmdir}/lib/libstdc++.so.5.0.3" "${lgsmdir}/lib/libstdc++.so.5" + fi +fi + +export LD_LIBRARY_PATH=:"${libdir}" diff --git a/lgsm/lib/gcc3/libgcc_s.so.1 b/lgsm/lib/gcc3/libgcc_s.so.1 new file mode 100644 index 0000000000000000000000000000000000000000..acb442512fe19e4f151d7b6b7cc49933bdcaf5c0 GIT binary patch literal 627675 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

<_lre&6h)Fv|Rr)4ZsaVUy3PlcO2 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®_+= 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%0A)a? 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 literal 0 HcmV?d00001 From 383c89262b96fdfcbd9143c9475d6b156a942174 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sat, 15 Oct 2016 06:23:38 -0400 Subject: [PATCH 003/169] update motd var --- CallOfDutyUnitedOffensive/cfg/lgsm-default.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CallOfDutyUnitedOffensive/cfg/lgsm-default.cfg b/CallOfDutyUnitedOffensive/cfg/lgsm-default.cfg index c865268b5..9768294eb 100644 --- a/CallOfDutyUnitedOffensive/cfg/lgsm-default.cfg +++ b/CallOfDutyUnitedOffensive/cfg/lgsm-default.cfg @@ -1,4 +1,4 @@ set sv_hostname "" -set g_motd "LGSM CODUO Server" +set scr_motd "LGSM CODUO Server" set rconpassword "" From 81fa3d5681d9f59f1b1ad0a5c7db4443aee7d361 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Mon, 17 Oct 2016 00:49:39 -0400 Subject: [PATCH 004/169] adding Call of Duty: World at War --- CallOfDutyWorldAtWar/cfg/lgsm-default.cfg | 3 + CallOfDutyWorldAtWar/codwawserver | 145 +++++ lgsm/functions/command_install.sh | 2 +- lgsm/functions/install_config.sh | 718 ++++++++++++---------- lgsm/functions/install_server_files.sh | 2 + 5 files changed, 554 insertions(+), 316 deletions(-) create mode 100644 CallOfDutyWorldAtWar/cfg/lgsm-default.cfg create mode 100644 CallOfDutyWorldAtWar/codwawserver diff --git a/CallOfDutyWorldAtWar/cfg/lgsm-default.cfg b/CallOfDutyWorldAtWar/cfg/lgsm-default.cfg new file mode 100644 index 000000000..63766b13c --- /dev/null +++ b/CallOfDutyWorldAtWar/cfg/lgsm-default.cfg @@ -0,0 +1,3 @@ +set sv_hostname "" +set scr_motd "LGSM CODWAW Server" +set rconpassword "" diff --git a/CallOfDutyWorldAtWar/codwawserver b/CallOfDutyWorldAtWar/codwawserver new file mode 100644 index 000000000..ee561ffc8 --- /dev/null +++ b/CallOfDutyWorldAtWar/codwawserver @@ -0,0 +1,145 @@ +#!/bin/bash +# Call of Duty: World at War +# 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="mp_castle" +maxclients="20" +ip="0.0.0.0" +port="28960" + +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}" +} + +#### 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="codwaw" + +# Server Details +servicename="codwaw-server" +gamename="Call of Duty: World at War" +engine="idtech3" + +# Directories +rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" +selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" +lockselfname=".${servicename}.lock" +lgsmdir="${rootdir}/lgsm" +functionsdir="${lgsmdir}/functions" +libdir="${lgsmdir}/lib" +filesdir="${rootdir}/serverfiles" +systemdir="${filesdir}" +executabledir="${filesdir}" +executable="./codwaw_lnxded" +servercfg="${servicename}.cfg" +servercfgdir="${systemdir}/uo" +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 5b741a126..ae1574f39 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}" == "Wolfenstein: 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" ]||[ "${gamename}" == "Call of Duty: World at War" ]; 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 997bc4cc2..dd983ddf1 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -8,372 +8,460 @@ local commandname="INSTALL" local commandaction="Install" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -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_defaultconfig(){ + echo "creating ${servercfg} config file." + fn_script_log_info "creating ${servercfg} config file." + cp -v "${servercfgdefault}" "${servercfgfullpath}" + sleep 1 } -# 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" +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 - 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}" + 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 "" } -# 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." - 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 - done +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 "" -echo "Downloading ${gamename} Config" +if [ "${gamename}" != "Hurtworld" ]; then +echo "Creating Configs" echo "=================================" -echo "default configs from https://github.com/GameServerManagers/Game-Server-Configs" -sleep 2 +sleep 1 + mkdir -pv "${servercfgdir}" + cd "${servercfgdir}" + githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}" +fi + if [ "${gamename}" == "7 Days To Die" ]; then - gamedirname="7DaysToDie" - array_configs+=( serverconfig.xml ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + fn_defaultconfig elif [ "${gamename}" == "ARK: Survivial Evolved" ]; then - gamedirname="ARKSurvivalEvolved" - array_configs+=( GameUserSettings.ini ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - 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_set_config_vars + 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 - gamedirname="BrainBread2" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - gamedirname="BlackMesa" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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}" == "Call of Duty: World at War" ]; then + echo -e "downloading lgsm-default.cfg...\c" + wget -N /dev/null ${githuburl}/CallOfDutyWorldAtWar/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_defaultconfig + fn_userinputconfig elif [ "${gamename}" == "Codename CURE" ]; then - gamedirname="CodenameCURE" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - gamedirname="CounterStrike" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - gamedirname="CounterStrikeConditionZero" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - gamedirname="CounterStrikeGlobalOffensive" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - gamedirname="CounterStrikeSource" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - gamedirname="DayOfDefeat" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - gamedirname="DayOfDefeatSource" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - gamedirname="DayOfInfamy" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars -elif [ "${gamename}" == "Deathmatch Classic" ]; then - gamedirname="DeathmatchClassic" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - gamedirname="DontStarveTogether" - array_configs+=( Settings.ini ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - gamedirname="DoubleActionBoogaloo" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - gamedirname="FistfulofFrags" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - gamedirname="GarrysMod" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - gamedirname="GoldenEyeSource" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - 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_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_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_set_config_vars + 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 - gamedirname="HalfLife2Deathmatch" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - gamedirname="Insurgency" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - gamedirname="JustCause2" - array_configs+=( config.lua ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + fn_defaultconfig 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_set_config_vars + fn_unreal2config elif [ "${gamename}" == "Left 4 Dead" ]; then - gamedirname="Left4Dead" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - gamedirname="Left4Dead2" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - gamedirname="Minecraft" - array_configs+=( server.properties ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - gamedirname="NoMoreRoominHell" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars -elif [ "${gamename}" == "Mumble" ]; 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 - : -elif [ "${gamename}" == "NS2: Combat" ]; then - : + echo -e "no configs required." + sleep 1 + echo "" elif [ "${gamename}" == "Pirates, Vikings, and Knights II" ]; then - gamedirname="PiratesVikingandKnightsII" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - gamedirname="ProjectZomboid" - array_configs+=( server.ini ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - gamedirname="QuakeLive" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - : -elif [ "${gamename}" == "Ricochet" ]; then - gamedirname="Ricochet" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - 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 + fn_unreal2config 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 + 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 - gamedirname="SvenCoop" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - gamedirname="TeamFortress2" - array_configs+=( server.cfg ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - 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 + 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 - 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 + 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 - gamedirname="Terraria" - array_configs+=( serverconfig.txt ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + 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 - 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 + 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 - gamedirname="UnrealTournament3" - array_configs+=( UTGame.ini ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + fn_ut3config +elif [ "${gamename}" == "Unreal Tournament 2004" ]; then + fn_unreal2config 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 - + fn_ut99config +fi \ No newline at end of file diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index e2778ae64..663275490 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: World at War" ]; then + fileurl="https://s3.amazonaws.com/linuxgsm/codwaw-lnxded-1.7-full.tar.bz2"; filedir="${tmpdir}"; filename="codwaw-lnxded-1.7-full.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="0489697ff3bf678c109bfb377d1b7895" fi fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" fn_dl_extract "${filedir}" "${filename}" "${filesdir}" From 663962b996c9f379f97c4a6727f501d9ee78b59c Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Mon, 17 Oct 2016 01:42:25 -0400 Subject: [PATCH 005/169] fixes --- CallOfDutyWorldAtWar/codwawserver | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 CallOfDutyWorldAtWar/codwawserver diff --git a/CallOfDutyWorldAtWar/codwawserver b/CallOfDutyWorldAtWar/codwawserver old mode 100644 new mode 100755 index ee561ffc8..f07a7ae5b --- a/CallOfDutyWorldAtWar/codwawserver +++ b/CallOfDutyWorldAtWar/codwawserver @@ -61,7 +61,7 @@ systemdir="${filesdir}" executabledir="${filesdir}" executable="./codwaw_lnxded" servercfg="${servicename}.cfg" -servercfgdir="${systemdir}/uo" +servercfgdir="${systemdir}/main" servercfgfullpath="${servercfgdir}/${servercfg}" servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" @@ -142,4 +142,4 @@ core_dl.sh core_functions.sh getopt=$1 -core_getopt.sh \ No newline at end of file +core_getopt.sh From 3430bef50fee26b6c0bcf3415bf9703759103bdf Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Mon, 17 Oct 2016 01:43:48 -0400 Subject: [PATCH 006/169] update --- CallOfDutyWorldAtWar/codwawserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CallOfDutyWorldAtWar/codwawserver b/CallOfDutyWorldAtWar/codwawserver index f07a7ae5b..199e34810 100755 --- a/CallOfDutyWorldAtWar/codwawserver +++ b/CallOfDutyWorldAtWar/codwawserver @@ -47,7 +47,7 @@ githubbranch="codwaw" # Server Details servicename="codwaw-server" gamename="Call of Duty: World at War" -engine="idtech3" +engine="IW 3.0" # Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" From 1f0c6d96030c337f1e6a8d03df06d2fde374882f Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 02:43:31 +0200 Subject: [PATCH 007/169] 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 008/169] 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 009/169] 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 010/169] 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 011/169] 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 012/169] 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 013/169] 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 014/169] 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 015/169] 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 016/169] 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 017/169] 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 018/169] 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 019/169] 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 020/169] 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 021/169] 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 022/169] 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 023/169] 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 024/169] 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 025/169] 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 026/169] 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 027/169] 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 028/169] 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 029/169] 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 030/169] 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 031/169] 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 032/169] 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 033/169] 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 034/169] 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 035/169] 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 036/169] 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 037/169] 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 038/169] 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 039/169] 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 040/169] 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 041/169] 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 042/169] 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 043/169] 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 044/169] 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 045/169] 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 046/169] 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 047/169] 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 048/169] 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 049/169] 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 050/169] 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 051/169] 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 052/169] 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 053/169] 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 054/169] 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 055/169] 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 056/169] 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 057/169] 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 058/169] 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 059/169] 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 060/169] 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 061/169] 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 062/169] 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 063/169] 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 064/169] 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 065/169] 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 066/169] 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 067/169] 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 068/169] 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 069/169] 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 070/169] 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 071/169] 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 072/169] 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 073/169] 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 074/169] 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 075/169] 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 076/169] 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 d47037d78276065fc5836ff92236f84d57c96564 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 23:09:43 +0200 Subject: [PATCH 077/169] 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 078/169] 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 079/169] 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 53862daa9c1ac04c86ab0a1834405d00c890b095 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 23:27:08 +0200 Subject: [PATCH 080/169] 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 5a5ca5769cc1058cb07be25dbad7b4b18d4aa2b6 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 21 Oct 2016 00:35:06 +0200 Subject: [PATCH 081/169] 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 082/169] 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 083/169] 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 084/169] 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 085/169] 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 086/169] 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 087/169] 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 088/169] 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 089/169] 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 090/169] 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 091/169] 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 2b2ba030a6384d3a2d2af5cef704648c380fc16a Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 21 Oct 2016 16:53:10 +0200 Subject: [PATCH 092/169] 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 093/169] 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 5e737a997a40a337b85d88f4d0a54fdfdc751fdb Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 22 Oct 2016 17:07:46 +0200 Subject: [PATCH 094/169] 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 095/169] 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 096/169] 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 111668ce1a4aa261c3c68bfa24be33c39f038b93 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 27 Oct 2016 22:41:10 +0200 Subject: [PATCH 097/169] 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 098/169] 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 099/169] 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 100/169] 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 101/169] 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 102/169] 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 103/169] 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 104/169] 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 105/169] 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 106/169] 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 107/169] 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 108/169] 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 109/169] 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 b845252e4d72e643cca3062a62369dc660da745d Mon Sep 17 00:00:00 2001 From: JATO457 Date: Thu, 3 Nov 2016 21:44:25 -0400 Subject: [PATCH 110/169] Pushbullet Channel Support Adds support to push to channels with alert_pushbullet.sh and strings added to main server files --- 7DaysToDie/sdtdserver | 4 ++++ ARKSurvivalEvolved/arkserver | 4 ++++ Arma3/arma3server | 4 ++++ Battlefield1942/bf1942server | 4 ++++ BlackMesa/bmdmserver | 4 ++++ BladeSymphony/bsserver | 4 ++++ BrainBread2/bb2server | 4 ++++ CallOfDuty/codserver | 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 ++++ Quake2/q2server | 4 ++++ Quake3/q3server | 4 ++++ QuakeLive/qlserver | 4 ++++ QuakeWorld/qwserver | 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 ++++ 60 files changed, 240 insertions(+) diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index 5825a9248..45128d1a3 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -46,6 +46,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index f2a9f2641..f582e86c6 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -48,6 +48,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/Arma3/arma3server b/Arma3/arma3server index e4b4fb83b..f9b829c06 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -62,6 +62,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/Battlefield1942/bf1942server b/Battlefield1942/bf1942server index 43212f78a..2ad4c2ce8 100644 --- a/Battlefield1942/bf1942server +++ b/Battlefield1942/bf1942server @@ -38,6 +38,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/BlackMesa/bmdmserver b/BlackMesa/bmdmserver index 62bea603e..1c52fad37 100644 --- a/BlackMesa/bmdmserver +++ b/BlackMesa/bmdmserver @@ -52,6 +52,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/BladeSymphony/bsserver b/BladeSymphony/bsserver index 548adea2a..0b528f10c 100644 --- a/BladeSymphony/bsserver +++ b/BladeSymphony/bsserver @@ -51,6 +51,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/BrainBread2/bb2server b/BrainBread2/bb2server index 86c2fc9c8..f40f775e1 100644 --- a/BrainBread2/bb2server +++ b/BrainBread2/bb2server @@ -55,6 +55,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/CallOfDuty/codserver b/CallOfDuty/codserver index ae19879e8..80925c7f0 100755 --- a/CallOfDuty/codserver +++ b/CallOfDuty/codserver @@ -44,6 +44,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup maxbackups="4" diff --git a/CodenameCURE/ccserver b/CodenameCURE/ccserver index dd622b8ae..f1240b043 100644 --- a/CodenameCURE/ccserver +++ b/CodenameCURE/ccserver @@ -45,6 +45,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/CounterStrike/csserver b/CounterStrike/csserver index bca3e12a3..c2e77e3dd 100644 --- a/CounterStrike/csserver +++ b/CounterStrike/csserver @@ -46,6 +46,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/CounterStrikeConditionZero/csczserver b/CounterStrikeConditionZero/csczserver index 5eb278771..8a3704d09 100644 --- a/CounterStrikeConditionZero/csczserver +++ b/CounterStrikeConditionZero/csczserver @@ -46,6 +46,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index 8018883b9..3d4b83ba4 100755 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -70,6 +70,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/CounterStrikeSource/cssserver b/CounterStrikeSource/cssserver index 78345eb9c..01a94b04d 100644 --- a/CounterStrikeSource/cssserver +++ b/CounterStrikeSource/cssserver @@ -53,6 +53,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/DayOfDefeat/dodserver b/DayOfDefeat/dodserver index e6db43522..0edcd00a2 100644 --- a/DayOfDefeat/dodserver +++ b/DayOfDefeat/dodserver @@ -47,6 +47,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/DayOfDefeatSource/dodsserver b/DayOfDefeatSource/dodsserver index 8386384b6..7e88b8aaf 100644 --- a/DayOfDefeatSource/dodsserver +++ b/DayOfDefeatSource/dodsserver @@ -47,6 +47,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/DayOfInfamy/doiserver b/DayOfInfamy/doiserver index d39568a53..76d03d0b4 100644 --- a/DayOfInfamy/doiserver +++ b/DayOfInfamy/doiserver @@ -49,6 +49,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/DeathmatchClassic/dmcserver b/DeathmatchClassic/dmcserver index d2be5c1be..024a9821c 100644 --- a/DeathmatchClassic/dmcserver +++ b/DeathmatchClassic/dmcserver @@ -46,6 +46,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index 5b9a5c112..316b56287 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -45,6 +45,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/DoubleActionBoogaloo/dabserver b/DoubleActionBoogaloo/dabserver index c080c568a..c7a8610b0 100644 --- a/DoubleActionBoogaloo/dabserver +++ b/DoubleActionBoogaloo/dabserver @@ -47,6 +47,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/EmpiresMod/emserver b/EmpiresMod/emserver index 6c2fa539c..abcd6aaf3 100644 --- a/EmpiresMod/emserver +++ b/EmpiresMod/emserver @@ -31,6 +31,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/FistfulOfFrags/fofserver b/FistfulOfFrags/fofserver index 7dc5cc571..673e3ed11 100644 --- a/FistfulOfFrags/fofserver +++ b/FistfulOfFrags/fofserver @@ -47,6 +47,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index 1bbba189c..ff1a543fd 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -62,6 +62,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/GoldenEyeSource/gesserver b/GoldenEyeSource/gesserver index 7dd85e2f6..3c4876282 100644 --- a/GoldenEyeSource/gesserver +++ b/GoldenEyeSource/gesserver @@ -47,6 +47,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/HalfLife2Deathmatch/hl2dmserver b/HalfLife2Deathmatch/hl2dmserver index 6b0489fe6..5d9b95044 100644 --- a/HalfLife2Deathmatch/hl2dmserver +++ b/HalfLife2Deathmatch/hl2dmserver @@ -47,6 +47,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/HalfLifeDeathmatch/hldmserver b/HalfLifeDeathmatch/hldmserver index 43e3bf106..71e32297c 100644 --- a/HalfLifeDeathmatch/hldmserver +++ b/HalfLifeDeathmatch/hldmserver @@ -46,6 +46,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/HalfLifeDeathmatchSource/hldmsserver b/HalfLifeDeathmatchSource/hldmsserver index 07b2c24cf..b1f2fdef5 100644 --- a/HalfLifeDeathmatchSource/hldmsserver +++ b/HalfLifeDeathmatchSource/hldmsserver @@ -47,6 +47,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/Hurtworld/hwserver b/Hurtworld/hwserver index d63e5a346..a4eb88765 100644 --- a/Hurtworld/hwserver +++ b/Hurtworld/hwserver @@ -59,6 +59,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/Insurgency/insserver b/Insurgency/insserver index 6a2748478..55d26c844 100644 --- a/Insurgency/insserver +++ b/Insurgency/insserver @@ -49,6 +49,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/JustCause2/jc2server b/JustCause2/jc2server index 4c89b31c1..2d6457644 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -41,6 +41,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/KillingFloor/kfserver b/KillingFloor/kfserver index 5f0e44154..8610e50ed 100644 --- a/KillingFloor/kfserver +++ b/KillingFloor/kfserver @@ -49,6 +49,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/Left4Dead/l4dserver b/Left4Dead/l4dserver index 2a7a20be1..8382b3ac5 100644 --- a/Left4Dead/l4dserver +++ b/Left4Dead/l4dserver @@ -46,6 +46,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/Left4Dead2/l4d2server b/Left4Dead2/l4d2server index 0a84f1d83..2f6c0a487 100644 --- a/Left4Dead2/l4d2server +++ b/Left4Dead2/l4d2server @@ -46,6 +46,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/Minecraft/mcserver b/Minecraft/mcserver index ab69b9010..4b9c4549e 100644 --- a/Minecraft/mcserver +++ b/Minecraft/mcserver @@ -41,6 +41,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index ace1dac08..6ec84b238 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -40,6 +40,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/NS2Combat/ns2cserver b/NS2Combat/ns2cserver index 460ce874c..20dcf5542 100644 --- a/NS2Combat/ns2cserver +++ b/NS2Combat/ns2cserver @@ -58,6 +58,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index 741f37862..64b77b84b 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -58,6 +58,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/NoMoreRoomInHell/nmrihserver b/NoMoreRoomInHell/nmrihserver index d5910ab44..7ed8680dc 100644 --- a/NoMoreRoomInHell/nmrihserver +++ b/NoMoreRoomInHell/nmrihserver @@ -52,6 +52,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/OpposingForce/opforserver b/OpposingForce/opforserver index 1c059ed6b..bec0c07b5 100644 --- a/OpposingForce/opforserver +++ b/OpposingForce/opforserver @@ -46,6 +46,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/PiratesVikingandKnightsII/pvkiiserver b/PiratesVikingandKnightsII/pvkiiserver index bc7767adb..2a0d8d185 100644 --- a/PiratesVikingandKnightsII/pvkiiserver +++ b/PiratesVikingandKnightsII/pvkiiserver @@ -47,6 +47,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/ProjectZomboid/pzserver b/ProjectZomboid/pzserver index 0586a2c13..2936d0e83 100644 --- a/ProjectZomboid/pzserver +++ b/ProjectZomboid/pzserver @@ -41,6 +41,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/Quake2/q2server b/Quake2/q2server index 94de84180..c510e5bb6 100644 --- a/Quake2/q2server +++ b/Quake2/q2server @@ -42,6 +42,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup maxbackups="4" diff --git a/Quake3/q3server b/Quake3/q3server index c302f10c0..5a0dd4e71 100644 --- a/Quake3/q3server +++ b/Quake3/q3server @@ -43,6 +43,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup maxbackups="4" diff --git a/QuakeLive/qlserver b/QuakeLive/qlserver index 33cc3696c..d0ad9a6f3 100755 --- a/QuakeLive/qlserver +++ b/QuakeLive/qlserver @@ -50,6 +50,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/QuakeWorld/qwserver b/QuakeWorld/qwserver index 78449e81f..b6f7d27a9 100644 --- a/QuakeWorld/qwserver +++ b/QuakeWorld/qwserver @@ -24,6 +24,10 @@ email="email@example.com" # https://www.pushbullet.com/#settings pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" # Start Variables ip="0.0.0.0" diff --git a/RedOrchestra/roserver b/RedOrchestra/roserver index 025bf348c..aa6101c04 100644 --- a/RedOrchestra/roserver +++ b/RedOrchestra/roserver @@ -47,6 +47,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/Ricochet/ricochetserver b/Ricochet/ricochetserver index 8eb18e0c1..0050db4ef 100644 --- a/Ricochet/ricochetserver +++ b/Ricochet/ricochetserver @@ -70,6 +70,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/Rust/rustserver b/Rust/rustserver index 0ac0ab260..c43b968b7 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -62,6 +62,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/SeriousSam3BFE/ss3sserver b/SeriousSam3BFE/ss3sserver index f0b1181e9..d917a1df8 100644 --- a/SeriousSam3BFE/ss3sserver +++ b/SeriousSam3BFE/ss3sserver @@ -42,6 +42,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/Starbound/sbserver b/Starbound/sbserver index dd5e70e4e..8ac7300f9 100644 --- a/Starbound/sbserver +++ b/Starbound/sbserver @@ -46,6 +46,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/SvenCoop/svenserver b/SvenCoop/svenserver index 82101fefa..60ee59f06 100644 --- a/SvenCoop/svenserver +++ b/SvenCoop/svenserver @@ -46,6 +46,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/TeamFortress2/tf2server b/TeamFortress2/tf2server index 5adfaa87b..678a01fcf 100644 --- a/TeamFortress2/tf2server +++ b/TeamFortress2/tf2server @@ -50,6 +50,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/TeamFortressClassic/tfcserver b/TeamFortressClassic/tfcserver index 8b6994e4a..b399cd1c9 100644 --- a/TeamFortressClassic/tfcserver +++ b/TeamFortressClassic/tfcserver @@ -46,6 +46,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/TeamSpeak3/ts3server b/TeamSpeak3/ts3server index f0bfbb8ea..b69d3e01b 100644 --- a/TeamSpeak3/ts3server +++ b/TeamSpeak3/ts3server @@ -34,6 +34,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/Teeworlds/twserver b/Teeworlds/twserver index bae6a0427..a0170ed30 100644 --- a/Teeworlds/twserver +++ b/Teeworlds/twserver @@ -46,6 +46,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/Terraria/terrariaserver b/Terraria/terrariaserver index a7b2b6c8b..31420b488 100644 --- a/Terraria/terrariaserver +++ b/Terraria/terrariaserver @@ -46,6 +46,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" diff --git a/UnrealTournament/utserver b/UnrealTournament/utserver index d011b93ad..e4e6415f6 100644 --- a/UnrealTournament/utserver +++ b/UnrealTournament/utserver @@ -48,6 +48,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup maxbackups="4" diff --git a/UnrealTournament2004/ut2k4server b/UnrealTournament2004/ut2k4server index c8c1f55ee..0e196368a 100644 --- a/UnrealTournament2004/ut2k4server +++ b/UnrealTournament2004/ut2k4server @@ -43,6 +43,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup maxbackups="4" diff --git a/UnrealTournament3/ut3server b/UnrealTournament3/ut3server index b65b633bb..22f5cb2db 100644 --- a/UnrealTournament3/ut3server +++ b/UnrealTournament3/ut3server @@ -54,6 +54,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup maxbackups="4" diff --git a/UnrealTournament99/ut99server b/UnrealTournament99/ut99server index 8787df657..516e87b99 100644 --- a/UnrealTournament99/ut99server +++ b/UnrealTournament99/ut99server @@ -43,6 +43,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup maxbackups="4" diff --git a/WolfensteinEnemyTerritory/wetserver b/WolfensteinEnemyTerritory/wetserver index c4a5a0db8..3052e29f8 100644 --- a/WolfensteinEnemyTerritory/wetserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -42,6 +42,10 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +# Pushbullet Channel | Do not set unless the channel exists on the +# account associated with the access token. Set without using the '#' +# E.g: "thisisachanneltag" would push to #thisisachanneltag +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" From 20de638b793b04152d1c76be987508fc4ea4ff59 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 7 Nov 2016 19:33:50 +0100 Subject: [PATCH 111/169] hotfix for ts3 server pass Issue: other functions were triggering core_exit.sh Fix: bypass them bonus: better output Sample output: http://hastebin.com/quxulezila.rb --- lgsm/functions/command_ts3_server_pass.sh | 26 ++++++++++++----------- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/lgsm/functions/command_ts3_server_pass.sh b/lgsm/functions/command_ts3_server_pass.sh index 89c3cd036..1a9896889 100644 --- a/lgsm/functions/command_ts3_server_pass.sh +++ b/lgsm/functions/command_ts3_server_pass.sh @@ -29,22 +29,17 @@ fn_serveradmin_password_prompt(){ done fn_script_log_info "Initiating ${gamename} ServerAdmin password change" read -p "Enter new password : " newpassword - } +} - fn_serveradmin_password_set(){ - fn_print_info_nl "Applying new password" - fn_script_log_info "Applying new password" +fn_serveradmin_password_set(){ + fn_print_info_nl "Starting server with new password..." + fn_script_log_info "Starting server with new password" sleep 1 - # Stop any running server - command_stop.sh # Start server in "new password mode" ts3serverpass="1" - fn_print_info_nl "Starting server with new password" + exitbypass="1" command_start.sh - # Stop server in "new password mode" - command_stop.sh - ts3serverpass="0" fn_print_ok_nl "Password applied" fn_script_log_pass "New ServerAdmin password applied" sleep 1 @@ -55,9 +50,16 @@ check.sh fn_serveradmin_password_prompt check_status.sh if [ "${status}" != "0" ]; then + # Stop any running server + exitbypass="1" + command_stop.sh fn_serveradmin_password_set - command_start.sh + ts3serverpass="0" + fn_print_info_nl "Restarting server normally" + fn_script_log_info "Restarting server normally" + command_restart.sh else fn_serveradmin_password_set + command_stop.sh fi -core_exit.sh \ No newline at end of file +core_exit.sh From ee6c6c920ec80317d0508a322904120a0b3e349f Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 7 Nov 2016 19:34:42 +0100 Subject: [PATCH 112/169] hotfix for ts3 server pass --- 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 57dcbfa60..30bbfccc8 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -37,7 +37,7 @@ fn_start_teamspeak3(){ date > "${rootdir}/${lockselfname}" cd "${executabledir}" if [ "${ts3serverpass}" == "1" ];then - ./ts3server_startscript.sh start serveradmin_password="${newpassword}" inifile="${servercfgfullpath}" + ./ts3server_startscript.sh start serveradmin_password="${newpassword}" inifile="${servercfgfullpath}" > /dev/null 2>&1 else ./ts3server_startscript.sh start inifile="${servercfgfullpath}" > /dev/null 2>&1 fi From ade6d66a18b6c47bc5aa0187ef2d9060c6903fae Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 9 Nov 2016 01:34:54 +0100 Subject: [PATCH 113/169] executable hotfix for Rust | fixes #1171 --- Rust/rustserver | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rust/rustserver b/Rust/rustserver index 0ac0ab260..870f42d04 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -116,7 +116,7 @@ filesdir="${rootdir}/serverfiles" ## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" -executable="./RustDedicated" +executable="LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`dirname $0`/RustDedicated_Data/Plugins/x86_64 ./RustDedicated" serveridentitydir="${systemdir}/server/${servicename}" servercfg="server.cfg" servercfgdefault="server.cfg" @@ -214,4 +214,4 @@ fi core_dl.sh core_functions.sh getopt=$1 -core_getopt.sh \ No newline at end of file +core_getopt.sh From d5b7c3cba616e2453027ec073ec1acfde05f520d Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Fri, 11 Nov 2016 18:24:18 +0100 Subject: [PATCH 114/169] Overhauled Don't Starve Together server WORK IN PROGRESS - use ip parameter and/or ip from config - standardize fn_dstconfig() ? - .. --- DontStarveTogether/dstserver | 35 +++++++++---- lgsm/functions/command_details.sh | 15 +++++- lgsm/functions/command_install.sh | 2 + lgsm/functions/core_functions.sh | 5 ++ lgsm/functions/core_getopt.sh | 79 +++++++++++++++++++++++++++++ lgsm/functions/info_config.sh | 14 ++--- lgsm/functions/install_config.sh | 67 ++++++++++++++++++++++-- lgsm/functions/install_dst_token.sh | 49 ++++++++++++++++++ 8 files changed, 244 insertions(+), 22 deletions(-) create mode 100644 lgsm/functions/install_dst_token.sh diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index 5b9a5c112..0c4b9647a 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161111" ########################## ######## Settings ######## @@ -22,15 +22,29 @@ version="161030" #### Server Settings #### +## Installation Variables +# Visit the following link for more information: +# https://github.com/GameServerManagers/LinuxGSM/wiki/Don't-Starve-Together +sharding="false" +master="true" +shard="Master" +cluster="Cluster_1" +cave="false" + ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters ip="0.0.0.0" +port="11000" +steamauthenticationport="8768" +steammasterserverport="27018" +tickrate="15" + +# Edit with care +persistentstorageroot="${HOME}/.klei" +confdir="DoNotStarveTogether" ## 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 fn_parms(){ -parms="-console -cluster MyDediServer -shard Master" +parms="-bind_ip ${ip} -port ${port} -steam_master_server_port ${steammasterserverport} -steam_authentication_port ${steamauthenticationport} -tick ${tickrate} -persistent_storage_root ${persistentstorageroot} -conf_dir ${confdir} -cluster ${cluster} -shard ${shard}" # -console -cluster MyDediServer -shard Master } @@ -100,11 +114,14 @@ filesdir="${rootdir}/serverfiles" systemdir="${filesdir}" executabledir="${filesdir}/bin" executable="./dontstarve_dedicated_server_nullrenderer" -servercfg="settings.ini" -servercfgdefault="settings.ini" -servercfgdir="${HOME}/.klei/DoNotStarveTogether" +clustercfg="cluster.ini" +clustercfgdir="${persistentstorageroot}/${confdir}/${cluster}" +clustercfgfullpath="${clustercfgdir}/${clustercfg}" +clustercfgdefault="${clustercfgdir}/cluster.ini" +servercfg="server.ini" +servercfgdir="${clustercfgdir}/${shard}" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.ini" +servercfgdefault="server.ini" ## Backup Directory backupdir="${rootdir}/backups" diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 4f39fe2ef..f42378504 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -152,6 +152,16 @@ fn_details_gameserver(){ if [ -n "${tickrate}" ]; then echo -e "${blue}Tick rate:\t${default}${tickrate}" fi + + # Cluster (Don't Starve Together) + if [ -n "${cluster}" ]; then + echo -e "${blue}Cluster:\t${default}${cluster}" + fi + + # Shard (Don't Starve Together) + if [ -n "${shard}" ]; then + echo -e "${blue}Shard:\t${default}${shard}" + fi # TeamSpeak dbplugin if [ -n "${dbplugin}" ]; then @@ -355,7 +365,10 @@ fn_details_dontstarve(){ echo -e "" { echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" - echo -e "> Game\tINBOUND\t${port}\tudp" + echo -e "> Game: Server\tINBOUND\t${port}\tudp" + echo -e "> Game: Master\tINBOUND\t${masterport}\tudp" + echo -e "> Steam: Auth\tINBOUND\t${steamauthenticationport}\tudp" + echo -e "> Steam: Master\tINBOUND\t${steammasterserverport}\tudp" } | column -s $'\t' -t } diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index 43dc9daf5..b415f47a3 100644 --- a/lgsm/functions/command_install.sh +++ b/lgsm/functions/command_install.sh @@ -30,6 +30,8 @@ fi install_config.sh if [ "${gamename}" == "Counter-Strike: Global Offensive" ]||[ "${gamename}" == "Team Fortress 2" ]||[ "${gamename}" == "BrainBread 2" ]; then install_gslt.sh +elif [ "${gamename}" == "Don't Starve Together" ]; then + install_dst_token.sh elif [ "${gamename}" == "TeamSpeak 3" ]; then install_ts3db.sh fi diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index f5ba4ce9e..746027581 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -475,6 +475,11 @@ functionfile="${FUNCNAME}" fn_fetch_function } +install_dst_token.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + install_gsquery.sh(){ functionfile="${FUNCNAME}" fn_fetch_function diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index d629e3711..2a553b582 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -337,6 +337,83 @@ case "${getopt}" in esac } +fn_getopt_dstserver(){ +case "${getopt}" in + st|start) + command_start.sh;; + sp|stop) + command_stop.sh;; + r|restart) + command_restart.sh;; + u|update) + command_update.sh;; + fu|force-update|update-restart) + forceupdate=1; + command_update.sh;; + uf|update-functions) + command_update_functions.sh;; + v|validate) + command_validate.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;; + ct|cluster-token) + install_dst_token.sh;; + 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\t${default}u |Checks and applies updates from SteamCMD." + echo -e "${blue}force-update\t${default}fu |Bypasses the check and applies updates from SteamCMD." + echo -e "${blue}update-functions\t${default}uf |Removes all functions so latest can be downloaded." + echo -e "${blue}validate\t${default}v |Validate server files with SteamCMD." + 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 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}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." + echo -e "${blue}cluster-token\t${default}ct |Configure cluster token." + } | column -s $'\t' -t + esac +} + fn_getopt_gmodserver(){ case "${getopt}" in st|start) @@ -628,6 +705,8 @@ elif [ "${engine}" == "lwjgl2" ]; then fn_getopt_minecraft elif [ "${gamename}" == "TeamSpeak 3" ]; then fn_getopt_teamspeak3 +elif [ "${gamename}" == "Don't Starve Together" ]; then + fn_getopt_dstserver elif [ "${gamename}" == "Garry's Mod" ]; then fn_getopt_gmodserver elif [ "${engine}" == "unreal2" ]; then diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 46e7445a6..4e8fca918 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -81,7 +81,7 @@ fn_info_config_cod(){ } fn_info_config_dontstarve(){ - if [ ! -f "${servercfgfullpath}" ]; then + if [ ! -f "${clustercfgfullpath}" ]; then servername="${unavailable}" serverpassword="${unavailable}" slots="${zero}" @@ -89,12 +89,12 @@ 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 '=\";,:' | 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 '=\";,:' | 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:]') + servername=$(grep "cluster_name" "${clustercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/cluster_name//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + serverpassword=$(grep "cluster_password" "${clustercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/cluster_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + slots=$(grep "max_players" "${clustercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + gamemode=$(grep "game_mode" "${clustercfgfullpath}" | 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" "${clustercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + port=$(grep "master_port" "${clustercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') # Not Set servername=${servername:-"NOT SET"} diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 543315458..adfad2e90 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -10,11 +10,11 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" fn_fetch_default_config(){ mkdir -pv "${lgsmdir}/default-configs" - githuburl="https://github.com/GameServerManagers/Game-Server-Configs/master" + githuburl="https://github.com/GameServerManagers/Game-Server-Configs/dstserver" 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" + fileurl="https://raw.githubusercontent.com/GameServerManagers/Game-Server-Configs/dstserver/${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 } @@ -65,6 +65,64 @@ fn_default_config_remote(){ sleep 1 } +fn_dstconfig(){ + ## cluster.ini + # this config shouldn't be overridden + if [ ! -s "${clustercfgfullpath}" ]; then + echo "copying ${clustercfg} config file." + fn_script_log_info "copying ${clustercfg} config file." + cp -v "${lgsmdir}/default-configs/${clustercfgdefault}" "${clustercfgfullpath}" + sleep 1 + echo "changing server name." + fn_script_log_info "changing server name." + sed -i "s/SERVERNAME/LinuxGSM/g" "${clustercfgfullpath}" + sleep 1 + echo "changing shard mode." + fn_script_log_info "changing shard mode." + sed -i "s/USESHARDING/${sharding}/g" "${clustercfgfullpath}" + sleep 1 + echo "randomizing cluster key." + fn_script_log_info "randomizing cluster key." + randomkey=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1) + sed -i "s/CLUSTERKEY/${randomkey}/g" "${clustercfgfullpath}" + sleep 1 + else + echo "${clustercfg} already exists." + fn_script_log_info "${clustercfg} already exists." + fi + + ## server.ini + echo "copying ${servercfg} config file." + fn_script_log_info "copying ${servercfg} config file." + cp -v "${lgsmdir}/default-configs/${servercfgdefault}" "${servercfgfullpath}" + sleep 1 + # removing unnecessary options (dependent on sharding & shard type) + if [ "sharding" == "false" ]; then + sed -i "s/ISMASTER//g" "${servercfgfullpath}" + sed -d "/SHARDNAME/d" "${servercfgfullpath}" + elif [ "master" == "true" ]; + sed -d "/SHARDNAME/d" "${servercfgfullpath}" + fi + # configure settings + echo "changing shard name." + fn_script_log_info "changing shard name." + sed -i "s/SHARDNAME/${shard}/g" "${servercfgfullpath}" + sleep 1 + echo "changing master setting." + fn_script_log_info "changing master setting." + sed -i "s/ISMASTER/${master}/g" "${servercfgfullpath}" + sleep 1 + + ## worldgenoverride.lua + if [ "${cave}" == "true" ]; then + echo "defining ${shard} as cave in ${servercfgdir}/worldgenoverride.lua." + fn_script_log_info "defining ${shard} as cave in ${servercfgdir}/worldgenoverride.lua." + echo 'return { override_enabled = true, preset = "DST_CAVE", }' > "${servercfgdir}/worldgenoverride.lua" + fi + sleep 1 + echo "" +} + echo "" echo "Downloading ${gamename} Config" echo "=================================" @@ -175,10 +233,9 @@ elif [ "${gamename}" == "Deathmatch Classic" ]; then fn_set_config_vars elif [ "${gamename}" == "Don't Starve Together" ]; then gamedirname="DontStarveTogether" - array_configs+=( Settings.ini ) + array_configs+=( cluster.ini server.ini ) fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars + fn_dstconfig elif [ "${gamename}" == "Double Action: Boogaloo" ]; then gamedirname="DoubleActionBoogaloo" array_configs+=( server.cfg ) diff --git a/lgsm/functions/install_dst_token.sh b/lgsm/functions/install_dst_token.sh new file mode 100644 index 000000000..2e9713e71 --- /dev/null +++ b/lgsm/functions/install_dst_token.sh @@ -0,0 +1,49 @@ +#!/bin/bash +# LGSM install_dst_token.sh function +# Author: Daniel Gibbs & Marvin Lehmann (marvinl97) +# Website: https://gameservermanagers.com +# Description: Configures Don't Starve Together cluster with given token. + +local commandname="INSTALL" +local commandaction="Install" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +echo "" +echo "Enter ${gamename} Cluster Token" +echo "=================================" +sleep 1 +echo "A cluster token is required to run this server!" +echo "Follow the instructions in this link to obtain this key:" +echo "https://gameservermanagers.com/dst-auth-token" +echo "" +if [ -z "${autoinstall}" ]; then + overwritetoken="true" + if [ -s "${clustercfgdir}/cluster_token.txt" ]; then + echo "The cluster token is already set. Do you want to overwrite it?" + fn_script_log_info "Don't Starve Together cluster token is already set" + while true; do + read -e -i "n" -p "Continue? [Y/n]" yn + case $yn in + [Yy]* ) overwritetoken="true"; break;; + [Nn]* ) overwritetoken="false"; break;; + * ) echo "Please answer yes or no.";; + esac + done + fi + if [ "${overwritetoken}" == "true" ]; then + echo "Once you have the cluster token, enter it below" + echo -n "Cluster Token: " + read token + mkdir -pv "${clustercfgdir}" + echo "${token}" > "${clustercfgdir}/cluster_token.txt" + if [ -f "${clustercfgdir}/cluster_token.txt" ]; then + echo "Don't Starve Together cluster token created" + fn_script_log_info "Don't Starve Together cluster token created" + fi + unset overwritetoken + fi +else + echo "You can add your cluster token using the following command" + echo "./${selfname} cluster-token" +fi +echo "" From 4ab4218fbceb79f3a2097cb929d6469d6bbd1436 Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Fri, 11 Nov 2016 19:04:14 +0100 Subject: [PATCH 115/169] Added missing "then" --- 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 adfad2e90..d751fb3a1 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -100,7 +100,7 @@ fn_dstconfig(){ if [ "sharding" == "false" ]; then sed -i "s/ISMASTER//g" "${servercfgfullpath}" sed -d "/SHARDNAME/d" "${servercfgfullpath}" - elif [ "master" == "true" ]; + elif [ "master" == "true" ]; then sed -d "/SHARDNAME/d" "${servercfgfullpath}" fi # configure settings From 316509f3aa7b1e109cba704c3fbba96bfd1521cf Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Fri, 11 Nov 2016 19:04:52 +0100 Subject: [PATCH 116/169] Switched to dstserver-new branch --- DontStarveTogether/dstserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index 0c4b9647a..6b65cacf7 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -87,7 +87,7 @@ branch="" # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" -githubbranch="master" +githubbranch="dstserver-new" ## LinuxGSM Server Details # Do not edit From 8a21bfe48d3e3b405fa766e8f5b79035286c81d6 Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Fri, 11 Nov 2016 21:15:23 +0100 Subject: [PATCH 117/169] Fixes and improvements - moved tick_rate to config - corrected config info (port -> masterport) - corrected default cluster.ini path - added missing $ for variables --- DontStarveTogether/dstserver | 5 ++--- lgsm/functions/info_config.sh | 6 +++--- lgsm/functions/install_config.sh | 9 +++++---- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index 6b65cacf7..859dbbe8f 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -36,7 +36,6 @@ ip="0.0.0.0" port="11000" steamauthenticationport="8768" steammasterserverport="27018" -tickrate="15" # Edit with care persistentstorageroot="${HOME}/.klei" @@ -44,7 +43,7 @@ confdir="DoNotStarveTogether" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters fn_parms(){ -parms="-bind_ip ${ip} -port ${port} -steam_master_server_port ${steammasterserverport} -steam_authentication_port ${steamauthenticationport} -tick ${tickrate} -persistent_storage_root ${persistentstorageroot} -conf_dir ${confdir} -cluster ${cluster} -shard ${shard}" +parms="-bind_ip ${ip} -port ${port} -steam_master_server_port ${steammasterserverport} -steam_authentication_port ${steamauthenticationport} -persistent_storage_root ${persistentstorageroot} -conf_dir ${confdir} -cluster ${cluster} -shard ${shard}" # -console -cluster MyDediServer -shard Master } @@ -117,7 +116,7 @@ executable="./dontstarve_dedicated_server_nullrenderer" clustercfg="cluster.ini" clustercfgdir="${persistentstorageroot}/${confdir}/${cluster}" clustercfgfullpath="${clustercfgdir}/${clustercfg}" -clustercfgdefault="${clustercfgdir}/cluster.ini" +clustercfgdefault="cluster.ini" servercfg="server.ini" servercfgdir="${clustercfgdir}/${shard}" servercfgfullpath="${servercfgdir}/${servercfg}" diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 4e8fca918..99e2038fa 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -87,14 +87,14 @@ fn_info_config_dontstarve(){ slots="${zero}" gamemode="${unavailable}" tickrate="${zero}" - port="${zero}" + masterport="${zero}" else servername=$(grep "cluster_name" "${clustercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/cluster_name//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') serverpassword=$(grep "cluster_password" "${clustercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/cluster_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') slots=$(grep "max_players" "${clustercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') gamemode=$(grep "game_mode" "${clustercfgfullpath}" | 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" "${clustercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') - port=$(grep "master_port" "${clustercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + masterport=$(grep "master_port" "${clustercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') # Not Set servername=${servername:-"NOT SET"} @@ -102,7 +102,7 @@ fn_info_config_dontstarve(){ slots=${slots:-"0"} gamemode=${gamemode:-"NOT SET"} tickrate=${tickrate:-"0"} - port=${port:-"0"} + masterport=${masterport:-"0"} fi } diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index d751fb3a1..a77ef5d2d 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -97,11 +97,11 @@ fn_dstconfig(){ cp -v "${lgsmdir}/default-configs/${servercfgdefault}" "${servercfgfullpath}" sleep 1 # removing unnecessary options (dependent on sharding & shard type) - if [ "sharding" == "false" ]; then + if [ "${sharding}" == "false" ]; then sed -i "s/ISMASTER//g" "${servercfgfullpath}" - sed -d "/SHARDNAME/d" "${servercfgfullpath}" - elif [ "master" == "true" ]; then - sed -d "/SHARDNAME/d" "${servercfgfullpath}" + sed -i "/SHARDNAME/d" "${servercfgfullpath}" + elif [ "${master}" == "true" ]; then + sed -i "/SHARDNAME/d" "${servercfgfullpath}" fi # configure settings echo "changing shard name." @@ -233,6 +233,7 @@ elif [ "${gamename}" == "Deathmatch Classic" ]; then fn_set_config_vars elif [ "${gamename}" == "Don't Starve Together" ]; then gamedirname="DontStarveTogether" + fn_check_cfgdir array_configs+=( cluster.ini server.ini ) fn_fetch_default_config fn_dstconfig From d8bd68e9c8cfbbbe258be78cd74c91fa3c3c87ac Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sat, 12 Nov 2016 18:30:32 -0500 Subject: [PATCH 118/169] 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}" From 96a34c9b0785ea30ebdc446ffe539d175215d270 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 13 Nov 2016 00:15:25 +0000 Subject: [PATCH 119/169] Serverfiles now in order --- lgsm/functions/install_server_files.sh | 30 +++++++++++++------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 819fa1731..dcf167764 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -9,32 +9,32 @@ local commandaction="Install" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" fn_install_server_files(){ - if [ "${gamename}" == "Unreal Tournament 99" ]; then + if [ "${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}" == "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" ]; 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}" == "Call of Duty: United Offensive" ]; then + fileurl="https://s3.amazonaws.com/linuxgsm/coduo-lnxded-1.51b-full.tar.bz2"; filedir="${tmpdir}"; filename="coduo-lnxded-1.51b-full.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="f1804ef13036e2b4ab535db000b19e97" 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 - 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 - 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 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: United Offensive" ]; then - fileurl="https://s3.amazonaws.com/linuxgsm/coduo-lnxded-1.51b-full.tar.bz2"; filedir="${tmpdir}"; filename="coduo-lnxded-1.51b-full.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="f1804ef13036e2b4ab535db000b19e97" - 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 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" + 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" ]; 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}" == "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="2527437b46f1b47f20228d27d72395a6" + 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" fi fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" fn_dl_extract "${filedir}" "${filename}" "${filesdir}" From 059cac1a0f86f1a53a9d1ee4dfddad8503caa946 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 13 Nov 2016 00:18:45 +0000 Subject: [PATCH 120/169] Corrected game name --- JustCause2/jc2server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JustCause2/jc2server b/JustCause2/jc2server index 4c89b31c1..e44781300 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -3,7 +3,7 @@ # Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs # License: MIT License, Copyright (c) 2016 Daniel Gibbs -# Purpose: GAMENAME | Server Management Script +# Purpose: Just Cause 2 | Server Management Script # Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com From efcbc84a6339602bd11b2702f346965a9d35543a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 13 Nov 2016 00:20:41 +0000 Subject: [PATCH 121/169] Updated test with new style --- tests/tests_jc2server.sh | 113 +++++++++++++++++++++++++++------------ 1 file changed, 79 insertions(+), 34 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 7a6b62b5d..47863d0dd 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -1,60 +1,90 @@ #!/bin/bash -# TravisCI Tests: Just Cause 2 -# Server Management Script +# Just Cause 2 +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: TravisCI Test: Just Cause 2 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + version="101716" +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -#### Variables #### +version="161030" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## + +#### 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" + +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="261140" +# 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="$TRAVIS_BRANCH" -# Steam -appid="261140" - -# Server Details -servicename="jc2-server" +## 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" @@ -63,6 +93,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./Jcmp-Server" @@ -70,24 +102,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(){ @@ -144,6 +178,17 @@ 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 From 9a93dc3d2f4bae16558b948198df0de6fadd4496 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 13 Nov 2016 00:46:06 +0000 Subject: [PATCH 123/169] Release number updated --- 7DaysToDie/sdtdserver | 2 +- ARKSurvivalEvolved/arkserver | 2 +- Arma3/arma3server | 2 +- Battlefield1942/bf1942server | 2 +- BlackMesa/bmdmserver | 2 +- BladeSymphony/bsserver | 2 +- BrainBread2/bb2server | 2 +- CallOfDuty/codserver | 2 +- CallOfDuty2/cod2server | 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 | 2 +- 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 +- tests/tests_jc2server.sh | 2 +- 60 files changed, 60 insertions(+), 60 deletions(-) diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index 5825a9248..67607e35a 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index f2a9f2641..c2b30ab09 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Arma3/arma3server b/Arma3/arma3server index e4b4fb83b..9fd409b21 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Battlefield1942/bf1942server b/Battlefield1942/bf1942server index 43212f78a..4f715a224 100644 --- a/Battlefield1942/bf1942server +++ b/Battlefield1942/bf1942server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/BlackMesa/bmdmserver b/BlackMesa/bmdmserver index 62bea603e..e55044e5d 100644 --- a/BlackMesa/bmdmserver +++ b/BlackMesa/bmdmserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/BladeSymphony/bsserver b/BladeSymphony/bsserver index 548adea2a..be7aa2266 100644 --- a/BladeSymphony/bsserver +++ b/BladeSymphony/bsserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/BrainBread2/bb2server b/BrainBread2/bb2server index 86c2fc9c8..b23bd5f31 100644 --- a/BrainBread2/bb2server +++ b/BrainBread2/bb2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/CallOfDuty/codserver b/CallOfDuty/codserver index ae19879e8..497a00cd3 100755 --- a/CallOfDuty/codserver +++ b/CallOfDuty/codserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/CallOfDuty2/cod2server b/CallOfDuty2/cod2server index 74aafdb55..58214c9c4 100755 --- a/CallOfDuty2/cod2server +++ b/CallOfDuty2/cod2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/CodenameCURE/ccserver b/CodenameCURE/ccserver index dd622b8ae..b9682f910 100644 --- a/CodenameCURE/ccserver +++ b/CodenameCURE/ccserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/CounterStrike/csserver b/CounterStrike/csserver index bca3e12a3..5c9906da3 100644 --- a/CounterStrike/csserver +++ b/CounterStrike/csserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/CounterStrikeConditionZero/csczserver b/CounterStrikeConditionZero/csczserver index 5eb278771..75da8b7b8 100644 --- a/CounterStrikeConditionZero/csczserver +++ b/CounterStrikeConditionZero/csczserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index 8018883b9..1dded9f29 100755 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/CounterStrikeSource/cssserver b/CounterStrikeSource/cssserver index 78345eb9c..857faf6f0 100644 --- a/CounterStrikeSource/cssserver +++ b/CounterStrikeSource/cssserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/DayOfDefeat/dodserver b/DayOfDefeat/dodserver index e6db43522..ead2232d4 100644 --- a/DayOfDefeat/dodserver +++ b/DayOfDefeat/dodserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/DayOfDefeatSource/dodsserver b/DayOfDefeatSource/dodsserver index 8386384b6..abe4ab056 100644 --- a/DayOfDefeatSource/dodsserver +++ b/DayOfDefeatSource/dodsserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/DayOfInfamy/doiserver b/DayOfInfamy/doiserver index d39568a53..1aac2bb8c 100644 --- a/DayOfInfamy/doiserver +++ b/DayOfInfamy/doiserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/DeathmatchClassic/dmcserver b/DeathmatchClassic/dmcserver index d2be5c1be..d5c594bde 100644 --- a/DeathmatchClassic/dmcserver +++ b/DeathmatchClassic/dmcserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index 5b9a5c112..99493668f 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/DoubleActionBoogaloo/dabserver b/DoubleActionBoogaloo/dabserver index c080c568a..088b45695 100644 --- a/DoubleActionBoogaloo/dabserver +++ b/DoubleActionBoogaloo/dabserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/FistfulOfFrags/fofserver b/FistfulOfFrags/fofserver index 7dc5cc571..dc74a2534 100644 --- a/FistfulOfFrags/fofserver +++ b/FistfulOfFrags/fofserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index 1bbba189c..adeef431c 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/GoldenEyeSource/gesserver b/GoldenEyeSource/gesserver index 7dd85e2f6..bc44ae33c 100644 --- a/GoldenEyeSource/gesserver +++ b/GoldenEyeSource/gesserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/HalfLife2Deathmatch/hl2dmserver b/HalfLife2Deathmatch/hl2dmserver index 6b0489fe6..a6ab0634e 100644 --- a/HalfLife2Deathmatch/hl2dmserver +++ b/HalfLife2Deathmatch/hl2dmserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/HalfLifeDeathmatch/hldmserver b/HalfLifeDeathmatch/hldmserver index 43e3bf106..b9f1e2432 100644 --- a/HalfLifeDeathmatch/hldmserver +++ b/HalfLifeDeathmatch/hldmserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/HalfLifeDeathmatchSource/hldmsserver b/HalfLifeDeathmatchSource/hldmsserver index 07b2c24cf..b1e2b02e6 100644 --- a/HalfLifeDeathmatchSource/hldmsserver +++ b/HalfLifeDeathmatchSource/hldmsserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Hurtworld/hwserver b/Hurtworld/hwserver index d63e5a346..80fca576c 100644 --- a/Hurtworld/hwserver +++ b/Hurtworld/hwserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Insurgency/insserver b/Insurgency/insserver index 6a2748478..4ba642794 100644 --- a/Insurgency/insserver +++ b/Insurgency/insserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/JustCause2/jc2server b/JustCause2/jc2server index e44781300..5bc7b3623 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -15,7 +15,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/KillingFloor/kfserver b/KillingFloor/kfserver index 5f0e44154..f2253d707 100644 --- a/KillingFloor/kfserver +++ b/KillingFloor/kfserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Left4Dead/l4dserver b/Left4Dead/l4dserver index 2a7a20be1..fc1278113 100644 --- a/Left4Dead/l4dserver +++ b/Left4Dead/l4dserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Left4Dead2/l4d2server b/Left4Dead2/l4d2server index 0a84f1d83..ba9da4f91 100644 --- a/Left4Dead2/l4d2server +++ b/Left4Dead2/l4d2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Minecraft/mcserver b/Minecraft/mcserver index ab69b9010..d0f77e5cd 100644 --- a/Minecraft/mcserver +++ b/Minecraft/mcserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index ace1dac08..7d83cf15d 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/NS2Combat/ns2cserver b/NS2Combat/ns2cserver index 460ce874c..5b50fdfff 100644 --- a/NS2Combat/ns2cserver +++ b/NS2Combat/ns2cserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index 741f37862..7e4c34514 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/NoMoreRoomInHell/nmrihserver b/NoMoreRoomInHell/nmrihserver index d5910ab44..65e220b5f 100644 --- a/NoMoreRoomInHell/nmrihserver +++ b/NoMoreRoomInHell/nmrihserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/OpposingForce/opforserver b/OpposingForce/opforserver index 1c059ed6b..e3db2a701 100644 --- a/OpposingForce/opforserver +++ b/OpposingForce/opforserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/PiratesVikingandKnightsII/pvkiiserver b/PiratesVikingandKnightsII/pvkiiserver index bc7767adb..32310d7f3 100644 --- a/PiratesVikingandKnightsII/pvkiiserver +++ b/PiratesVikingandKnightsII/pvkiiserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/ProjectZomboid/pzserver b/ProjectZomboid/pzserver index 0586a2c13..10fc6066c 100644 --- a/ProjectZomboid/pzserver +++ b/ProjectZomboid/pzserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Quake2/q2server b/Quake2/q2server index 94de84180..8bdbbeba1 100644 --- a/Quake2/q2server +++ b/Quake2/q2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Quake3/q3server b/Quake3/q3server index c302f10c0..ec403b301 100644 --- a/Quake3/q3server +++ b/Quake3/q3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/QuakeLive/qlserver b/QuakeLive/qlserver index 33cc3696c..95dfee65a 100755 --- a/QuakeLive/qlserver +++ b/QuakeLive/qlserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/RedOrchestra/roserver b/RedOrchestra/roserver index 025bf348c..c62ae3144 100644 --- a/RedOrchestra/roserver +++ b/RedOrchestra/roserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Ricochet/ricochetserver b/Ricochet/ricochetserver index 8eb18e0c1..fb1b9c828 100644 --- a/Ricochet/ricochetserver +++ b/Ricochet/ricochetserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Rust/rustserver b/Rust/rustserver index 0ac0ab260..6f34fadc3 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/SeriousSam3BFE/ss3sserver b/SeriousSam3BFE/ss3sserver index f0b1181e9..756782b71 100644 --- a/SeriousSam3BFE/ss3sserver +++ b/SeriousSam3BFE/ss3sserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Starbound/sbserver b/Starbound/sbserver index dd5e70e4e..b27081421 100644 --- a/Starbound/sbserver +++ b/Starbound/sbserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/SvenCoop/svenserver b/SvenCoop/svenserver index 82101fefa..193efdd9a 100644 --- a/SvenCoop/svenserver +++ b/SvenCoop/svenserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/TeamFortress2/tf2server b/TeamFortress2/tf2server index 5adfaa87b..e9343bd63 100644 --- a/TeamFortress2/tf2server +++ b/TeamFortress2/tf2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/TeamFortressClassic/tfcserver b/TeamFortressClassic/tfcserver index 8b6994e4a..d5caad15a 100644 --- a/TeamFortressClassic/tfcserver +++ b/TeamFortressClassic/tfcserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/TeamSpeak3/ts3server b/TeamSpeak3/ts3server index f0bfbb8ea..d400f191f 100644 --- a/TeamSpeak3/ts3server +++ b/TeamSpeak3/ts3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Teeworlds/twserver b/Teeworlds/twserver index bae6a0427..65acc8168 100644 --- a/Teeworlds/twserver +++ b/Teeworlds/twserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Terraria/terrariaserver b/Terraria/terrariaserver index a7b2b6c8b..fb143b6ef 100644 --- a/Terraria/terrariaserver +++ b/Terraria/terrariaserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/UnrealTournament/utserver b/UnrealTournament/utserver index d011b93ad..f2383df8f 100644 --- a/UnrealTournament/utserver +++ b/UnrealTournament/utserver @@ -15,7 +15,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/UnrealTournament2004/ut2k4server b/UnrealTournament2004/ut2k4server index c8c1f55ee..56d61b464 100644 --- a/UnrealTournament2004/ut2k4server +++ b/UnrealTournament2004/ut2k4server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/UnrealTournament3/ut3server b/UnrealTournament3/ut3server index b65b633bb..a9ec44cf8 100644 --- a/UnrealTournament3/ut3server +++ b/UnrealTournament3/ut3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/UnrealTournament99/ut99server b/UnrealTournament99/ut99server index 8787df657..6ccecea9a 100644 --- a/UnrealTournament99/ut99server +++ b/UnrealTournament99/ut99server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/WolfensteinEnemyTerritory/wetserver b/WolfensteinEnemyTerritory/wetserver index c4a5a0db8..1364157b9 100644 --- a/WolfensteinEnemyTerritory/wetserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 47863d0dd..a7886d81e 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -17,7 +17,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## From 91fd6952e44770466b18beea0e04f8346f73d871 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 13 Nov 2016 00:58:59 +0000 Subject: [PATCH 124/169] fix_cod2.sh not required --- 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 765b95712..f5ba4ce9e 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -544,11 +544,6 @@ functionfile="${FUNCNAME}" fn_fetch_function } -fix_cod2.sh(){ -functionfile="${FUNCNAME}" -fn_fetch_function -} - # Calls the global Ctrl-C trap core_trap.sh From cd6d644272c6935ed48c09a2b4a389cd7c583447 Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Sun, 13 Nov 2016 16:43:22 +0100 Subject: [PATCH 125/169] Corrected name of Starbound config --- 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 57fcb7855..872618c1e 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -348,7 +348,7 @@ elif [ "${gamename}" == "Serious Sam 3: BFE" ]; then fn_set_config_vars elif [ "${gamename}" == "Starbound" ]; then gamedirname="Starbound" - array_configs+=( starbound.config ) + array_configs+=( starbound_server.config ) fn_fetch_default_config fn_default_config_remote fn_set_config_vars @@ -417,4 +417,4 @@ elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fn_fetch_default_config fn_default_config_remote fn_set_config_vars -fi \ No newline at end of file +fi From cf1584ebe84a8ef447b91bc2731550c056e89ed4 Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Sun, 13 Nov 2016 16:43:22 +0100 Subject: [PATCH 126/169] Corrected name of Starbound config --- 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 57fcb7855..872618c1e 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -348,7 +348,7 @@ elif [ "${gamename}" == "Serious Sam 3: BFE" ]; then fn_set_config_vars elif [ "${gamename}" == "Starbound" ]; then gamedirname="Starbound" - array_configs+=( starbound.config ) + array_configs+=( starbound_server.config ) fn_fetch_default_config fn_default_config_remote fn_set_config_vars @@ -417,4 +417,4 @@ elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fn_fetch_default_config fn_default_config_remote fn_set_config_vars -fi \ No newline at end of file +fi From c6f5aed2c17f38580108d2d8c0aeb511eba87248 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 13 Nov 2016 20:55:01 +0000 Subject: [PATCH 127/169] Added config.lua for jc2 test --- tests/config.lua | 180 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 180 insertions(+) create mode 100644 tests/config.lua diff --git a/tests/config.lua b/tests/config.lua new file mode 100644 index 000000000..ade07d0ee --- /dev/null +++ b/tests/config.lua @@ -0,0 +1,180 @@ +-- 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 = "8.8.8.8", + -- 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 +} \ No newline at end of file From 043b44d315333c296cdad2a6ec562be8a8b231eb Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 13 Nov 2016 21:13:12 +0000 Subject: [PATCH 128/169] Added bypass for travis tests --- lgsm/functions/check_ip.sh | 2 +- tests/tests_jc2server.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/check_ip.sh b/lgsm/functions/check_ip.sh index c51015299..8141c534e 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" ]&&[ "${travistest}" != "1" ]; then if [ ! -f "/bin/ip" ]; then ipcommand="/sbin/ip" else diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index a7886d81e..0563e0556 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -8,7 +8,7 @@ # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com -version="101716" +travistest=1 # Debugging if [ -f ".dev-debug" ]; then From 8e7574a0393bb3716e56f1fa17a54cbf7068a7e8 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 13 Nov 2016 21:46:16 +0000 Subject: [PATCH 129/169] Removed this config as not required --- tests/config.lua | 180 ----------------------------------------------- 1 file changed, 180 deletions(-) delete mode 100644 tests/config.lua diff --git a/tests/config.lua b/tests/config.lua deleted file mode 100644 index ade07d0ee..000000000 --- a/tests/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 = "8.8.8.8", - -- 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 -} \ No newline at end of file From f0bd1bfc5c02353abe7600132ec5839bea30bc53 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 13 Nov 2016 21:51:45 +0000 Subject: [PATCH 130/169] Release/161113 (#1185) * Fixes #991 (#1165) * stbuf will no longer be used on x64 #991 * Added BF1942 ncurses requirement to CentOS * adding Call of Duty (#1118) * adding Call of Duty 2 (#1127) * Improvements up command_backup.sh added backup trap and improved lockfile support changes to the messages displayed on screen renamed some functions other misc changes --- 7DaysToDie/sdtdserver | 2 +- ARKSurvivalEvolved/arkserver | 2 +- Arma3/arma3server | 2 +- Battlefield1942/bf1942server | 2 +- BlackMesa/bmdmserver | 2 +- BladeSymphony/bsserver | 2 +- BrainBread2/bb2server | 2 +- CallOfDuty/codserver | 185 +++++++++++++++++++++++ CallOfDuty2/cod2server | 186 ++++++++++++++++++++++++ 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 | 2 +- Insurgency/insserver | 2 +- JustCause2/jc2server | 4 +- 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 +- lgsm/functions/check_deps.sh | 11 +- lgsm/functions/check_ip.sh | 2 +- lgsm/functions/command_details.sh | 21 +++ lgsm/functions/command_install.sh | 2 +- lgsm/functions/command_monitor.sh | 2 +- lgsm/functions/core_getopt.sh | 2 +- lgsm/functions/fix.sh | 2 + lgsm/functions/fix_glibc.sh | 2 +- lgsm/functions/gsquery.py | 4 +- lgsm/functions/info_config.sh | 34 ++++- lgsm/functions/info_distro.sh | 6 +- lgsm/functions/info_glibc.sh | 6 + lgsm/functions/install_config.sh | 16 +- lgsm/functions/install_server_files.sh | 12 +- lgsm/functions/update_steamcmd.sh | 5 +- tests/tests_jc2server.sh | 115 ++++++++++----- 75 files changed, 619 insertions(+), 110 deletions(-) create mode 100755 CallOfDuty/codserver create mode 100755 CallOfDuty2/cod2server diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index 5825a9248..67607e35a 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index f2a9f2641..c2b30ab09 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Arma3/arma3server b/Arma3/arma3server index e4b4fb83b..9fd409b21 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Battlefield1942/bf1942server b/Battlefield1942/bf1942server index 43212f78a..4f715a224 100644 --- a/Battlefield1942/bf1942server +++ b/Battlefield1942/bf1942server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/BlackMesa/bmdmserver b/BlackMesa/bmdmserver index 62bea603e..e55044e5d 100644 --- a/BlackMesa/bmdmserver +++ b/BlackMesa/bmdmserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/BladeSymphony/bsserver b/BladeSymphony/bsserver index 548adea2a..be7aa2266 100644 --- a/BladeSymphony/bsserver +++ b/BladeSymphony/bsserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/BrainBread2/bb2server b/BrainBread2/bb2server index 86c2fc9c8..b23bd5f31 100644 --- a/BrainBread2/bb2server +++ b/BrainBread2/bb2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/CallOfDuty/codserver b/CallOfDuty/codserver new file mode 100755 index 000000000..497a00cd3 --- /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="161113" + +########################## +######## 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/CallOfDuty2/cod2server b/CallOfDuty2/cod2server new file mode 100755 index 000000000..58214c9c4 --- /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="161113" + +########################## +######## 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/CodenameCURE/ccserver b/CodenameCURE/ccserver index dd622b8ae..b9682f910 100644 --- a/CodenameCURE/ccserver +++ b/CodenameCURE/ccserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/CounterStrike/csserver b/CounterStrike/csserver index bca3e12a3..5c9906da3 100644 --- a/CounterStrike/csserver +++ b/CounterStrike/csserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/CounterStrikeConditionZero/csczserver b/CounterStrikeConditionZero/csczserver index 5eb278771..75da8b7b8 100644 --- a/CounterStrikeConditionZero/csczserver +++ b/CounterStrikeConditionZero/csczserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index 8018883b9..1dded9f29 100755 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/CounterStrikeSource/cssserver b/CounterStrikeSource/cssserver index 78345eb9c..857faf6f0 100644 --- a/CounterStrikeSource/cssserver +++ b/CounterStrikeSource/cssserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/DayOfDefeat/dodserver b/DayOfDefeat/dodserver index e6db43522..ead2232d4 100644 --- a/DayOfDefeat/dodserver +++ b/DayOfDefeat/dodserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/DayOfDefeatSource/dodsserver b/DayOfDefeatSource/dodsserver index 8386384b6..abe4ab056 100644 --- a/DayOfDefeatSource/dodsserver +++ b/DayOfDefeatSource/dodsserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/DayOfInfamy/doiserver b/DayOfInfamy/doiserver index d39568a53..1aac2bb8c 100644 --- a/DayOfInfamy/doiserver +++ b/DayOfInfamy/doiserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/DeathmatchClassic/dmcserver b/DeathmatchClassic/dmcserver index d2be5c1be..d5c594bde 100644 --- a/DeathmatchClassic/dmcserver +++ b/DeathmatchClassic/dmcserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index 5b9a5c112..99493668f 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/DoubleActionBoogaloo/dabserver b/DoubleActionBoogaloo/dabserver index c080c568a..088b45695 100644 --- a/DoubleActionBoogaloo/dabserver +++ b/DoubleActionBoogaloo/dabserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/FistfulOfFrags/fofserver b/FistfulOfFrags/fofserver index 7dc5cc571..dc74a2534 100644 --- a/FistfulOfFrags/fofserver +++ b/FistfulOfFrags/fofserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index 1bbba189c..adeef431c 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/GoldenEyeSource/gesserver b/GoldenEyeSource/gesserver index 7dd85e2f6..bc44ae33c 100644 --- a/GoldenEyeSource/gesserver +++ b/GoldenEyeSource/gesserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/HalfLife2Deathmatch/hl2dmserver b/HalfLife2Deathmatch/hl2dmserver index 6b0489fe6..a6ab0634e 100644 --- a/HalfLife2Deathmatch/hl2dmserver +++ b/HalfLife2Deathmatch/hl2dmserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/HalfLifeDeathmatch/hldmserver b/HalfLifeDeathmatch/hldmserver index 43e3bf106..b9f1e2432 100644 --- a/HalfLifeDeathmatch/hldmserver +++ b/HalfLifeDeathmatch/hldmserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/HalfLifeDeathmatchSource/hldmsserver b/HalfLifeDeathmatchSource/hldmsserver index 07b2c24cf..b1e2b02e6 100644 --- a/HalfLifeDeathmatchSource/hldmsserver +++ b/HalfLifeDeathmatchSource/hldmsserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Hurtworld/hwserver b/Hurtworld/hwserver index d63e5a346..80fca576c 100644 --- a/Hurtworld/hwserver +++ b/Hurtworld/hwserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Insurgency/insserver b/Insurgency/insserver index 6a2748478..4ba642794 100644 --- a/Insurgency/insserver +++ b/Insurgency/insserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/JustCause2/jc2server b/JustCause2/jc2server index 4c89b31c1..5bc7b3623 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -3,7 +3,7 @@ # Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs # License: MIT License, Copyright (c) 2016 Daniel Gibbs -# Purpose: GAMENAME | Server Management Script +# Purpose: Just Cause 2 | Server Management Script # Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com @@ -15,7 +15,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/KillingFloor/kfserver b/KillingFloor/kfserver index 5f0e44154..f2253d707 100644 --- a/KillingFloor/kfserver +++ b/KillingFloor/kfserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Left4Dead/l4dserver b/Left4Dead/l4dserver index 2a7a20be1..fc1278113 100644 --- a/Left4Dead/l4dserver +++ b/Left4Dead/l4dserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Left4Dead2/l4d2server b/Left4Dead2/l4d2server index 0a84f1d83..ba9da4f91 100644 --- a/Left4Dead2/l4d2server +++ b/Left4Dead2/l4d2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Minecraft/mcserver b/Minecraft/mcserver index ab69b9010..d0f77e5cd 100644 --- a/Minecraft/mcserver +++ b/Minecraft/mcserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index ace1dac08..7d83cf15d 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/NS2Combat/ns2cserver b/NS2Combat/ns2cserver index 460ce874c..5b50fdfff 100644 --- a/NS2Combat/ns2cserver +++ b/NS2Combat/ns2cserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index 741f37862..7e4c34514 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/NoMoreRoomInHell/nmrihserver b/NoMoreRoomInHell/nmrihserver index d5910ab44..65e220b5f 100644 --- a/NoMoreRoomInHell/nmrihserver +++ b/NoMoreRoomInHell/nmrihserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/OpposingForce/opforserver b/OpposingForce/opforserver index 1c059ed6b..e3db2a701 100644 --- a/OpposingForce/opforserver +++ b/OpposingForce/opforserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/PiratesVikingandKnightsII/pvkiiserver b/PiratesVikingandKnightsII/pvkiiserver index bc7767adb..32310d7f3 100644 --- a/PiratesVikingandKnightsII/pvkiiserver +++ b/PiratesVikingandKnightsII/pvkiiserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/ProjectZomboid/pzserver b/ProjectZomboid/pzserver index 0586a2c13..10fc6066c 100644 --- a/ProjectZomboid/pzserver +++ b/ProjectZomboid/pzserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Quake2/q2server b/Quake2/q2server index 94de84180..8bdbbeba1 100644 --- a/Quake2/q2server +++ b/Quake2/q2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Quake3/q3server b/Quake3/q3server index c302f10c0..ec403b301 100644 --- a/Quake3/q3server +++ b/Quake3/q3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/QuakeLive/qlserver b/QuakeLive/qlserver index 33cc3696c..95dfee65a 100755 --- a/QuakeLive/qlserver +++ b/QuakeLive/qlserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/RedOrchestra/roserver b/RedOrchestra/roserver index 025bf348c..c62ae3144 100644 --- a/RedOrchestra/roserver +++ b/RedOrchestra/roserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Ricochet/ricochetserver b/Ricochet/ricochetserver index 8eb18e0c1..fb1b9c828 100644 --- a/Ricochet/ricochetserver +++ b/Ricochet/ricochetserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Rust/rustserver b/Rust/rustserver index 870f42d04..6300440a0 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/SeriousSam3BFE/ss3sserver b/SeriousSam3BFE/ss3sserver index f0b1181e9..756782b71 100644 --- a/SeriousSam3BFE/ss3sserver +++ b/SeriousSam3BFE/ss3sserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Starbound/sbserver b/Starbound/sbserver index dd5e70e4e..b27081421 100644 --- a/Starbound/sbserver +++ b/Starbound/sbserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/SvenCoop/svenserver b/SvenCoop/svenserver index 82101fefa..193efdd9a 100644 --- a/SvenCoop/svenserver +++ b/SvenCoop/svenserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/TeamFortress2/tf2server b/TeamFortress2/tf2server index 5adfaa87b..e9343bd63 100644 --- a/TeamFortress2/tf2server +++ b/TeamFortress2/tf2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/TeamFortressClassic/tfcserver b/TeamFortressClassic/tfcserver index 8b6994e4a..d5caad15a 100644 --- a/TeamFortressClassic/tfcserver +++ b/TeamFortressClassic/tfcserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/TeamSpeak3/ts3server b/TeamSpeak3/ts3server index f0bfbb8ea..d400f191f 100644 --- a/TeamSpeak3/ts3server +++ b/TeamSpeak3/ts3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Teeworlds/twserver b/Teeworlds/twserver index bae6a0427..65acc8168 100644 --- a/Teeworlds/twserver +++ b/Teeworlds/twserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/Terraria/terrariaserver b/Terraria/terrariaserver index a7b2b6c8b..fb143b6ef 100644 --- a/Terraria/terrariaserver +++ b/Terraria/terrariaserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/UnrealTournament/utserver b/UnrealTournament/utserver index d011b93ad..f2383df8f 100644 --- a/UnrealTournament/utserver +++ b/UnrealTournament/utserver @@ -15,7 +15,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/UnrealTournament2004/ut2k4server b/UnrealTournament2004/ut2k4server index c8c1f55ee..56d61b464 100644 --- a/UnrealTournament2004/ut2k4server +++ b/UnrealTournament2004/ut2k4server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/UnrealTournament3/ut3server b/UnrealTournament3/ut3server index b65b633bb..a9ec44cf8 100644 --- a/UnrealTournament3/ut3server +++ b/UnrealTournament3/ut3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/UnrealTournament99/ut99server b/UnrealTournament99/ut99server index 8787df657..6ccecea9a 100644 --- a/UnrealTournament99/ut99server +++ b/UnrealTournament99/ut99server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/WolfensteinEnemyTerritory/wetserver b/WolfensteinEnemyTerritory/wetserver index c4a5a0db8..1364157b9 100644 --- a/WolfensteinEnemyTerritory/wetserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161030" +version="161113" ########################## ######## Settings ######## diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index eb9d21f03..62d9ed6f6 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -185,9 +185,12 @@ 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 ) + # Call of Duty + 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 javaversion=$(java -version 2>&1 | grep "version") @@ -254,6 +257,12 @@ 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 ) + # Call of Duty + 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 javaversion=$(java -version 2>&1 | grep "version") diff --git a/lgsm/functions/check_ip.sh b/lgsm/functions/check_ip.sh index c51015299..8141c534e 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" ]&&[ "${travistest}" != "1" ]; then if [ ! -f "/bin/ip" ]; then ipcommand="/sbin/ip" else diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 5743e17b0..4ce097e1a 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 "" @@ -643,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. @@ -698,6 +715,10 @@ 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}" == "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 d2feadb05..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}" == "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_getopt.sh b/lgsm/functions/core_getopt.sh index d07f82d04..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}" == "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/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/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 7982ebd69..198ffa656 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -66,6 +66,33 @@ 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_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 @@ -103,7 +130,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:]') @@ -510,6 +536,12 @@ 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 +# 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_distro.sh b/lgsm/functions/info_distro.sh index cc4037d72..16973cfc1 100644 --- a/lgsm/functions/info_distro.sh +++ b/lgsm/functions/info_distro.sh @@ -108,12 +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 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. diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index 73ef6251d..b5e4cb0a2 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -14,6 +14,12 @@ 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="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 bdd7cb23e..872618c1e 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -113,6 +113,18 @@ 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}" == "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 ) @@ -336,7 +348,7 @@ elif [ "${gamename}" == "Serious Sam 3: BFE" ]; then fn_set_config_vars elif [ "${gamename}" == "Starbound" ]; then gamedirname="Starbound" - array_configs+=( starbound.config ) + array_configs+=( starbound_server.config ) fn_fetch_default_config fn_default_config_remote fn_set_config_vars @@ -405,4 +417,4 @@ elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fn_fetch_default_config fn_default_config_remote fn_set_config_vars -fi \ No newline at end of file +fi diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 7f4072a81..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 @@ -23,13 +25,14 @@ 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 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}" @@ -61,8 +64,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 +138,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 diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 7a6b62b5d..0563e0556 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -1,60 +1,90 @@ #!/bin/bash -# TravisCI Tests: Just Cause 2 -# Server Management Script +# Just Cause 2 +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: TravisCI Test: Just Cause 2 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com -version="101716" +travistest=1 + +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -#### Variables #### +version="161113" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## + +#### 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" + +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="261140" +# 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="$TRAVIS_BRANCH" -# Steam -appid="261140" - -# Server Details -servicename="jc2-server" +## 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" @@ -63,6 +93,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./Jcmp-Server" @@ -70,24 +102,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(){ @@ -144,6 +178,17 @@ 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 From 9bf74b80c266c92110029a1aa6333acec1580299 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 9 Nov 2016 01:34:54 +0100 Subject: [PATCH 131/169] executable hotfix for Rust | fixes #1171 --- Rust/rustserver | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rust/rustserver b/Rust/rustserver index 6f34fadc3..6300440a0 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -116,7 +116,7 @@ filesdir="${rootdir}/serverfiles" ## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" -executable="./RustDedicated" +executable="LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`dirname $0`/RustDedicated_Data/Plugins/x86_64 ./RustDedicated" serveridentitydir="${systemdir}/server/${servicename}" servercfg="server.cfg" servercfgdefault="server.cfg" @@ -214,4 +214,4 @@ fi core_dl.sh core_functions.sh getopt=$1 -core_getopt.sh \ No newline at end of file +core_getopt.sh From abcb34ac535fcfc3d0b64786257694884108930d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 7 Nov 2016 19:34:42 +0100 Subject: [PATCH 132/169] hotfix for ts3 server pass --- 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 57dcbfa60..30bbfccc8 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -37,7 +37,7 @@ fn_start_teamspeak3(){ date > "${rootdir}/${lockselfname}" cd "${executabledir}" if [ "${ts3serverpass}" == "1" ];then - ./ts3server_startscript.sh start serveradmin_password="${newpassword}" inifile="${servercfgfullpath}" + ./ts3server_startscript.sh start serveradmin_password="${newpassword}" inifile="${servercfgfullpath}" > /dev/null 2>&1 else ./ts3server_startscript.sh start inifile="${servercfgfullpath}" > /dev/null 2>&1 fi From 2ce6e91e44daee17e18f49dec05888e83ff96801 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 7 Nov 2016 19:33:50 +0100 Subject: [PATCH 133/169] hotfix for ts3 server pass Issue: other functions were triggering core_exit.sh Fix: bypass them bonus: better output Sample output: http://hastebin.com/quxulezila.rb --- lgsm/functions/command_ts3_server_pass.sh | 26 ++++++++++++----------- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/lgsm/functions/command_ts3_server_pass.sh b/lgsm/functions/command_ts3_server_pass.sh index 89c3cd036..1a9896889 100644 --- a/lgsm/functions/command_ts3_server_pass.sh +++ b/lgsm/functions/command_ts3_server_pass.sh @@ -29,22 +29,17 @@ fn_serveradmin_password_prompt(){ done fn_script_log_info "Initiating ${gamename} ServerAdmin password change" read -p "Enter new password : " newpassword - } +} - fn_serveradmin_password_set(){ - fn_print_info_nl "Applying new password" - fn_script_log_info "Applying new password" +fn_serveradmin_password_set(){ + fn_print_info_nl "Starting server with new password..." + fn_script_log_info "Starting server with new password" sleep 1 - # Stop any running server - command_stop.sh # Start server in "new password mode" ts3serverpass="1" - fn_print_info_nl "Starting server with new password" + exitbypass="1" command_start.sh - # Stop server in "new password mode" - command_stop.sh - ts3serverpass="0" fn_print_ok_nl "Password applied" fn_script_log_pass "New ServerAdmin password applied" sleep 1 @@ -55,9 +50,16 @@ check.sh fn_serveradmin_password_prompt check_status.sh if [ "${status}" != "0" ]; then + # Stop any running server + exitbypass="1" + command_stop.sh fn_serveradmin_password_set - command_start.sh + ts3serverpass="0" + fn_print_info_nl "Restarting server normally" + fn_script_log_info "Restarting server normally" + command_restart.sh else fn_serveradmin_password_set + command_stop.sh fi -core_exit.sh \ No newline at end of file +core_exit.sh From 904cd4cbec73a3ed32b9fd3ad6855dac0718acfa Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Fri, 18 Nov 2016 12:41:44 +0100 Subject: [PATCH 134/169] Switched config branch and removed token message after install --- lgsm/functions/install_complete.sh | 6 ------ lgsm/functions/install_config.sh | 5 +++-- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/lgsm/functions/install_complete.sh b/lgsm/functions/install_complete.sh index af522d2ee..4a38d79b4 100644 --- a/lgsm/functions/install_complete.sh +++ b/lgsm/functions/install_complete.sh @@ -8,12 +8,6 @@ local commandname="INSTALL" local commandaction="Install" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -if [ "${gamename}" == "Don't Starve Together" ]; then - echo "" - echo "An Authentication Token is required to run this server!" - echo "Follow the instructions in this link to obtain this key" - echo " https://gameservermanagers.com/dst-auth-token" -fi echo "=================================" echo "Install Complete!" fn_script_log_info "Install Complete!" diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index a77ef5d2d..9b0e5fc21 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -10,11 +10,11 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" fn_fetch_default_config(){ mkdir -pv "${lgsmdir}/default-configs" - githuburl="https://github.com/GameServerManagers/Game-Server-Configs/dstserver" + githuburl="https://github.com/GameServerManagers/Game-Server-Configs/master" for config in "${array_configs[@]}" do - fileurl="https://raw.githubusercontent.com/GameServerManagers/Game-Server-Configs/dstserver/${gamedirname}/${config}"; filedir="${lgsmdir}/default-configs"; filename="${config}"; executecmd="noexecute" run="norun"; force="noforce" + 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 } @@ -65,6 +65,7 @@ fn_default_config_remote(){ sleep 1 } +# this should be somehow standardized fn_dstconfig(){ ## cluster.ini # this config shouldn't be overridden From 2ef211d0bc5c5b34b2f484fcb3a65757ac1488ae Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 18 Nov 2016 13:05:18 +0100 Subject: [PATCH 135/169] Check variables first & remove lockfile earlier --- lgsm/functions/command_backup.sh | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 34d014c42..8e18a619b 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -127,18 +127,20 @@ fn_backup_compression(){ 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 + # Remove lock file + rm -f "${tmpdir}/.backup.lock" } # 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 + # Clear if backup variables are set + if [ -n "${maxbackups}" ]&&[ -n "${maxbackupdays}" ]; then + # 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 anything can be cleared if [ "${backupquotadiff}" -gt "0" ]||[ "${backupsoudatedcount}" -gt "0" ]; then fn_print_dots "Pruning" @@ -195,8 +197,4 @@ fn_backup_dir fn_backup_compression fn_backup_prune fn_backup_start_server - -# Remove lock file -rm -f "${tmpdir}/.backup.lock" - core_exit.sh From 4092d492784f182b8850ef94e7f8eed3c816d775 Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Fri, 18 Nov 2016 16:22:41 +0100 Subject: [PATCH 136/169] Fixed Project Zomboid config handling - Corrected default config names - Use service name for config and "server name" - Added fn_check_cfgdir call to create non-existing config directory --- ProjectZomboid/pzserver | 8 ++++---- lgsm/functions/install_config.sh | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/ProjectZomboid/pzserver b/ProjectZomboid/pzserver index 10fc6066c..6fbc80297 100644 --- a/ProjectZomboid/pzserver +++ b/ProjectZomboid/pzserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## @@ -27,7 +27,7 @@ adminpassword="CHANGE_ME" ip="0.0.0.0" fn_parms(){ -parms="-ip ${ip} -adminpassword \"${adminpassword}\"" +parms="-ip ${ip} -adminpassword \"${adminpassword}\" -servername ${servicename}" } #### LinuxGSM Settings #### @@ -96,8 +96,8 @@ filesdir="${rootdir}/serverfiles" systemdir="${filesdir}" executabledir="${filesdir}" executable="./start-server.sh" -servercfg="server.ini" -servercfgdefault="server.cfg" +servercfg="${servicename}.ini" +servercfgdefault="server.ini" servercfgdir="${HOME}/Zomboid/Server" servercfgfullpath="${servercfgdir}/${servercfg}" diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 872618c1e..30292a276 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -298,6 +298,7 @@ elif [ "${gamename}" == "Pirates, Vikings, and Knights II" ]; then fn_set_config_vars elif [ "${gamename}" == "Project Zomboid" ]; then gamedirname="ProjectZomboid" + fn_check_cfgdir array_configs+=( server.ini ) fn_fetch_default_config fn_default_config_remote From 2d653e765354b2198ceae9ef41180d756eee7e3a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 18 Nov 2016 16:16:13 +0000 Subject: [PATCH 137/169] Version to remain the same with hotfixes --- ProjectZomboid/pzserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProjectZomboid/pzserver b/ProjectZomboid/pzserver index 6fbc80297..92f7170a6 100644 --- a/ProjectZomboid/pzserver +++ b/ProjectZomboid/pzserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161113" ########################## ######## Settings ######## From 0f18a405edf84658044cd0b3b045b9ca1e8bf84c Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 18 Nov 2016 17:00:57 +0000 Subject: [PATCH 138/169] Removed Info about channeltags All info about the channeltag var is now on the wiki. It is now the standard method to have info relating to vars in the wiki rather than in the script. --- 7DaysToDie/sdtdserver | 3 --- ARKSurvivalEvolved/arkserver | 3 --- Arma3/arma3server | 3 --- Battlefield1942/bf1942server | 3 --- BlackMesa/bmdmserver | 3 --- BladeSymphony/bsserver | 3 --- BrainBread2/bb2server | 3 --- CallOfDuty/codserver | 3 --- CallOfDuty2/cod2server | 1 + CodenameCURE/ccserver | 3 --- CounterStrike/csserver | 3 --- CounterStrikeConditionZero/csczserver | 3 --- CounterStrikeGlobalOffensive/csgoserver | 3 --- CounterStrikeSource/cssserver | 3 --- DayOfDefeat/dodserver | 3 --- DayOfDefeatSource/dodsserver | 3 --- DayOfInfamy/doiserver | 3 --- DeathmatchClassic/dmcserver | 3 --- DontStarveTogether/dstserver | 3 --- DoubleActionBoogaloo/dabserver | 3 --- EmpiresMod/emserver | 3 --- FistfulOfFrags/fofserver | 3 --- GarrysMod/gmodserver | 3 --- GoldenEyeSource/gesserver | 3 --- HalfLife2Deathmatch/hl2dmserver | 3 --- HalfLifeDeathmatch/hldmserver | 3 --- HalfLifeDeathmatchSource/hldmsserver | 3 --- Hurtworld/hwserver | 3 --- Insurgency/insserver | 3 --- JustCause2/jc2server | 3 --- KillingFloor/kfserver | 3 --- Left4Dead/l4dserver | 3 --- Left4Dead2/l4d2server | 3 --- Minecraft/mcserver | 3 --- Mumble/mumbleserver | 3 --- NS2Combat/ns2cserver | 3 --- NaturalSelection2/ns2server | 3 --- NoMoreRoomInHell/nmrihserver | 3 --- OpposingForce/opforserver | 3 --- PiratesVikingandKnightsII/pvkiiserver | 3 --- ProjectZomboid/pzserver | 3 --- Quake2/q2server | 3 --- Quake3/q3server | 3 --- QuakeLive/qlserver | 3 --- QuakeWorld/qwserver | 3 --- RedOrchestra/roserver | 3 --- Ricochet/ricochetserver | 3 --- Rust/rustserver | 3 --- SeriousSam3BFE/ss3sserver | 3 --- Starbound/sbserver | 3 --- SvenCoop/svenserver | 3 --- TeamFortress2/tf2server | 3 --- TeamFortressClassic/tfcserver | 3 --- TeamSpeak3/ts3server | 3 --- Teeworlds/twserver | 3 --- Terraria/terrariaserver | 3 --- UnrealTournament/utserver | 3 --- UnrealTournament2004/ut2k4server | 3 --- UnrealTournament3/ut3server | 3 --- UnrealTournament99/ut99server | 3 --- WolfensteinEnemyTerritory/wetserver | 3 --- 61 files changed, 1 insertion(+), 180 deletions(-) diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index 5b835fd49..db4f71d04 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -46,9 +46,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index 66fc67313..0f55c9182 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -48,9 +48,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/Arma3/arma3server b/Arma3/arma3server index 9532b6e65..ce61fb0a2 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -62,9 +62,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/Battlefield1942/bf1942server b/Battlefield1942/bf1942server index 46157e9d1..a42a8424d 100644 --- a/Battlefield1942/bf1942server +++ b/Battlefield1942/bf1942server @@ -38,9 +38,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/BlackMesa/bmdmserver b/BlackMesa/bmdmserver index d7d687882..323ee56c0 100644 --- a/BlackMesa/bmdmserver +++ b/BlackMesa/bmdmserver @@ -52,9 +52,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/BladeSymphony/bsserver b/BladeSymphony/bsserver index 73c3e2c27..f3ec8e51c 100644 --- a/BladeSymphony/bsserver +++ b/BladeSymphony/bsserver @@ -51,9 +51,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/BrainBread2/bb2server b/BrainBread2/bb2server index c594a5916..c7537e483 100644 --- a/BrainBread2/bb2server +++ b/BrainBread2/bb2server @@ -55,9 +55,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/CallOfDuty/codserver b/CallOfDuty/codserver index c16f06bbe..162c7e7cf 100755 --- a/CallOfDuty/codserver +++ b/CallOfDuty/codserver @@ -44,9 +44,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup diff --git a/CallOfDuty2/cod2server b/CallOfDuty2/cod2server index 58214c9c4..c032e42a0 100755 --- a/CallOfDuty2/cod2server +++ b/CallOfDuty2/cod2server @@ -45,6 +45,7 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +channeltag="" ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup maxbackups="4" diff --git a/CodenameCURE/ccserver b/CodenameCURE/ccserver index b36a06d86..5f2524e53 100644 --- a/CodenameCURE/ccserver +++ b/CodenameCURE/ccserver @@ -45,9 +45,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/CounterStrike/csserver b/CounterStrike/csserver index 6006389be..0686a5e7c 100644 --- a/CounterStrike/csserver +++ b/CounterStrike/csserver @@ -46,9 +46,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/CounterStrikeConditionZero/csczserver b/CounterStrikeConditionZero/csczserver index a3a7ea5db..2f966f0bd 100644 --- a/CounterStrikeConditionZero/csczserver +++ b/CounterStrikeConditionZero/csczserver @@ -46,9 +46,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index 7bc7b2bf7..144a06d9a 100755 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -70,9 +70,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/CounterStrikeSource/cssserver b/CounterStrikeSource/cssserver index dc36768b9..93d2cdcdf 100644 --- a/CounterStrikeSource/cssserver +++ b/CounterStrikeSource/cssserver @@ -53,9 +53,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/DayOfDefeat/dodserver b/DayOfDefeat/dodserver index 51c0faedc..7346295dc 100644 --- a/DayOfDefeat/dodserver +++ b/DayOfDefeat/dodserver @@ -47,9 +47,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/DayOfDefeatSource/dodsserver b/DayOfDefeatSource/dodsserver index fea6dbf5c..402dbc983 100644 --- a/DayOfDefeatSource/dodsserver +++ b/DayOfDefeatSource/dodsserver @@ -47,9 +47,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/DayOfInfamy/doiserver b/DayOfInfamy/doiserver index 6b35f577e..00db47d6e 100644 --- a/DayOfInfamy/doiserver +++ b/DayOfInfamy/doiserver @@ -49,9 +49,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/DeathmatchClassic/dmcserver b/DeathmatchClassic/dmcserver index 793f9e1e2..bb41ab37b 100644 --- a/DeathmatchClassic/dmcserver +++ b/DeathmatchClassic/dmcserver @@ -46,9 +46,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index b62687a0d..bdba108c0 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -45,9 +45,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/DoubleActionBoogaloo/dabserver b/DoubleActionBoogaloo/dabserver index e0d98c589..078811193 100644 --- a/DoubleActionBoogaloo/dabserver +++ b/DoubleActionBoogaloo/dabserver @@ -47,9 +47,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/EmpiresMod/emserver b/EmpiresMod/emserver index abcd6aaf3..14c7003cc 100644 --- a/EmpiresMod/emserver +++ b/EmpiresMod/emserver @@ -31,9 +31,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/FistfulOfFrags/fofserver b/FistfulOfFrags/fofserver index 0eaec5b02..6b5ff8e24 100644 --- a/FistfulOfFrags/fofserver +++ b/FistfulOfFrags/fofserver @@ -47,9 +47,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index dc72af144..06a1fe896 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -62,9 +62,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/GoldenEyeSource/gesserver b/GoldenEyeSource/gesserver index 1a992a17a..c118daa39 100644 --- a/GoldenEyeSource/gesserver +++ b/GoldenEyeSource/gesserver @@ -47,9 +47,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/HalfLife2Deathmatch/hl2dmserver b/HalfLife2Deathmatch/hl2dmserver index 192823d5c..637c84f2a 100644 --- a/HalfLife2Deathmatch/hl2dmserver +++ b/HalfLife2Deathmatch/hl2dmserver @@ -47,9 +47,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/HalfLifeDeathmatch/hldmserver b/HalfLifeDeathmatch/hldmserver index 4a3054161..efabe345a 100644 --- a/HalfLifeDeathmatch/hldmserver +++ b/HalfLifeDeathmatch/hldmserver @@ -46,9 +46,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/HalfLifeDeathmatchSource/hldmsserver b/HalfLifeDeathmatchSource/hldmsserver index 55419cbdc..ad9538e42 100644 --- a/HalfLifeDeathmatchSource/hldmsserver +++ b/HalfLifeDeathmatchSource/hldmsserver @@ -47,9 +47,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/Hurtworld/hwserver b/Hurtworld/hwserver index 186520301..1aa96c147 100644 --- a/Hurtworld/hwserver +++ b/Hurtworld/hwserver @@ -59,9 +59,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/Insurgency/insserver b/Insurgency/insserver index 9f27f05b2..4476c6333 100644 --- a/Insurgency/insserver +++ b/Insurgency/insserver @@ -49,9 +49,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/JustCause2/jc2server b/JustCause2/jc2server index 42c9174d8..8eeb52ef0 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -41,9 +41,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/KillingFloor/kfserver b/KillingFloor/kfserver index f4e1bd9b7..5b3176db3 100644 --- a/KillingFloor/kfserver +++ b/KillingFloor/kfserver @@ -49,9 +49,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/Left4Dead/l4dserver b/Left4Dead/l4dserver index c20702057..a232ec03d 100644 --- a/Left4Dead/l4dserver +++ b/Left4Dead/l4dserver @@ -46,9 +46,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/Left4Dead2/l4d2server b/Left4Dead2/l4d2server index 43c90bd78..3e29ecc02 100644 --- a/Left4Dead2/l4d2server +++ b/Left4Dead2/l4d2server @@ -46,9 +46,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/Minecraft/mcserver b/Minecraft/mcserver index ca10d60bf..45bd0da07 100644 --- a/Minecraft/mcserver +++ b/Minecraft/mcserver @@ -41,9 +41,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index 70d80981f..f4ac59740 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -40,9 +40,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/NS2Combat/ns2cserver b/NS2Combat/ns2cserver index 20315afcc..b839d1039 100644 --- a/NS2Combat/ns2cserver +++ b/NS2Combat/ns2cserver @@ -58,9 +58,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index 5a360acc3..d672cdb1d 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -58,9 +58,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/NoMoreRoomInHell/nmrihserver b/NoMoreRoomInHell/nmrihserver index 1b2d1518b..5937fc1db 100644 --- a/NoMoreRoomInHell/nmrihserver +++ b/NoMoreRoomInHell/nmrihserver @@ -52,9 +52,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/OpposingForce/opforserver b/OpposingForce/opforserver index 797b6bbd4..00e7ee919 100644 --- a/OpposingForce/opforserver +++ b/OpposingForce/opforserver @@ -46,9 +46,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/PiratesVikingandKnightsII/pvkiiserver b/PiratesVikingandKnightsII/pvkiiserver index b5eebef48..81f73ac9d 100644 --- a/PiratesVikingandKnightsII/pvkiiserver +++ b/PiratesVikingandKnightsII/pvkiiserver @@ -47,9 +47,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/ProjectZomboid/pzserver b/ProjectZomboid/pzserver index a6cea666c..b6c18b7ab 100644 --- a/ProjectZomboid/pzserver +++ b/ProjectZomboid/pzserver @@ -41,9 +41,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/Quake2/q2server b/Quake2/q2server index 345d955cf..571a6d9e1 100644 --- a/Quake2/q2server +++ b/Quake2/q2server @@ -42,9 +42,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup diff --git a/Quake3/q3server b/Quake3/q3server index 1f019b8d3..84e86056a 100644 --- a/Quake3/q3server +++ b/Quake3/q3server @@ -43,9 +43,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup diff --git a/QuakeLive/qlserver b/QuakeLive/qlserver index c3d86ada1..332cf1e87 100755 --- a/QuakeLive/qlserver +++ b/QuakeLive/qlserver @@ -50,9 +50,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/QuakeWorld/qwserver b/QuakeWorld/qwserver index b6f7d27a9..5e1bb60de 100644 --- a/QuakeWorld/qwserver +++ b/QuakeWorld/qwserver @@ -24,9 +24,6 @@ email="email@example.com" # https://www.pushbullet.com/#settings pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" # Start Variables diff --git a/RedOrchestra/roserver b/RedOrchestra/roserver index 972efd81a..f8d8f88e5 100644 --- a/RedOrchestra/roserver +++ b/RedOrchestra/roserver @@ -47,9 +47,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/Ricochet/ricochetserver b/Ricochet/ricochetserver index 22949248b..f1ceeac69 100644 --- a/Ricochet/ricochetserver +++ b/Ricochet/ricochetserver @@ -70,9 +70,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/Rust/rustserver b/Rust/rustserver index 7b276f9df..c4c1362fd 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -62,9 +62,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/SeriousSam3BFE/ss3sserver b/SeriousSam3BFE/ss3sserver index 9b96dc7f1..ce7d58658 100644 --- a/SeriousSam3BFE/ss3sserver +++ b/SeriousSam3BFE/ss3sserver @@ -42,9 +42,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/Starbound/sbserver b/Starbound/sbserver index fc66dce94..eeecfb816 100644 --- a/Starbound/sbserver +++ b/Starbound/sbserver @@ -46,9 +46,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/SvenCoop/svenserver b/SvenCoop/svenserver index 429555ef4..ea2558ef3 100644 --- a/SvenCoop/svenserver +++ b/SvenCoop/svenserver @@ -46,9 +46,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/TeamFortress2/tf2server b/TeamFortress2/tf2server index 43b6080d9..440757827 100644 --- a/TeamFortress2/tf2server +++ b/TeamFortress2/tf2server @@ -50,9 +50,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/TeamFortressClassic/tfcserver b/TeamFortressClassic/tfcserver index 0da836111..a9679165e 100644 --- a/TeamFortressClassic/tfcserver +++ b/TeamFortressClassic/tfcserver @@ -46,9 +46,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/TeamSpeak3/ts3server b/TeamSpeak3/ts3server index b74afd002..bed364a8f 100644 --- a/TeamSpeak3/ts3server +++ b/TeamSpeak3/ts3server @@ -34,9 +34,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/Teeworlds/twserver b/Teeworlds/twserver index 3f8e1291c..61f3b9ba6 100644 --- a/Teeworlds/twserver +++ b/Teeworlds/twserver @@ -46,9 +46,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/Terraria/terrariaserver b/Terraria/terrariaserver index 9bbe56477..539e734ff 100644 --- a/Terraria/terrariaserver +++ b/Terraria/terrariaserver @@ -46,9 +46,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update diff --git a/UnrealTournament/utserver b/UnrealTournament/utserver index 54b67e329..06fa13dea 100644 --- a/UnrealTournament/utserver +++ b/UnrealTournament/utserver @@ -48,9 +48,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup diff --git a/UnrealTournament2004/ut2k4server b/UnrealTournament2004/ut2k4server index dd4c24931..e7cd59dbf 100644 --- a/UnrealTournament2004/ut2k4server +++ b/UnrealTournament2004/ut2k4server @@ -43,9 +43,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup diff --git a/UnrealTournament3/ut3server b/UnrealTournament3/ut3server index 5f5dd2c8b..f72a0e452 100644 --- a/UnrealTournament3/ut3server +++ b/UnrealTournament3/ut3server @@ -54,9 +54,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup diff --git a/UnrealTournament99/ut99server b/UnrealTournament99/ut99server index 41f9425f4..3e3ea17e4 100644 --- a/UnrealTournament99/ut99server +++ b/UnrealTournament99/ut99server @@ -43,9 +43,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup diff --git a/WolfensteinEnemyTerritory/wetserver b/WolfensteinEnemyTerritory/wetserver index 91d2da13b..00b74c98b 100644 --- a/WolfensteinEnemyTerritory/wetserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -42,9 +42,6 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" -# Pushbullet Channel | Do not set unless the channel exists on the -# account associated with the access token. Set without using the '#' -# E.g: "thisisachanneltag" would push to #thisisachanneltag channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update From bdc36f544398cb3db56d51abfc3970b1f90a4439 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 18 Nov 2016 18:45:18 +0000 Subject: [PATCH 139/169] added missing return --- 7DaysToDie/sdtdserver | 1 + ARKSurvivalEvolved/arkserver | 1 + Arma3/arma3server | 1 + Battlefield1942/bf1942server | 1 + BlackMesa/bmdmserver | 1 + BladeSymphony/bsserver | 1 + BrainBread2/bb2server | 1 + CallOfDuty/codserver | 1 + CallOfDuty2/cod2server | 1 + CodenameCURE/ccserver | 1 + CounterStrike/csserver | 1 + CounterStrikeConditionZero/csczserver | 1 + CounterStrikeGlobalOffensive/csgoserver | 1 + CounterStrikeSource/cssserver | 1 + DayOfDefeat/dodserver | 1 + DayOfDefeatSource/dodsserver | 1 + DayOfInfamy/doiserver | 1 + DeathmatchClassic/dmcserver | 1 + DontStarveTogether/dstserver | 1 + DoubleActionBoogaloo/dabserver | 1 + EmpiresMod/emserver | 1 + FistfulOfFrags/fofserver | 1 + GarrysMod/gmodserver | 1 + GoldenEyeSource/gesserver | 1 + HalfLife2Deathmatch/hl2dmserver | 1 + HalfLifeDeathmatch/hldmserver | 1 + HalfLifeDeathmatchSource/hldmsserver | 1 + Hurtworld/hwserver | 1 + Insurgency/insserver | 1 + JustCause2/jc2server | 1 + KillingFloor/kfserver | 1 + Left4Dead/l4dserver | 1 + Left4Dead2/l4d2server | 1 + Minecraft/mcserver | 1 + Mumble/mumbleserver | 1 + NS2Combat/ns2cserver | 1 + NaturalSelection2/ns2server | 1 + NoMoreRoomInHell/nmrihserver | 1 + OpposingForce/opforserver | 1 + PiratesVikingandKnightsII/pvkiiserver | 1 + ProjectZomboid/pzserver | 1 + Quake2/q2server | 1 + Quake3/q3server | 1 + QuakeLive/qlserver | 1 + RedOrchestra/roserver | 1 + Ricochet/ricochetserver | 1 + Rust/rustserver | 1 + SeriousSam3BFE/ss3sserver | 1 + Starbound/sbserver | 1 + SvenCoop/svenserver | 1 + TeamFortress2/tf2server | 1 + TeamFortressClassic/tfcserver | 1 + TeamSpeak3/ts3server | 1 + Teeworlds/twserver | 1 + Terraria/terrariaserver | 1 + UnrealTournament/utserver | 1 + UnrealTournament2004/ut2k4server | 1 + UnrealTournament3/ut3server | 1 + UnrealTournament99/ut99server | 1 + WolfensteinEnemyTerritory/wetserver | 1 + tests/tests_jc2server.sh | 1 + 61 files changed, 61 insertions(+) diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index db4f71d04..336b9c226 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -43,6 +43,7 @@ parms="-logfile ${gamelogdir}/output_log__`date +%Y-%m-%d__%H-%M-%S`.txt -quit - emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index 0f55c9182..22a3c1c99 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -45,6 +45,7 @@ parms="\"TheIsland?listen?MultiHome=${ip}?SessionName=${servername}?MaxPlayers=$ emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/Arma3/arma3server b/Arma3/arma3server index ce61fb0a2..2f8fc8eca 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -59,6 +59,7 @@ parms="-netlog -ip=${ip} -port=${port} -cfg=${networkcfgfullpath} -config=${serv emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/Battlefield1942/bf1942server b/Battlefield1942/bf1942server index a42a8424d..14b25ef21 100644 --- a/Battlefield1942/bf1942server +++ b/Battlefield1942/bf1942server @@ -35,6 +35,7 @@ parms="+hostServer 1 +dedicated 1" emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/BlackMesa/bmdmserver b/BlackMesa/bmdmserver index 323ee56c0..988a2710b 100644 --- a/BlackMesa/bmdmserver +++ b/BlackMesa/bmdmserver @@ -49,6 +49,7 @@ parms="-game bms -strictportbind -ip ${ip} -port ${port} +clientport ${clientpor emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/BladeSymphony/bsserver b/BladeSymphony/bsserver index f3ec8e51c..d4a74617d 100644 --- a/BladeSymphony/bsserver +++ b/BladeSymphony/bsserver @@ -48,6 +48,7 @@ parms="-autoupdate -strictportbind -ip ${ip} -port ${port} +clientport ${clientp emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/BrainBread2/bb2server b/BrainBread2/bb2server index c7537e483..8c28607da 100644 --- a/BrainBread2/bb2server +++ b/BrainBread2/bb2server @@ -52,6 +52,7 @@ parms="-game brainbread2 -insecure -strictportbind -ip ${ip} -port ${port} +clie emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/CallOfDuty/codserver b/CallOfDuty/codserver index 162c7e7cf..4116d1ede 100755 --- a/CallOfDuty/codserver +++ b/CallOfDuty/codserver @@ -41,6 +41,7 @@ parms="+set sv_punkbuster 0 +set fs_basepath ${filesdir} +set dedicated 1 +set n emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/CallOfDuty2/cod2server b/CallOfDuty2/cod2server index c032e42a0..bda00bd1d 100755 --- a/CallOfDuty2/cod2server +++ b/CallOfDuty2/cod2server @@ -42,6 +42,7 @@ parms="+set sv_punkbuster 0 +set fs_basepath ${filesdir} +set dedicated 1 +set n emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/CodenameCURE/ccserver b/CodenameCURE/ccserver index 5f2524e53..140a8fcdf 100644 --- a/CodenameCURE/ccserver +++ b/CodenameCURE/ccserver @@ -42,6 +42,7 @@ parms="-game cure -insecure -strictportbind -ip ${ip} -port ${port} +clientport emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/CounterStrike/csserver b/CounterStrike/csserver index 0686a5e7c..580e8f030 100644 --- a/CounterStrike/csserver +++ b/CounterStrike/csserver @@ -43,6 +43,7 @@ parms="-game cstrike -strictportbind +ip ${ip} -port ${port} +clientport ${clien emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/CounterStrikeConditionZero/csczserver b/CounterStrikeConditionZero/csczserver index 2f966f0bd..191333698 100644 --- a/CounterStrikeConditionZero/csczserver +++ b/CounterStrikeConditionZero/csczserver @@ -43,6 +43,7 @@ parms="-game czero -strictportbind +ip ${ip} -port ${port} +clientport ${clientp emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index 144a06d9a..0c8667d52 100755 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -67,6 +67,7 @@ parms="-game csgo -usercon -strictportbind -ip ${ip} -port ${port} +clientport $ emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/CounterStrikeSource/cssserver b/CounterStrikeSource/cssserver index 93d2cdcdf..764cdc23a 100644 --- a/CounterStrikeSource/cssserver +++ b/CounterStrikeSource/cssserver @@ -50,6 +50,7 @@ parms="-game cstrike -strictportbind -ip ${ip} -port ${port} +clientport ${clien emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/DayOfDefeat/dodserver b/DayOfDefeat/dodserver index 7346295dc..70bc02e9f 100644 --- a/DayOfDefeat/dodserver +++ b/DayOfDefeat/dodserver @@ -44,6 +44,7 @@ parms="-game dod -strictportbind +ip ${ip} -port ${port} +clientport ${clientpor emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/DayOfDefeatSource/dodsserver b/DayOfDefeatSource/dodsserver index 402dbc983..031c6a9d1 100644 --- a/DayOfDefeatSource/dodsserver +++ b/DayOfDefeatSource/dodsserver @@ -44,6 +44,7 @@ parms="-game dod -strictportbind -ip ${ip} -port ${port} +clientport ${clientpor emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/DayOfInfamy/doiserver b/DayOfInfamy/doiserver index 00db47d6e..11108c8d6 100644 --- a/DayOfInfamy/doiserver +++ b/DayOfInfamy/doiserver @@ -46,6 +46,7 @@ parms="-game doi -strictportbind -ip ${ip} -port ${port} +clientport ${clientpor emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/DeathmatchClassic/dmcserver b/DeathmatchClassic/dmcserver index bb41ab37b..a59e3a576 100644 --- a/DeathmatchClassic/dmcserver +++ b/DeathmatchClassic/dmcserver @@ -43,6 +43,7 @@ parms="-game dmc -strictportbind +ip ${ip} -port ${port} +clientport ${clientpor emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index bdba108c0..d0d331e7c 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -42,6 +42,7 @@ parms="-console -cluster MyDediServer -shard Master" emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/DoubleActionBoogaloo/dabserver b/DoubleActionBoogaloo/dabserver index 078811193..622fbb8ef 100644 --- a/DoubleActionBoogaloo/dabserver +++ b/DoubleActionBoogaloo/dabserver @@ -44,6 +44,7 @@ parms="-strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_por emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/EmpiresMod/emserver b/EmpiresMod/emserver index 14c7003cc..caea83cbf 100644 --- a/EmpiresMod/emserver +++ b/EmpiresMod/emserver @@ -28,6 +28,7 @@ parms="-game empires -strictportbind -ip ${ip} -port ${port} +clientport ${clien emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/FistfulOfFrags/fofserver b/FistfulOfFrags/fofserver index 6b5ff8e24..3920a12ae 100644 --- a/FistfulOfFrags/fofserver +++ b/FistfulOfFrags/fofserver @@ -44,6 +44,7 @@ parms="-game fof -strictportbind -ip ${ip} -port ${port} +clientport ${clientpor emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index 06a1fe896..520a5c44c 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -59,6 +59,7 @@ parms="-game garrysmod -strictportbind -ip ${ip} -port ${port} -tickrate ${tickr emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/GoldenEyeSource/gesserver b/GoldenEyeSource/gesserver index c118daa39..7f7a41958 100644 --- a/GoldenEyeSource/gesserver +++ b/GoldenEyeSource/gesserver @@ -44,6 +44,7 @@ parms="-game gesource -strictportbind -ip ${ip} -port ${port} +clientport ${clie emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/HalfLife2Deathmatch/hl2dmserver b/HalfLife2Deathmatch/hl2dmserver index 637c84f2a..524026ac9 100644 --- a/HalfLife2Deathmatch/hl2dmserver +++ b/HalfLife2Deathmatch/hl2dmserver @@ -44,6 +44,7 @@ parms="-game hl2mp -strictportbind -ip ${ip} -port ${port} +clientport ${clientp emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/HalfLifeDeathmatch/hldmserver b/HalfLifeDeathmatch/hldmserver index efabe345a..41598e749 100644 --- a/HalfLifeDeathmatch/hldmserver +++ b/HalfLifeDeathmatch/hldmserver @@ -43,6 +43,7 @@ parms="-game valve -strictportbind +ip ${ip} -port ${port} +clientport ${clientp emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/HalfLifeDeathmatchSource/hldmsserver b/HalfLifeDeathmatchSource/hldmsserver index ad9538e42..bd6040c13 100644 --- a/HalfLifeDeathmatchSource/hldmsserver +++ b/HalfLifeDeathmatchSource/hldmsserver @@ -44,6 +44,7 @@ parms="-game hl1mp -strictportbind -ip ${ip} -port ${port} +clientport ${clientp emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/Hurtworld/hwserver b/Hurtworld/hwserver index 1aa96c147..5297a7b86 100644 --- a/Hurtworld/hwserver +++ b/Hurtworld/hwserver @@ -56,6 +56,7 @@ parms="-batchmode -nographics -exec \"host ${port} ${map} ${loadsave};queryport emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/Insurgency/insserver b/Insurgency/insserver index 4476c6333..9566859ad 100644 --- a/Insurgency/insserver +++ b/Insurgency/insserver @@ -46,6 +46,7 @@ parms="-game insurgency -strictportbind -ip ${ip} -port ${port} +clientport ${cl emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/JustCause2/jc2server b/JustCause2/jc2server index 8eeb52ef0..12ec80d2a 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -38,6 +38,7 @@ parms="" emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/KillingFloor/kfserver b/KillingFloor/kfserver index 5b3176db3..9add98f45 100644 --- a/KillingFloor/kfserver +++ b/KillingFloor/kfserver @@ -46,6 +46,7 @@ parms="server ${defaultmap}?game=KFmod.KFGameType?VACSecured=true -nohomedir ini emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/Left4Dead/l4dserver b/Left4Dead/l4dserver index a232ec03d..9bc46b0ae 100644 --- a/Left4Dead/l4dserver +++ b/Left4Dead/l4dserver @@ -43,6 +43,7 @@ parms="-game left4dead -strictportbind -ip ${ip} -port ${port} +clientport ${cli emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/Left4Dead2/l4d2server b/Left4Dead2/l4d2server index 3e29ecc02..4519dadc7 100644 --- a/Left4Dead2/l4d2server +++ b/Left4Dead2/l4d2server @@ -43,6 +43,7 @@ parms="-game left4dead2 -strictportbind -ip ${ip} -port ${port} +clientport ${cl emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/Minecraft/mcserver b/Minecraft/mcserver index 45bd0da07..20a0504e9 100644 --- a/Minecraft/mcserver +++ b/Minecraft/mcserver @@ -38,6 +38,7 @@ parms="nogui" emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index f4ac59740..369379b6d 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -37,6 +37,7 @@ parms="-fg -ini ${servercfgfullpath}" emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/NS2Combat/ns2cserver b/NS2Combat/ns2cserver index b839d1039..026fe02d7 100644 --- a/NS2Combat/ns2cserver +++ b/NS2Combat/ns2cserver @@ -55,6 +55,7 @@ parms="-name \"${servername}\" -port ${port} -webadmin -webdomain ${ip} -webuser emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index d672cdb1d..0e2d61348 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -55,6 +55,7 @@ parms="-name \"${servername}\" -port ${port} -webadmin -webdomain ${ip} -webuser emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/NoMoreRoomInHell/nmrihserver b/NoMoreRoomInHell/nmrihserver index 5937fc1db..16cc645df 100644 --- a/NoMoreRoomInHell/nmrihserver +++ b/NoMoreRoomInHell/nmrihserver @@ -49,6 +49,7 @@ parms="-game nmrih -insecure -strictportbind -ip ${ip} -port ${port} +clientport emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/OpposingForce/opforserver b/OpposingForce/opforserver index 00e7ee919..c710ff015 100644 --- a/OpposingForce/opforserver +++ b/OpposingForce/opforserver @@ -43,6 +43,7 @@ parms="-game gearbox -strictportbind +ip ${ip} -port ${port} +clientport ${clien emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/PiratesVikingandKnightsII/pvkiiserver b/PiratesVikingandKnightsII/pvkiiserver index 81f73ac9d..ac18433b3 100644 --- a/PiratesVikingandKnightsII/pvkiiserver +++ b/PiratesVikingandKnightsII/pvkiiserver @@ -44,6 +44,7 @@ parms="-game pvkii -strictportbind -ip ${ip} -port ${port} +clientport ${clientp emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/ProjectZomboid/pzserver b/ProjectZomboid/pzserver index b6c18b7ab..5ea2c1e75 100644 --- a/ProjectZomboid/pzserver +++ b/ProjectZomboid/pzserver @@ -38,6 +38,7 @@ parms="-ip ${ip} -adminpassword \"${adminpassword}\" -servername ${servicename}" emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/Quake2/q2server b/Quake2/q2server index 571a6d9e1..719cd54ce 100644 --- a/Quake2/q2server +++ b/Quake2/q2server @@ -39,6 +39,7 @@ parms="+set dedicated 1 +set ip ${ip} +set port ${port} +exec ${servercfg} +set emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/Quake3/q3server b/Quake3/q3server index 84e86056a..772c2e640 100644 --- a/Quake3/q3server +++ b/Quake3/q3server @@ -40,6 +40,7 @@ parms="+set sv_punkbuster 0 +set fs_basepath ${filesdir} +set dedicated 1 +set c emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/QuakeLive/qlserver b/QuakeLive/qlserver index 332cf1e87..1e61e4481 100755 --- a/QuakeLive/qlserver +++ b/QuakeLive/qlserver @@ -47,6 +47,7 @@ parms="+set net_strict 1 +set net_ip ${ip} +set net_port ${port} +set fs_homepat emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/RedOrchestra/roserver b/RedOrchestra/roserver index f8d8f88e5..470cf4a75 100644 --- a/RedOrchestra/roserver +++ b/RedOrchestra/roserver @@ -44,6 +44,7 @@ parms="server ${defaultmap}?game=ROGame.ROTeamGame?VACSecured=true -nohomedir in emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/Ricochet/ricochetserver b/Ricochet/ricochetserver index f1ceeac69..c223f9e23 100644 --- a/Ricochet/ricochetserver +++ b/Ricochet/ricochetserver @@ -67,6 +67,7 @@ parms="" emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/Rust/rustserver b/Rust/rustserver index c4c1362fd..fb5b3ee83 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -59,6 +59,7 @@ fi emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/SeriousSam3BFE/ss3sserver b/SeriousSam3BFE/ss3sserver index ce7d58658..b39d37ee8 100644 --- a/SeriousSam3BFE/ss3sserver +++ b/SeriousSam3BFE/ss3sserver @@ -39,6 +39,7 @@ parms="+ip ${ip} +logfile ${gamelog} +exec ${servercfgfullpath}" emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/Starbound/sbserver b/Starbound/sbserver index eeecfb816..8d1044f62 100644 --- a/Starbound/sbserver +++ b/Starbound/sbserver @@ -43,6 +43,7 @@ parms="" emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/SvenCoop/svenserver b/SvenCoop/svenserver index ea2558ef3..5c3c38ce9 100644 --- a/SvenCoop/svenserver +++ b/SvenCoop/svenserver @@ -43,6 +43,7 @@ parms="-game svencoop -strictportbind +ip ${ip} -port ${port} +clientport ${clie emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/TeamFortress2/tf2server b/TeamFortress2/tf2server index 440757827..37685fb22 100644 --- a/TeamFortress2/tf2server +++ b/TeamFortress2/tf2server @@ -47,6 +47,7 @@ parms="-game tf -strictportbind -ip ${ip} -port ${port} +clientport ${clientport emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/TeamFortressClassic/tfcserver b/TeamFortressClassic/tfcserver index a9679165e..9c67ebfed 100644 --- a/TeamFortressClassic/tfcserver +++ b/TeamFortressClassic/tfcserver @@ -43,6 +43,7 @@ parms="-game tfc -strictportbind _ip ${ip} -port ${port} +clientport ${clientpor emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/TeamSpeak3/ts3server b/TeamSpeak3/ts3server index bed364a8f..5a877436a 100644 --- a/TeamSpeak3/ts3server +++ b/TeamSpeak3/ts3server @@ -31,6 +31,7 @@ version="161113" emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/Teeworlds/twserver b/Teeworlds/twserver index 61f3b9ba6..870eddadf 100644 --- a/Teeworlds/twserver +++ b/Teeworlds/twserver @@ -43,6 +43,7 @@ parms="-f ${servercfgfullpath}" emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/Terraria/terrariaserver b/Terraria/terrariaserver index 539e734ff..43096a179 100644 --- a/Terraria/terrariaserver +++ b/Terraria/terrariaserver @@ -43,6 +43,7 @@ parms="-config ${servercfgfullpath}" emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/UnrealTournament/utserver b/UnrealTournament/utserver index 06fa13dea..aa558d79a 100644 --- a/UnrealTournament/utserver +++ b/UnrealTournament/utserver @@ -45,6 +45,7 @@ parms="UnrealTournament ${defaultmap}?Game=${gametype}?TimeLimit=${timelimit} -p emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/UnrealTournament2004/ut2k4server b/UnrealTournament2004/ut2k4server index e7cd59dbf..67c1a004c 100644 --- a/UnrealTournament2004/ut2k4server +++ b/UnrealTournament2004/ut2k4server @@ -40,6 +40,7 @@ parms="server ${defaultmap}?game=XGame.xDeathMatch -nohomedir ini=${servercfg} l emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/UnrealTournament3/ut3server b/UnrealTournament3/ut3server index f72a0e452..8c628597e 100644 --- a/UnrealTournament3/ut3server +++ b/UnrealTournament3/ut3server @@ -51,6 +51,7 @@ parms="server ${defaultmap}?Game=${game}?bIsDedicated=${isdedicated}?bIsLanMatch emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/UnrealTournament99/ut99server b/UnrealTournament99/ut99server index 3e3ea17e4..a401ed99c 100644 --- a/UnrealTournament99/ut99server +++ b/UnrealTournament99/ut99server @@ -40,6 +40,7 @@ parms="server ${defaultmap}.unr ini=${servercfgfullpath}" emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/WolfensteinEnemyTerritory/wetserver b/WolfensteinEnemyTerritory/wetserver index 00b74c98b..9eed5f28d 100644 --- a/WolfensteinEnemyTerritory/wetserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -39,6 +39,7 @@ fn_parms(){ emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 0563e0556..27703ae21 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -40,6 +40,7 @@ parms="" emailalert="off" email="email@example.com" emailfrom="" + # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" From 739d7a1b6fd2ff9bb491d864847bf2c8630961db Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 18 Nov 2016 21:04:47 +0000 Subject: [PATCH 140/169] Updated to newer design --- CallOfDutyUnitedOffensive/coduoserver | 107 ++++++++++++++++++-------- 1 file changed, 75 insertions(+), 32 deletions(-) diff --git a/CallOfDutyUnitedOffensive/coduoserver b/CallOfDutyUnitedOffensive/coduoserver index 9e0c737a2..1e4b442b3 100755 --- a/CallOfDutyUnitedOffensive/coduoserver +++ b/CallOfDutyUnitedOffensive/coduoserver @@ -1,87 +1,120 @@ #!/bin/bash -# Call of Duty: United Offensive -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Call of Duty: United 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="210516" - -#### Variables #### +version="161113" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## -# Email -emailalert="off" -email="email@example.com" +#### Server Settings #### -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters -# Start Variables defaultmap="mp_cassino" maxclients="20" -ip="0.0.0.0" 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" +channeltag="" + +## 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 +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" -githubbranch="coduo" +githubbranch="master" -# Server Details -servicename="coduo-server" +## LinuxGSM Server Details +# Do not edit gamename="Call of Duty: United Offensive" engine="idtech3" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="coduo-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="./coduo_lnxded" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/uo" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" + +## 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 +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 From f372f035949195b6194710ce0b9122f5d7a3d21b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 18 Nov 2016 21:05:13 +0000 Subject: [PATCH 141/169] if in wrong place --- 7DaysToDie/sdtdserver | 2 +- ARKSurvivalEvolved/arkserver | 2 +- Arma3/arma3server | 2 +- Battlefield1942/bf1942server | 2 +- BlackMesa/bmdmserver | 2 +- BladeSymphony/bsserver | 2 +- BrainBread2/bb2server | 2 +- CallOfDuty/codserver | 2 +- CallOfDuty2/cod2server | 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 | 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 +- tests/tests_jc2server.sh | 2 +- 61 files changed, 61 insertions(+), 61 deletions(-) diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index 336b9c226..8944f0b7a 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -192,7 +192,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index 22a3c1c99..acae6a9aa 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -193,7 +193,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/Arma3/arma3server b/Arma3/arma3server index 2f8fc8eca..9ba55c30e 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -210,7 +210,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/Battlefield1942/bf1942server b/Battlefield1942/bf1942server index 14b25ef21..881cb6ff7 100644 --- a/Battlefield1942/bf1942server +++ b/Battlefield1942/bf1942server @@ -176,7 +176,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/BlackMesa/bmdmserver b/BlackMesa/bmdmserver index 988a2710b..6653e3394 100644 --- a/BlackMesa/bmdmserver +++ b/BlackMesa/bmdmserver @@ -198,7 +198,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/BladeSymphony/bsserver b/BladeSymphony/bsserver index d4a74617d..1492de09d 100644 --- a/BladeSymphony/bsserver +++ b/BladeSymphony/bsserver @@ -188,7 +188,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/BrainBread2/bb2server b/BrainBread2/bb2server index 8c28607da..e31424efd 100644 --- a/BrainBread2/bb2server +++ b/BrainBread2/bb2server @@ -200,7 +200,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/CallOfDuty/codserver b/CallOfDuty/codserver index 4116d1ede..560472103 100755 --- a/CallOfDuty/codserver +++ b/CallOfDuty/codserver @@ -178,7 +178,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/CallOfDuty2/cod2server b/CallOfDuty2/cod2server index bda00bd1d..52c33d911 100755 --- a/CallOfDuty2/cod2server +++ b/CallOfDuty2/cod2server @@ -179,7 +179,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/CodenameCURE/ccserver b/CodenameCURE/ccserver index 140a8fcdf..476fe80c5 100644 --- a/CodenameCURE/ccserver +++ b/CodenameCURE/ccserver @@ -190,7 +190,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/CounterStrike/csserver b/CounterStrike/csserver index 580e8f030..d39ba7819 100644 --- a/CounterStrike/csserver +++ b/CounterStrike/csserver @@ -192,7 +192,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/CounterStrikeConditionZero/csczserver b/CounterStrikeConditionZero/csczserver index 191333698..b4482973f 100644 --- a/CounterStrikeConditionZero/csczserver +++ b/CounterStrikeConditionZero/csczserver @@ -192,7 +192,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index 0c8667d52..0fc0f0f56 100755 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -215,7 +215,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/CounterStrikeSource/cssserver b/CounterStrikeSource/cssserver index 764cdc23a..c4c031c16 100644 --- a/CounterStrikeSource/cssserver +++ b/CounterStrikeSource/cssserver @@ -198,7 +198,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/DayOfDefeat/dodserver b/DayOfDefeat/dodserver index 70bc02e9f..72ce552c6 100644 --- a/DayOfDefeat/dodserver +++ b/DayOfDefeat/dodserver @@ -193,7 +193,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/DayOfDefeatSource/dodsserver b/DayOfDefeatSource/dodsserver index 031c6a9d1..1be712c83 100644 --- a/DayOfDefeatSource/dodsserver +++ b/DayOfDefeatSource/dodsserver @@ -192,7 +192,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/DayOfInfamy/doiserver b/DayOfInfamy/doiserver index 11108c8d6..ce39f0a7f 100644 --- a/DayOfInfamy/doiserver +++ b/DayOfInfamy/doiserver @@ -195,7 +195,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/DeathmatchClassic/dmcserver b/DeathmatchClassic/dmcserver index a59e3a576..15ebb70c3 100644 --- a/DeathmatchClassic/dmcserver +++ b/DeathmatchClassic/dmcserver @@ -192,7 +192,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index d0d331e7c..ab1d0e40c 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -191,7 +191,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/DoubleActionBoogaloo/dabserver b/DoubleActionBoogaloo/dabserver index 622fbb8ef..601cddc93 100644 --- a/DoubleActionBoogaloo/dabserver +++ b/DoubleActionBoogaloo/dabserver @@ -192,7 +192,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/EmpiresMod/emserver b/EmpiresMod/emserver index caea83cbf..7fe58d3b5 100644 --- a/EmpiresMod/emserver +++ b/EmpiresMod/emserver @@ -176,7 +176,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/FistfulOfFrags/fofserver b/FistfulOfFrags/fofserver index 3920a12ae..abb4b6b7e 100644 --- a/FistfulOfFrags/fofserver +++ b/FistfulOfFrags/fofserver @@ -192,7 +192,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index 520a5c44c..e05186b37 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -208,7 +208,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/GoldenEyeSource/gesserver b/GoldenEyeSource/gesserver index 7f7a41958..c1a65552d 100644 --- a/GoldenEyeSource/gesserver +++ b/GoldenEyeSource/gesserver @@ -192,7 +192,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/HalfLife2Deathmatch/hl2dmserver b/HalfLife2Deathmatch/hl2dmserver index 524026ac9..6cd830924 100644 --- a/HalfLife2Deathmatch/hl2dmserver +++ b/HalfLife2Deathmatch/hl2dmserver @@ -192,7 +192,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/HalfLifeDeathmatch/hldmserver b/HalfLifeDeathmatch/hldmserver index 41598e749..e67f8dd6e 100644 --- a/HalfLifeDeathmatch/hldmserver +++ b/HalfLifeDeathmatch/hldmserver @@ -191,7 +191,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/HalfLifeDeathmatchSource/hldmsserver b/HalfLifeDeathmatchSource/hldmsserver index bd6040c13..db0016b92 100644 --- a/HalfLifeDeathmatchSource/hldmsserver +++ b/HalfLifeDeathmatchSource/hldmsserver @@ -195,7 +195,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/Hurtworld/hwserver b/Hurtworld/hwserver index 5297a7b86..ed4ac0878 100644 --- a/Hurtworld/hwserver +++ b/Hurtworld/hwserver @@ -205,7 +205,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/Insurgency/insserver b/Insurgency/insserver index 9566859ad..bd8b553d9 100644 --- a/Insurgency/insserver +++ b/Insurgency/insserver @@ -197,7 +197,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/JustCause2/jc2server b/JustCause2/jc2server index 12ec80d2a..c7ea26708 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -186,7 +186,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/KillingFloor/kfserver b/KillingFloor/kfserver index 9add98f45..a170f0cf3 100644 --- a/KillingFloor/kfserver +++ b/KillingFloor/kfserver @@ -197,7 +197,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/Left4Dead/l4dserver b/Left4Dead/l4dserver index 9bc46b0ae..56bb57ec4 100644 --- a/Left4Dead/l4dserver +++ b/Left4Dead/l4dserver @@ -191,7 +191,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/Left4Dead2/l4d2server b/Left4Dead2/l4d2server index 4519dadc7..db32143fe 100644 --- a/Left4Dead2/l4d2server +++ b/Left4Dead2/l4d2server @@ -191,7 +191,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/Minecraft/mcserver b/Minecraft/mcserver index 20a0504e9..6218d1e08 100644 --- a/Minecraft/mcserver +++ b/Minecraft/mcserver @@ -177,7 +177,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index 369379b6d..db0100c62 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -176,7 +176,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/NS2Combat/ns2cserver b/NS2Combat/ns2cserver index 026fe02d7..c6753dd35 100644 --- a/NS2Combat/ns2cserver +++ b/NS2Combat/ns2cserver @@ -202,7 +202,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index 0e2d61348..ad800284c 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -202,7 +202,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/NoMoreRoomInHell/nmrihserver b/NoMoreRoomInHell/nmrihserver index 16cc645df..f1409e2cb 100644 --- a/NoMoreRoomInHell/nmrihserver +++ b/NoMoreRoomInHell/nmrihserver @@ -197,7 +197,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/OpposingForce/opforserver b/OpposingForce/opforserver index c710ff015..28c89ee24 100644 --- a/OpposingForce/opforserver +++ b/OpposingForce/opforserver @@ -192,7 +192,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/PiratesVikingandKnightsII/pvkiiserver b/PiratesVikingandKnightsII/pvkiiserver index ac18433b3..e190af363 100644 --- a/PiratesVikingandKnightsII/pvkiiserver +++ b/PiratesVikingandKnightsII/pvkiiserver @@ -192,7 +192,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/ProjectZomboid/pzserver b/ProjectZomboid/pzserver index 5ea2c1e75..48e097ec3 100644 --- a/ProjectZomboid/pzserver +++ b/ProjectZomboid/pzserver @@ -186,7 +186,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/Quake2/q2server b/Quake2/q2server index 719cd54ce..fc1fb8e24 100644 --- a/Quake2/q2server +++ b/Quake2/q2server @@ -176,7 +176,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/Quake3/q3server b/Quake3/q3server index 772c2e640..f443719b9 100644 --- a/Quake3/q3server +++ b/Quake3/q3server @@ -177,7 +177,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/QuakeLive/qlserver b/QuakeLive/qlserver index 1e61e4481..a587c9b00 100755 --- a/QuakeLive/qlserver +++ b/QuakeLive/qlserver @@ -196,7 +196,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/RedOrchestra/roserver b/RedOrchestra/roserver index 470cf4a75..3e2fa3808 100644 --- a/RedOrchestra/roserver +++ b/RedOrchestra/roserver @@ -199,7 +199,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/Ricochet/ricochetserver b/Ricochet/ricochetserver index c223f9e23..a10ac28a2 100644 --- a/Ricochet/ricochetserver +++ b/Ricochet/ricochetserver @@ -216,7 +216,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/Rust/rustserver b/Rust/rustserver index fb5b3ee83..abc02bf57 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -210,7 +210,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/SeriousSam3BFE/ss3sserver b/SeriousSam3BFE/ss3sserver index b39d37ee8..e5d133436 100644 --- a/SeriousSam3BFE/ss3sserver +++ b/SeriousSam3BFE/ss3sserver @@ -189,7 +189,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/Starbound/sbserver b/Starbound/sbserver index 8d1044f62..823599272 100644 --- a/Starbound/sbserver +++ b/Starbound/sbserver @@ -191,7 +191,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/SvenCoop/svenserver b/SvenCoop/svenserver index 5c3c38ce9..f610ea9ce 100644 --- a/SvenCoop/svenserver +++ b/SvenCoop/svenserver @@ -191,7 +191,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/TeamFortress2/tf2server b/TeamFortress2/tf2server index 37685fb22..33014d51b 100644 --- a/TeamFortress2/tf2server +++ b/TeamFortress2/tf2server @@ -195,7 +195,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/TeamFortressClassic/tfcserver b/TeamFortressClassic/tfcserver index 9c67ebfed..c8539a012 100644 --- a/TeamFortressClassic/tfcserver +++ b/TeamFortressClassic/tfcserver @@ -192,7 +192,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/TeamSpeak3/ts3server b/TeamSpeak3/ts3server index 5a877436a..9eece04e7 100644 --- a/TeamSpeak3/ts3server +++ b/TeamSpeak3/ts3server @@ -168,7 +168,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/Teeworlds/twserver b/Teeworlds/twserver index 870eddadf..34bddb158 100644 --- a/Teeworlds/twserver +++ b/Teeworlds/twserver @@ -192,7 +192,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/Terraria/terrariaserver b/Terraria/terrariaserver index 43096a179..2b4f1ceb9 100644 --- a/Terraria/terrariaserver +++ b/Terraria/terrariaserver @@ -191,7 +191,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/UnrealTournament/utserver b/UnrealTournament/utserver index aa558d79a..823592246 100644 --- a/UnrealTournament/utserver +++ b/UnrealTournament/utserver @@ -181,7 +181,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/UnrealTournament2004/ut2k4server b/UnrealTournament2004/ut2k4server index 67c1a004c..8d2d37bd2 100644 --- a/UnrealTournament2004/ut2k4server +++ b/UnrealTournament2004/ut2k4server @@ -180,7 +180,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/UnrealTournament3/ut3server b/UnrealTournament3/ut3server index 8c628597e..3c0d7a2b0 100644 --- a/UnrealTournament3/ut3server +++ b/UnrealTournament3/ut3server @@ -190,7 +190,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/UnrealTournament99/ut99server b/UnrealTournament99/ut99server index a401ed99c..f2895362b 100644 --- a/UnrealTournament99/ut99server +++ b/UnrealTournament99/ut99server @@ -178,7 +178,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/WolfensteinEnemyTerritory/wetserver b/WolfensteinEnemyTerritory/wetserver index 9eed5f28d..3a3db6ce6 100644 --- a/WolfensteinEnemyTerritory/wetserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -179,7 +179,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 27703ae21..3a65cef3c 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -187,7 +187,7 @@ if [ "$(whoami)" = "root" ]; then else core_functions.sh check_root.sh - fi + fi fi core_dl.sh From c79b8232ad48d65bbc416263564a3d7030a16ae2 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 18 Nov 2016 21:28:17 +0000 Subject: [PATCH 142/169] Removed config --- CallOfDutyUnitedOffensive/cfg/lgsm-default.cfg | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 CallOfDutyUnitedOffensive/cfg/lgsm-default.cfg diff --git a/CallOfDutyUnitedOffensive/cfg/lgsm-default.cfg b/CallOfDutyUnitedOffensive/cfg/lgsm-default.cfg deleted file mode 100644 index 9768294eb..000000000 --- a/CallOfDutyUnitedOffensive/cfg/lgsm-default.cfg +++ /dev/null @@ -1,4 +0,0 @@ -set sv_hostname "" -set scr_motd "LGSM CODUO Server" -set rconpassword "" - From 238ad0a94cc85adb9aa547c75bc16441bf6f7f98 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 18 Nov 2016 21:36:12 +0000 Subject: [PATCH 143/169] Added COSUO 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 30292a276..4e617ab62 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: United Offensive" ]; then + gamedirname="CallOfDutyUnitedOffensive" + array_configs+=( server.cfg ) + 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 ) From c07f5b2b3283fe506957d92d020770a8f7f1e033 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 18 Nov 2016 21:42:34 +0000 Subject: [PATCH 144/169] COD:UO server added --- 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 b5e4cb0a2..0a4dd888a 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -20,6 +20,9 @@ elif [ "${gamename}" == "Call of Duty" ]; then elif [ "${gamename}" == "Call of Duty 2" ]; then glibcrequired="2.1.3" glibcfix="no" +elif [ "${gamename}" == "Call of Duty: United Offensive" ]; then + glibcrequired="2.1" + glibcfix="no" elif [ "${gamename}" == "Day of Infamy" ]; then glibcrequired="2.15" glibcfix="yes" From 3a49c8ea41649c61cdcbc51f7569b065a4eb1885 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 18 Nov 2016 21:45:05 +0000 Subject: [PATCH 145/169] Added COD:UF --- 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 ec1e45713..2178c1acb 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}" == "Call of Duty 2" ]||[ "${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: United Offensive" ]||[ "${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 From a629527bae98dde500835c28e43547075413a0d4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 18 Nov 2016 22:34:05 +0000 Subject: [PATCH 146/169] Added CODUO --- lgsm/functions/command_details.sh | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 4ce097e1a..598451dc5 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -350,6 +350,24 @@ fn_details_cod(){ } | column -s $'\t' -t } +fn_details_coduo(){ + echo -e "netstat -atunp | grep coduo_lnxded" + echo -e "" + { + echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" + echo -e "> Game\tINBOUND\t${port}\tudp" + } | 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 +} + fn_details_dontstarve(){ echo -e "netstat -atunp | grep dontstarve" echo -e "" @@ -652,15 +670,6 @@ 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. fn_display_details() { @@ -717,6 +726,8 @@ fn_display_details() { fn_details_ark elif [ "${gamename}" == "Call of Duty" ]; then fn_details_cod + elif [ "${gamename}" == "Call of Duty: United Offensive" ]; then + fn_details_coduo elif [ "${gamename}" == "Call of Duty 2" ]; then fn_details_cod2 elif [ "${gamename}" == "Hurtworld" ]; then From 129692811403f56f89ac80e5db14e94efd8be14f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 18 Nov 2016 22:43:45 +0000 Subject: [PATCH 147/169] Added CODUO --- 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 198ffa656..318bf9da0 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -537,7 +537,7 @@ if [ "${engine}" == "avalanche" ]; then elif [ "${gamename}" == "Battlefield: 1942" ]; then fn_info_config_bf1942 # Call of Duty -elif [ "${gamename}" == "Call of Duty" ]; then +elif [ "${gamename}" == "Call of Duty" ]||[ "${gamename}" == "Call of Duty: United Offensive" ]; then fn_info_config_cod # Call of Duty 2 elif [ "${gamename}" == "Call of Duty 2" ]; then From 32fa578b40fa10d67de8482f805156b76863cf07 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 18 Nov 2016 23:10:08 +0000 Subject: [PATCH 148/169] Updated location of COD:UO --- 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 dcf167764..2e6834e42 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}" == "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}" == "Call of Duty: United Offensive" ]; then - fileurl="https://s3.amazonaws.com/linuxgsm/coduo-lnxded-1.51b-full.tar.bz2"; filedir="${tmpdir}"; filename="coduo-lnxded-1.51b-full.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="f1804ef13036e2b4ab535db000b19e97" + fileurl="http://files.gameservermanagers.com/CallOfDutyUnitedOffensive/coduo-lnxded-1.51b-full.tar.bz2"; filedir="${tmpdir}"; filename="coduo-lnxded-1.51b-full.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="f1804ef13036e2b4ab535db000b19e97" 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}" == "GoldenEye: Source" ]; then From f16890a6fce8703159695abfdb545779f9396066 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 18 Nov 2016 23:14:00 +0000 Subject: [PATCH 149/169] Moved UT99 --- lgsm/functions/install_server_files.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 2e6834e42..e7345cd8e 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -11,8 +11,6 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" fn_install_server_files(){ if [ "${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}" == "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" ]; 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}" == "Call of Duty: United Offensive" ]; then @@ -29,6 +27,8 @@ fn_install_server_files(){ 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" 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 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}" == "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}" == "Unreal Tournament 3" ]; then From c465ec30fb54535de6499e7df1e483a953d7af8f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 18 Nov 2016 23:30:19 +0000 Subject: [PATCH 150/169] Updated version number --- 7DaysToDie/sdtdserver | 2 +- ARKSurvivalEvolved/arkserver | 2 +- Arma3/arma3server | 2 +- Battlefield1942/bf1942server | 2 +- BlackMesa/bmdmserver | 2 +- BladeSymphony/bsserver | 2 +- BrainBread2/bb2server | 2 +- CallOfDuty/codserver | 2 +- CallOfDuty2/cod2server | 2 +- CallOfDutyUnitedOffensive/coduoserver | 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 | 2 +- Insurgency/insserver | 2 +- JustCause2/jc2server | 3 +-- 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 | 3 +-- UnrealTournament2004/ut2k4server | 2 +- UnrealTournament3/ut3server | 2 +- UnrealTournament99/ut99server | 2 +- WolfensteinEnemyTerritory/wetserver | 2 +- tests/tests_jc2server.sh | 2 +- 61 files changed, 61 insertions(+), 63 deletions(-) diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index 8944f0b7a..0c532d2e5 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index acae6a9aa..aa562c209 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/Arma3/arma3server b/Arma3/arma3server index 9ba55c30e..f5a1c7830 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/Battlefield1942/bf1942server b/Battlefield1942/bf1942server index 881cb6ff7..52eca3409 100644 --- a/Battlefield1942/bf1942server +++ b/Battlefield1942/bf1942server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/BlackMesa/bmdmserver b/BlackMesa/bmdmserver index 6653e3394..e59419347 100644 --- a/BlackMesa/bmdmserver +++ b/BlackMesa/bmdmserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/BladeSymphony/bsserver b/BladeSymphony/bsserver index 1492de09d..89423115b 100644 --- a/BladeSymphony/bsserver +++ b/BladeSymphony/bsserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/BrainBread2/bb2server b/BrainBread2/bb2server index e31424efd..932600773 100644 --- a/BrainBread2/bb2server +++ b/BrainBread2/bb2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/CallOfDuty/codserver b/CallOfDuty/codserver index 560472103..795f89b83 100755 --- a/CallOfDuty/codserver +++ b/CallOfDuty/codserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/CallOfDuty2/cod2server b/CallOfDuty2/cod2server index 52c33d911..885175339 100755 --- a/CallOfDuty2/cod2server +++ b/CallOfDuty2/cod2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/CallOfDutyUnitedOffensive/coduoserver b/CallOfDutyUnitedOffensive/coduoserver index 1e4b442b3..95675a10f 100755 --- a/CallOfDutyUnitedOffensive/coduoserver +++ b/CallOfDutyUnitedOffensive/coduoserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/CodenameCURE/ccserver b/CodenameCURE/ccserver index 476fe80c5..00767735f 100644 --- a/CodenameCURE/ccserver +++ b/CodenameCURE/ccserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/CounterStrike/csserver b/CounterStrike/csserver index d39ba7819..1acc5c203 100644 --- a/CounterStrike/csserver +++ b/CounterStrike/csserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/CounterStrikeConditionZero/csczserver b/CounterStrikeConditionZero/csczserver index b4482973f..d478e5130 100644 --- a/CounterStrikeConditionZero/csczserver +++ b/CounterStrikeConditionZero/csczserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index 0fc0f0f56..6e06cce57 100755 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/CounterStrikeSource/cssserver b/CounterStrikeSource/cssserver index c4c031c16..5748f9482 100644 --- a/CounterStrikeSource/cssserver +++ b/CounterStrikeSource/cssserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/DayOfDefeat/dodserver b/DayOfDefeat/dodserver index 72ce552c6..b8d5fd24c 100644 --- a/DayOfDefeat/dodserver +++ b/DayOfDefeat/dodserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/DayOfDefeatSource/dodsserver b/DayOfDefeatSource/dodsserver index 1be712c83..feae13543 100644 --- a/DayOfDefeatSource/dodsserver +++ b/DayOfDefeatSource/dodsserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/DayOfInfamy/doiserver b/DayOfInfamy/doiserver index ce39f0a7f..3059345ab 100644 --- a/DayOfInfamy/doiserver +++ b/DayOfInfamy/doiserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/DeathmatchClassic/dmcserver b/DeathmatchClassic/dmcserver index 15ebb70c3..38487c7fc 100644 --- a/DeathmatchClassic/dmcserver +++ b/DeathmatchClassic/dmcserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index ab1d0e40c..28a104219 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/DoubleActionBoogaloo/dabserver b/DoubleActionBoogaloo/dabserver index 601cddc93..8466f6d5d 100644 --- a/DoubleActionBoogaloo/dabserver +++ b/DoubleActionBoogaloo/dabserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/FistfulOfFrags/fofserver b/FistfulOfFrags/fofserver index abb4b6b7e..5be1b822a 100644 --- a/FistfulOfFrags/fofserver +++ b/FistfulOfFrags/fofserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index e05186b37..ea7e16c0a 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/GoldenEyeSource/gesserver b/GoldenEyeSource/gesserver index c1a65552d..7eb70c8ba 100644 --- a/GoldenEyeSource/gesserver +++ b/GoldenEyeSource/gesserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/HalfLife2Deathmatch/hl2dmserver b/HalfLife2Deathmatch/hl2dmserver index 6cd830924..d2e98e034 100644 --- a/HalfLife2Deathmatch/hl2dmserver +++ b/HalfLife2Deathmatch/hl2dmserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/HalfLifeDeathmatch/hldmserver b/HalfLifeDeathmatch/hldmserver index e67f8dd6e..455bd016c 100644 --- a/HalfLifeDeathmatch/hldmserver +++ b/HalfLifeDeathmatch/hldmserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/HalfLifeDeathmatchSource/hldmsserver b/HalfLifeDeathmatchSource/hldmsserver index db0016b92..e5e992ef7 100644 --- a/HalfLifeDeathmatchSource/hldmsserver +++ b/HalfLifeDeathmatchSource/hldmsserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/Hurtworld/hwserver b/Hurtworld/hwserver index ed4ac0878..81e085dcd 100644 --- a/Hurtworld/hwserver +++ b/Hurtworld/hwserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/Insurgency/insserver b/Insurgency/insserver index bd8b553d9..89589bdbb 100644 --- a/Insurgency/insserver +++ b/Insurgency/insserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/JustCause2/jc2server b/JustCause2/jc2server index c7ea26708..5ee07555e 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -1,5 +1,4 @@ #!/bin/bash -# Just Cause 2 # Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs # License: MIT License, Copyright (c) 2016 Daniel Gibbs @@ -15,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/KillingFloor/kfserver b/KillingFloor/kfserver index a170f0cf3..6ff0300c1 100644 --- a/KillingFloor/kfserver +++ b/KillingFloor/kfserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/Left4Dead/l4dserver b/Left4Dead/l4dserver index 56bb57ec4..c72e1c6ec 100644 --- a/Left4Dead/l4dserver +++ b/Left4Dead/l4dserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/Left4Dead2/l4d2server b/Left4Dead2/l4d2server index db32143fe..03f71e71e 100644 --- a/Left4Dead2/l4d2server +++ b/Left4Dead2/l4d2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/Minecraft/mcserver b/Minecraft/mcserver index 6218d1e08..eaac52215 100644 --- a/Minecraft/mcserver +++ b/Minecraft/mcserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index db0100c62..6e830badb 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/NS2Combat/ns2cserver b/NS2Combat/ns2cserver index c6753dd35..77688302f 100644 --- a/NS2Combat/ns2cserver +++ b/NS2Combat/ns2cserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index ad800284c..bbb60dc34 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/NoMoreRoomInHell/nmrihserver b/NoMoreRoomInHell/nmrihserver index f1409e2cb..2c4e37ffe 100644 --- a/NoMoreRoomInHell/nmrihserver +++ b/NoMoreRoomInHell/nmrihserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/OpposingForce/opforserver b/OpposingForce/opforserver index 28c89ee24..7b3cc6ef6 100644 --- a/OpposingForce/opforserver +++ b/OpposingForce/opforserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/PiratesVikingandKnightsII/pvkiiserver b/PiratesVikingandKnightsII/pvkiiserver index e190af363..4861430fe 100644 --- a/PiratesVikingandKnightsII/pvkiiserver +++ b/PiratesVikingandKnightsII/pvkiiserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/ProjectZomboid/pzserver b/ProjectZomboid/pzserver index 48e097ec3..782a2118c 100644 --- a/ProjectZomboid/pzserver +++ b/ProjectZomboid/pzserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/Quake2/q2server b/Quake2/q2server index fc1fb8e24..3a0723a1a 100644 --- a/Quake2/q2server +++ b/Quake2/q2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/Quake3/q3server b/Quake3/q3server index f443719b9..445875a85 100644 --- a/Quake3/q3server +++ b/Quake3/q3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/QuakeLive/qlserver b/QuakeLive/qlserver index a587c9b00..19fb451fa 100755 --- a/QuakeLive/qlserver +++ b/QuakeLive/qlserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/RedOrchestra/roserver b/RedOrchestra/roserver index 3e2fa3808..97534b981 100644 --- a/RedOrchestra/roserver +++ b/RedOrchestra/roserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/Ricochet/ricochetserver b/Ricochet/ricochetserver index a10ac28a2..419bc04c6 100644 --- a/Ricochet/ricochetserver +++ b/Ricochet/ricochetserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/Rust/rustserver b/Rust/rustserver index abc02bf57..3a19bb140 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/SeriousSam3BFE/ss3sserver b/SeriousSam3BFE/ss3sserver index e5d133436..bf5b8b3d9 100644 --- a/SeriousSam3BFE/ss3sserver +++ b/SeriousSam3BFE/ss3sserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/Starbound/sbserver b/Starbound/sbserver index 823599272..ef4f73ef9 100644 --- a/Starbound/sbserver +++ b/Starbound/sbserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/SvenCoop/svenserver b/SvenCoop/svenserver index f610ea9ce..c6fecf4ba 100644 --- a/SvenCoop/svenserver +++ b/SvenCoop/svenserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/TeamFortress2/tf2server b/TeamFortress2/tf2server index 33014d51b..2d9a3da3c 100644 --- a/TeamFortress2/tf2server +++ b/TeamFortress2/tf2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/TeamFortressClassic/tfcserver b/TeamFortressClassic/tfcserver index c8539a012..9b80dca60 100644 --- a/TeamFortressClassic/tfcserver +++ b/TeamFortressClassic/tfcserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/TeamSpeak3/ts3server b/TeamSpeak3/ts3server index 9eece04e7..10e3344ec 100644 --- a/TeamSpeak3/ts3server +++ b/TeamSpeak3/ts3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/Teeworlds/twserver b/Teeworlds/twserver index 34bddb158..2db116724 100644 --- a/Teeworlds/twserver +++ b/Teeworlds/twserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/Terraria/terrariaserver b/Terraria/terrariaserver index 2b4f1ceb9..bcc9a270e 100644 --- a/Terraria/terrariaserver +++ b/Terraria/terrariaserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/UnrealTournament/utserver b/UnrealTournament/utserver index 823592246..e40cba5cb 100644 --- a/UnrealTournament/utserver +++ b/UnrealTournament/utserver @@ -1,5 +1,4 @@ #!/bin/bash -# Unreal Tournament # Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs # License: MIT License, Copyright (c) 2016 Daniel Gibbs @@ -15,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/UnrealTournament2004/ut2k4server b/UnrealTournament2004/ut2k4server index 8d2d37bd2..bfbce6d08 100644 --- a/UnrealTournament2004/ut2k4server +++ b/UnrealTournament2004/ut2k4server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/UnrealTournament3/ut3server b/UnrealTournament3/ut3server index 3c0d7a2b0..3a70643ee 100644 --- a/UnrealTournament3/ut3server +++ b/UnrealTournament3/ut3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/UnrealTournament99/ut99server b/UnrealTournament99/ut99server index f2895362b..c08403f97 100644 --- a/UnrealTournament99/ut99server +++ b/UnrealTournament99/ut99server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/WolfensteinEnemyTerritory/wetserver b/WolfensteinEnemyTerritory/wetserver index 3a3db6ce6..ff33e2647 100644 --- a/WolfensteinEnemyTerritory/wetserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 3a65cef3c..d141d58c7 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -17,7 +17,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161113" +version="161118" ########################## ######## Settings ######## From 56286fd617697ebfa2c504087ae5fc201afe3d8c Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 19 Nov 2016 22:37:43 +0100 Subject: [PATCH 151/169] Rust fix --- lgsm/functions/fix.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/fix.sh b/lgsm/functions/fix.sh index 5671ed627..85a65a814 100644 --- a/lgsm/functions/fix.sh +++ b/lgsm/functions/fix.sh @@ -45,6 +45,8 @@ if [ "${function_selfname}" != "command_install.sh" ]; then fix_ges.sh elif [ "${gamename}" == "Insurgency" ]; then fix_ins.sh + elif [ "${gamename}" == "Rust" ]; then + fix_rust.sh fi fi From bffd43bae2ec295fd11017316e113ad400fa1234 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 19 Nov 2016 22:37:51 +0100 Subject: [PATCH 152/169] Create fix_rust.sh --- lgsm/functions/fix_rust.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lgsm/functions/fix_rust.sh diff --git a/lgsm/functions/fix_rust.sh b/lgsm/functions/fix_rust.sh new file mode 100644 index 000000000..fce1640bb --- /dev/null +++ b/lgsm/functions/fix_rust.sh @@ -0,0 +1,11 @@ +#!/bin/bash +# LGSM fix_rust.sh function +# Author: Daniel Gibbs +# Website: https://gameservermanagers.com +# Description: Resolves startup issue with Rust + +local commandname="FIX" +local commandaction="Fix" + +# Fixes: ./srcds_linux: error while loading shared libraries: libtier0.so: cannot open shared object file: No such file or directory. +export LD_LIBRARY_PATH="${systemdir}/RustDedicated_Data/Plugins/x86_64" From 092f741ee2ef9e97f189ba8aca1afe5f1e80714b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 19 Nov 2016 22:38:25 +0100 Subject: [PATCH 153/169] Rust fix moves out --- Rust/rustserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rust/rustserver b/Rust/rustserver index 3a19bb140..6e153a9a9 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -118,7 +118,7 @@ filesdir="${rootdir}/serverfiles" ## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" -executable="LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`dirname $0`/RustDedicated_Data/Plugins/x86_64 ./RustDedicated" +executable="./RustDedicated" serveridentitydir="${systemdir}/server/${servicename}" servercfg="server.cfg" servercfgdefault="server.cfg" From 54162196af1feb9a7ba2da2261ed4cecaabd9a99 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 19 Nov 2016 22:44:12 +0100 Subject: [PATCH 154/169] added fix_rust.sh --- lgsm/functions/core_functions.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index f5ba4ce9e..b70cdeaee 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -362,6 +362,11 @@ functionfile="${FUNCNAME}" fn_fetch_function } +fix_rust.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + # Info info_config.sh(){ From 73a3132a937beed1aad34fc213db1138a0b36968 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 19 Nov 2016 22:50:27 +0100 Subject: [PATCH 155/169] better comments --- lgsm/functions/fix_rust.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/fix_rust.sh b/lgsm/functions/fix_rust.sh index fce1640bb..ec0b125d4 100644 --- a/lgsm/functions/fix_rust.sh +++ b/lgsm/functions/fix_rust.sh @@ -7,5 +7,5 @@ local commandname="FIX" local commandaction="Fix" -# Fixes: ./srcds_linux: error while loading shared libraries: libtier0.so: cannot open shared object file: No such file or directory. +# Fixes: [Raknet] Server Shutting Down (Shutting Down) export LD_LIBRARY_PATH="${systemdir}/RustDedicated_Data/Plugins/x86_64" From 62b7f98807346439ec0c99a399e8c11065fae2d2 Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Sun, 20 Nov 2016 01:14:07 +0100 Subject: [PATCH 156/169] Standardized DST config function partly and cleaned up dstserver script --- DontStarveTogether/dstserver | 7 ++----- lgsm/functions/install_config.sh | 29 +++++++++++------------------ 2 files changed, 13 insertions(+), 23 deletions(-) diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index 859dbbe8f..af9f2595a 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161111" +version="161120" ########################## ######## Settings ######## @@ -22,9 +22,7 @@ version="161111" #### Server Settings #### -## Installation Variables -# Visit the following link for more information: -# https://github.com/GameServerManagers/LinuxGSM/wiki/Don't-Starve-Together +## Installation Variables | https://github.com/GameServerManagers/LinuxGSM/wiki/Don't-Starve-Together sharding="false" master="true" shard="Master" @@ -44,7 +42,6 @@ confdir="DoNotStarveTogether" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters fn_parms(){ parms="-bind_ip ${ip} -port ${port} -steam_master_server_port ${steammasterserverport} -steam_authentication_port ${steamauthenticationport} -persistent_storage_root ${persistentstorageroot} -conf_dir ${confdir} -cluster ${cluster} -shard ${shard}" -# -console -cluster MyDediServer -shard Master } #### LinuxGSM Settings #### diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 9b0e5fc21..1a9bb69b3 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -55,9 +55,10 @@ 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 + elif [ "${gamename}" == "ARMA 3" ]&&[ "${config}" == "${networkcfgdefault}" ]; then cp -v "${lgsmdir}/default-configs/${config}" "${networkcfgfullpath}" + elif [ "${gamename}" == "Don't Starve Together" ]&&[ "${config}" == "${clustercfgdefault}" ]; then + cp -nv "${lgsmdir}/default-configs/${clustercfgdefault}" "${clustercfgfullpath}" else cp -v "${lgsmdir}/default-configs/${config}" "${servercfgdir}/${config}" fi @@ -65,15 +66,10 @@ fn_default_config_remote(){ sleep 1 } -# this should be somehow standardized -fn_dstconfig(){ +# Changes some variables within the default Don't Starve Together configs +fn_set_dst_config_vars(){ ## cluster.ini - # this config shouldn't be overridden - if [ ! -s "${clustercfgfullpath}" ]; then - echo "copying ${clustercfg} config file." - fn_script_log_info "copying ${clustercfg} config file." - cp -v "${lgsmdir}/default-configs/${clustercfgdefault}" "${clustercfgfullpath}" - sleep 1 + if grep -Fq "SERVERNAME" "${clustercfgfullpath}"; then echo "changing server name." fn_script_log_info "changing server name." sed -i "s/SERVERNAME/LinuxGSM/g" "${clustercfgfullpath}" @@ -88,15 +84,11 @@ fn_dstconfig(){ sed -i "s/CLUSTERKEY/${randomkey}/g" "${clustercfgfullpath}" sleep 1 else - echo "${clustercfg} already exists." - fn_script_log_info "${clustercfg} already exists." + echo "${clustercfg} is already configured." + fn_script_log_info "${clustercfg} is already configured." fi ## server.ini - echo "copying ${servercfg} config file." - fn_script_log_info "copying ${servercfg} config file." - cp -v "${lgsmdir}/default-configs/${servercfgdefault}" "${servercfgfullpath}" - sleep 1 # removing unnecessary options (dependent on sharding & shard type) if [ "${sharding}" == "false" ]; then sed -i "s/ISMASTER//g" "${servercfgfullpath}" @@ -104,7 +96,7 @@ fn_dstconfig(){ elif [ "${master}" == "true" ]; then sed -i "/SHARDNAME/d" "${servercfgfullpath}" fi - # configure settings + echo "changing shard name." fn_script_log_info "changing shard name." sed -i "s/SHARDNAME/${shard}/g" "${servercfgfullpath}" @@ -237,7 +229,8 @@ elif [ "${gamename}" == "Don't Starve Together" ]; then fn_check_cfgdir array_configs+=( cluster.ini server.ini ) fn_fetch_default_config - fn_dstconfig + fn_default_config_remote + fn_set_dst_config_vars elif [ "${gamename}" == "Double Action: Boogaloo" ]; then gamedirname="DoubleActionBoogaloo" array_configs+=( server.cfg ) From 4e694069954c67218c3674113f153ac81c3b47e5 Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Sun, 20 Nov 2016 11:57:02 +0100 Subject: [PATCH 157/169] Display correct config name when copying --- 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 1a9bb69b3..16b2882ee 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -51,7 +51,7 @@ fn_default_config_remote(){ for config in "${array_configs[@]}" do # every config is copied - echo "copying ${servercfg} config file." + echo "copying ${config} config file." fn_script_log_info "copying ${servercfg} config file." if [ "${config}" == "${servercfgdefault}" ]; then cp -v "${lgsmdir}/default-configs/${config}" "${servercfgfullpath}" From 9823aed3dfce3d87991ff70b88fafd8a3c5fb257 Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Sun, 20 Nov 2016 23:48:09 +0100 Subject: [PATCH 158/169] Move parameter variables to configs Setting variables in configs is preferred. --- DontStarveTogether/dstserver | 10 ++-------- lgsm/functions/info_config.sh | 19 +++++++++++++++++++ 2 files changed, 21 insertions(+), 8 deletions(-) diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index af9f2595a..c89ad92f6 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -29,19 +29,13 @@ shard="Master" cluster="Cluster_1" cave="false" -## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters -ip="0.0.0.0" -port="11000" -steamauthenticationport="8768" -steammasterserverport="27018" - # Edit with care persistentstorageroot="${HOME}/.klei" confdir="DoNotStarveTogether" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters fn_parms(){ -parms="-bind_ip ${ip} -port ${port} -steam_master_server_port ${steammasterserverport} -steam_authentication_port ${steamauthenticationport} -persistent_storage_root ${persistentstorageroot} -conf_dir ${confdir} -cluster ${cluster} -shard ${shard}" +parms="-persistent_storage_root ${persistentstorageroot} -conf_dir ${confdir} -cluster ${cluster} -shard ${shard}" } #### LinuxGSM Settings #### @@ -91,7 +85,7 @@ gamename="Don't Starve Together" engine="dontstarve" ## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers -servicename="dst-server" +servicename="dst-server-${shard}" #### Directories #### # Edit with care diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 99e2038fa..3bd3ebd04 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -95,6 +95,10 @@ fn_info_config_dontstarve(){ gamemode=$(grep "game_mode" "${clustercfgfullpath}" | 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" "${clustercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') masterport=$(grep "master_port" "${clustercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + + ip=$(grep "bind_ip" "${clustercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/bind_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + ipsetinconfig=1 + ipinconfigvar="bind_ip" # Not Set servername=${servername:-"NOT SET"} @@ -104,6 +108,21 @@ fn_info_config_dontstarve(){ tickrate=${tickrate:-"0"} masterport=${masterport:-"0"} fi + + if [ ! -f "${servercfgfullpath}" ]; then + port="${zero}" + steamauthenticationport="${zero}" + steammasterserverport="${zero}" + else + port=$(grep "server_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + steamauthenticationport=$(grep "authentication_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + steammasterserverport=$(grep "master_server_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + + # Not Set + port=${port:-"0"} + steamauthenticationport=${steamauthenticationport:-"0"} + steammasterserverport=${steammasterserverport:-"0"} + fi } fn_info_config_minecraft(){ From 6c43ad882f71e5181904c2b976ca283b4535b6ef Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Mon, 21 Nov 2016 00:09:35 +0100 Subject: [PATCH 159/169] Made server_port grep more unique master_server_port was also grep'd before --- 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 3bd3ebd04..e083e622a 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -114,7 +114,7 @@ fn_info_config_dontstarve(){ steamauthenticationport="${zero}" steammasterserverport="${zero}" else - port=$(grep "server_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + port=$(grep "server_port" "${servercfgfullpath}" | grep "^server_port" | grep -v "#" | tr -cd '[:digit:]') steamauthenticationport=$(grep "authentication_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') steammasterserverport=$(grep "master_server_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') From b4c87e66d892d9cbcde91b703a65cb5794b4a8d1 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 21 Nov 2016 22:17:48 +0000 Subject: [PATCH 160/169] Updated CoD:WAW to new design --- CallOfDutyWorldAtWar/codwawserver | 107 +++++++++++++++++++++--------- 1 file changed, 75 insertions(+), 32 deletions(-) diff --git a/CallOfDutyWorldAtWar/codwawserver b/CallOfDutyWorldAtWar/codwawserver index 199e34810..d89788aaf 100755 --- a/CallOfDutyWorldAtWar/codwawserver +++ b/CallOfDutyWorldAtWar/codwawserver @@ -1,87 +1,120 @@ #!/bin/bash -# Call of Duty: World at War -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2016 Daniel Gibbs +# Purpose: Call of Duty: World at War | 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" +version="161118" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### -# Email -emailalert="off" -email="email@example.com" +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters -# Pushbullet -# https://www.pushbullet.com/#settings -pushbulletalert="off" -pushbullettoken="accesstoken" - -# Start Variables defaultmap="mp_castle" maxclients="20" -ip="0.0.0.0" 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" +channeltag="" + +## 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 +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" -githubbranch="codwaw" +githubbranch="master" -# Server Details -servicename="codwaw-server" +## LinuxGSM Server Details +# Do not edit gamename="Call of Duty: World at War" engine="IW 3.0" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="coduo-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="./codwaw_lnxded" servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" servercfgdir="${systemdir}/main" servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" + +## 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 +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 From 6103215513d9daf327f8bdbf123163cdc4d9dd94 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 24 Nov 2016 19:51:41 +0000 Subject: [PATCH 161/169] Added CoD: WaW --- lgsm/functions/command_details.sh | 13 ++++++++++++- lgsm/functions/command_monitor.sh | 2 +- lgsm/functions/core_getopt.sh | 2 +- lgsm/functions/gsquery.py | 4 +++- lgsm/functions/info_config.sh | 17 +++++++++++++++++ lgsm/functions/info_glibc.sh | 3 +++ 6 files changed, 37 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 598451dc5..8387490a5 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -308,7 +308,7 @@ fn_details_ports(){ fi done # engines that require editing in the script file - local ports_edit_array=( "starbound" "spark" "source" "goldsource" "Rust" "Hurtworld" "unreal4") + local ports_edit_array=( "Hurtworld" "iw3.0" "goldsource" "Rust" "spark" "source" "starbound" "unreal4" ) for port_edit in "${ports_edit_array[@]}" do if [ "${engine}" == "${port_edit}" ]||[ "${gamename}" == "${port_edit}" ]; then @@ -368,6 +368,15 @@ fn_details_cod2(){ } | column -s $'\t' -t } +fn_details_codwaw(){ + echo -e "netstat -atunp | grep codwaw_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 "" @@ -730,6 +739,8 @@ fn_display_details() { fn_details_coduo elif [ "${gamename}" == "Call of Duty 2" ]; then fn_details_cod2 + elif [ "${gamename}" == "Call of Duty: World at War" ]; then + fn_details_codwaw elif [ "${gamename}" == "Hurtworld" ]; then fn_details_hurtworld elif [ "${gamename}" == "QuakeWorld" ]; then diff --git a/lgsm/functions/command_monitor.sh b/lgsm/functions/command_monitor.sh index 2e5de3402..7f247795f 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 iw2.0 quake refractor realvirtuality source spark unity3d unreal unreal2 ) + local allowed_engines_array=( avalanche goldsource idtech3 idtech3_ql iw2.0 iw3.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_getopt.sh b/lgsm/functions/core_getopt.sh index 2178c1acb..4044ade33 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}" == "Call of Duty: United Offensive" ]||[ "${gamename}" == "Call of Duty 2" ]||[ "${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: United Offensive" ]||[ "${gamename}" == "Call of Duty 2" ]||[ "${gamename}" == "Call of Duty: World at War" ]||[ "${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/gsquery.py b/lgsm/functions/gsquery.py index e45d891cb..512d7411b 100644 --- a/lgsm/functions/gsquery.py +++ b/lgsm/functions/gsquery.py @@ -28,6 +28,8 @@ class GameServer: 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 == 'iw3.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': @@ -115,7 +117,7 @@ if __name__ == '__main__': action='store', dest='engine', default=False, - help='Engine type: avalanche, goldsource, idtech2, idtech3, iw2.0, realvirtuality, quake, quakelive, refractor, spark, source, unity3d, unreal, unreal2.' + help='Engine type: avalanche, goldsource, idtech2, idtech3, iw2.0, iw3.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 318bf9da0..c795e3686 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -94,6 +94,20 @@ fn_info_config_cod2(){ fi } +fn_info_config_codwaw(){ + 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}" @@ -542,6 +556,9 @@ elif [ "${gamename}" == "Call of Duty" ]||[ "${gamename}" == "Call of Duty: Unit # Call of Duty 2 elif [ "${gamename}" == "Call of Duty 2" ]; then fn_info_config_cod2 +# Call of Duty: World at War +elif [ "${gamename}" == "Call of Duty: World at War" ]; then + fn_info_config_codwaw # 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 0a4dd888a..faacc022e 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -23,6 +23,9 @@ elif [ "${gamename}" == "Call of Duty 2" ]; then elif [ "${gamename}" == "Call of Duty: United Offensive" ]; then glibcrequired="2.1" glibcfix="no" +elif [ "${gamename}" == "Call of Duty: World at War" ]; then + glibcrequired="2.3.2" + glibcfix="no" elif [ "${gamename}" == "Day of Infamy" ]; then glibcrequired="2.15" glibcfix="yes" From 012e37640ca35007e9f7e823c1ddcbbd8528a41a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 24 Nov 2016 20:12:40 +0000 Subject: [PATCH 162/169] Changed slots to Maxplayers #1036 see issue #1036 --- lgsm/functions/alert_email.sh | 8 +-- lgsm/functions/command_details.sh | 8 +-- lgsm/functions/info_config.sh | 90 +++++++++++++++---------------- lgsm/functions/info_parms.sh | 6 +-- 4 files changed, 56 insertions(+), 56 deletions(-) diff --git a/lgsm/functions/alert_email.sh b/lgsm/functions/alert_email.sh index abca02525..7ec60b661 100644 --- a/lgsm/functions/alert_email.sh +++ b/lgsm/functions/alert_email.sh @@ -100,7 +100,7 @@ fn_details_gameserver(){ # Server IP: 1.2.3.4:27960 # RCON password: CHANGE_ME # Server password: NOT SET - # Slots: 16 + # Maxplayers: 16 # Status: OFFLINE { @@ -133,9 +133,9 @@ fn_details_gameserver(){ echo -e "Stats password: ********" fi - # Slots - if [ -n "${slots}" ]; then - echo -e "Slots: ${slots}" + # Maxplayers + if [ -n "${maxplayers}" ]; then + echo -e "Maxplayers: ${slots}" fi # Game mode diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 8387490a5..a1fd28f79 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -98,7 +98,7 @@ fn_details_gameserver(){ # Server IP: 1.2.3.4:27960 # RCON password: CHANGE_ME # Server password: NOT SET - # Slots: 16 + # Maxplayers: 16 # Status: OFFLINE echo -e "" @@ -133,9 +133,9 @@ fn_details_gameserver(){ echo -e "${blue}Stats password:\t${default}${statspassword}" fi - # Slots - if [ -n "${slots}" ]; then - echo -e "${blue}Slots:\t${default}${slots}" + # Maxplayers + if [ -n "${maxplayers}" ]; then + echo -e "${blue}Maxplayers:\t${default}${slots}" fi # Game mode diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index c795e3686..8cdb42b09 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -18,13 +18,13 @@ fn_info_config_avalanche(){ if [ ! -f "${servercfgfullpath}" ]; then servername="${unavailable}" serverpassword="${unavailable}" - slots="${zero}" + maxplayers="${zero}" port="${zero}" else 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:]') + maxplayers=$(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]*$//') @@ -34,7 +34,7 @@ fn_info_config_avalanche(){ # Not Set servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} - slots=${slots:-"0"} + maxplayers=${maxplayers:-"0"} port=${port:-"0"} fi } @@ -43,14 +43,14 @@ fn_info_config_bf1942(){ if [ ! -f "${servercfgfullpath}" ]; then servername="${unavailable}" serverpassword="${unavailable}" - slots="${zero}" + maxplayers="${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:]') + maxplayers=$(grep "game.serverMaxPlayers" "${servercfgfullpath}" | grep -v "\--" | tr -cd '[:digit:]') port=$(grep "game.serverPort" "${servercfgfullpath}" | grep -v "\--" | tr -cd '[:digit:]') queryport="22000" @@ -61,7 +61,7 @@ fn_info_config_bf1942(){ # Not Set servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} - slots=${slots:-"0"} + maxplayers=${maxplayers:-"0"} port=${port:-"0"} fi } @@ -112,14 +112,14 @@ fn_info_config_dontstarve(){ if [ ! -f "${servercfgfullpath}" ]; then servername="${unavailable}" serverpassword="${unavailable}" - slots="${zero}" + maxplayers="${zero}" gamemode="${unavailable}" 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 '=\";,:' | 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:]') + maxplayers=$(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 '=\";,:' | 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:]') @@ -127,7 +127,7 @@ fn_info_config_dontstarve(){ # Not Set servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} - slots=${slots:-"0"} + maxplayers=${maxplayers:-"0"} gamemode=${gamemode:-"NOT SET"} tickrate=${tickrate:-"0"} port=${port:-"0"} @@ -139,7 +139,7 @@ fn_info_config_minecraft(){ servername="${unavailable}" rconpassword="${unavailable}" rconport="${zero}" - slots="${zero}" + maxplayers="${zero}" port="${zero}" gamemode="${unavailable}" gameworld="${unavailable}" @@ -147,7 +147,7 @@ fn_info_config_minecraft(){ 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:]') + maxplayers=$(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 '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') @@ -160,7 +160,7 @@ fn_info_config_minecraft(){ servername=${servername:-"NOT SET"} rconpassword=${rconpassword:-"NOT SET"} rconport=${rconport:-"NOT SET"} - slots=${slots:-"NOT SET"} + maxplayers=${maxplayers:-"NOT SET"} port=${port:-"NOT SET"} gamemode=${gamemode:-"NOT SET"} gameworld=${gameworld:-"NOT SET"} @@ -173,14 +173,14 @@ fn_info_config_projectzomboid(){ servername="${unavailable}" serverpassword="${unavailable}" rconpassword="${unavailable}" - slots="${zero}" + maxplayers="${zero}" port="${zero}" gameworld="${unavailable}" else 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:]') + maxplayers=$(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 '=\";' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') @@ -188,7 +188,7 @@ fn_info_config_projectzomboid(){ servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} rconpassword=${rconpassword:-"NOT SET"} - slots=${slots:-"NOT SET"} + maxplayers=${maxplayers:-"NOT SET"} port=${port:-"NOT SET"} gameworld=${gameworld:-"NOT SET"} fi @@ -199,16 +199,16 @@ fn_info_config_quake2(){ rconpassword="${unavailable}" servername="${unavailable}" serverpassword="${unavailable}" - slots="${zero}" + maxplayers="${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:]') + maxplayers=$(grep "maxclients" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') # Not Set rconpassword=${rconpassword:-"NOT SET"} servername=${servername:-"NOT SET"} - slots=${slots:-"0"} + maxplayers=${maxplayers:-"0"} fi } @@ -217,18 +217,18 @@ fn_info_config_quake3(){ rconpassword="${unavailable}" servername="${unavailable}" serverpassword="${unavailable}" - slots="${zero}" + maxplayers="${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:]') + maxplayers=$(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"} + maxplayers=${maxplayers:-"0"} fi } @@ -237,12 +237,12 @@ fn_info_config_quakelive(){ rconpassword="${unavailable}" servername="${unavailable}" serverpassword="${unavailable}" - slots="${zero}" + maxplayers="${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 "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:]') + maxplayers=$(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 @@ -252,7 +252,7 @@ fn_info_config_quakelive(){ rconpassword=${rconpassword:-"NOT SET"} servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} - slots=${slots:-"0"} + maxplayers=${maxplayers:-"0"} fi } @@ -261,14 +261,14 @@ fn_info_config_wolfensteinenemyterritory(){ rconpassword="${unavailable}" servername="${unavailable}" serverpassword="${unavailable}" - slots="${zero}" + maxplayers="${zero}" 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' | 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:]') + maxplayers=$(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 @@ -278,7 +278,7 @@ fn_info_config_wolfensteinenemyterritory(){ rconpassword=${rconpassword:-"NOT SET"} servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} - slots=${slots:-"0"} + maxplayers=${maxplayers:-"0"} port=${port:-"27960"} fi } @@ -288,18 +288,18 @@ fn_info_config_realvirtuality(){ servername="${unavailable}" adminpassword="${unavailable}" serverpassword="${unavailable}" - slots="${zero}" + maxplayers="${zero}" else 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:]') + maxplayers=$(grep "maxPlayers" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') # Not Set servername=${servername:-"NOT SET"} adminpassword=${adminpassword:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} - slots=${slots:-"0"} + maxplayers=${maxplayers:-"0"} fi } @@ -308,20 +308,20 @@ fn_info_config_seriousengine35(){ servername="${unavailable}" rconpassword="${unavailable}" gamemode="${unavailable}" - slots="${zero}" + maxplayers="${zero}" port="${zero}" else 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:]') + maxplayers=$(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"} rconpassword=${rconpassword:-"NOT SET"} gamemode=${gamemode:-"NOT SET"} - slots=${slots:-"0"} + maxplayers=${maxplayers:-"0"} port=${port:-"0"} fi } @@ -350,14 +350,14 @@ fn_info_config_starbound(){ port="21025" queryport="21025" rconport="21026" - slots="8" + maxplayers="8" else 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:]') - slots=$(grep "maxPlayers" "${servercfgfullpath}" | tr -cd '[:digit:]') + maxplayers=$(grep "maxPlayers" "${servercfgfullpath}" | tr -cd '[:digit:]') # Not Set servername=${servername:-"NOT SET"} @@ -365,7 +365,7 @@ fn_info_config_starbound(){ port=${port:-"21025"} queryport=${queryport:-"21025"} rconport=${rconport:-"21026"} - slots=${slots:-"8"} + maxplayers=${maxplayers:-"8"} fi } @@ -418,20 +418,20 @@ fn_info_config_teeworlds(){ serverpassword="${unavailable}" rconpassword="${unavailable}" port="8303" - slots="12" + maxplayers="12" else 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:]') + maxplayers=$(grep "sv_max_clients" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') # Not Set servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} rconpassword=${rconpassword:-"NOT SET"} port=${port:-"8303"} - slots=${slots:-"12"} + maxplayers=${maxplayers:-"12"} fi } @@ -440,18 +440,18 @@ fn_info_config_terraria(){ servername="${unavailable}" port="${zero}" gameworld="${unavailable}" - slots="${zero}" + maxplayers="${zero}" else 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 '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - slots=$(grep "maxplayers" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') + maxplayers=$(grep "maxplayers" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') # Not Set servername=${servername:-"NOT SET"} port=${port:-"0"} gameworld=${gameworld:-"NOT SET"} - slots=${slots:-"0"} + maxplayers=${maxplayers:-"0"} fi } @@ -507,7 +507,7 @@ fn_info_config_sdtd(){ telnetenabled="${unavailable}" telnetport="${zero}" telnetpass="${unavailable}" - slots="${unavailable}" + maxplayers="${unavailable}" gamemode="${unavailable}" gameworld="${unavailable}" else @@ -523,7 +523,7 @@ fn_info_config_sdtd(){ telnetport=$(grep "TelnetPort" "${servercfgfullpath}" | tr -cd '[:digit:]') telnetpass=$(grep "TelnetPassword" "${servercfgfullpath}" | sed 's/^.*value="//' | cut -f1 -d"\"") - slots=$(grep "ServerMaxPlayerCount" "${servercfgfullpath}" | tr -cd '[:digit:]') + maxplayers=$(grep "ServerMaxPlayerCount" "${servercfgfullpath}" | tr -cd '[:digit:]') gamemode=$(grep "GameMode" "${servercfgfullpath}" | sed 's/^.*value="//' | cut -f1 -d"\"") gameworld=$(grep "GameWorld" "${servercfgfullpath}" | sed 's/^.*value="//' | cut -f1 -d"\"") @@ -538,7 +538,7 @@ fn_info_config_sdtd(){ telnetenabled=${telnetenabled:-"NOT SET"} telnetport=${telnetport:-"0"} telnetpass=${telnetpass:-"NOT SET"} - slots=${slots:-"NOT SET"} + maxplayers=${maxplayers:-"NOT SET"} gamemode=${gamemode:-"NOT SET"} gameworld=${gameworld:-"NOT SET"} fi diff --git a/lgsm/functions/info_parms.sh b/lgsm/functions/info_parms.sh index 7cfdd8b8b..72ef857c9 100644 --- a/lgsm/functions/info_parms.sh +++ b/lgsm/functions/info_parms.sh @@ -49,20 +49,20 @@ fn_info_config_teeworlds(){ serverpassword="${unavailable}" rconpassword="${unavailable}" port="8303" - slots="12" + maxplayers="12" else servername=$(grep "sv_name" "${servercfgfullpath}" | sed 's/sv_name //g' | sed 's/"//g') serverpassword=$(grep "password " "${servercfgfullpath}" | awk '!/sv_rcon_password/'| sed 's/password //g' | tr -d '=\"; ') rconpassword=$(grep "sv_rcon_password" "${servercfgfullpath}" | sed 's/sv_rcon_password //g' | tr -d '=\"; ') port=$(grep "sv_port" "${servercfgfullpath}" | tr -cd '[:digit:]') - slots=$(grep "sv_max_clients" "${servercfgfullpath}" | tr -cd '[:digit:]') + maxplayers=$(grep "sv_max_clients" "${servercfgfullpath}" | tr -cd '[:digit:]') # Not Set servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} rconpassword=${rconpassword:-"NOT SET"} port=${port:-"8303"} - slots=${slots:-"12"} + maxplayers=${maxplayers:-"12"} fi } From 1cc68d4e9b3838ccdd4719fcf652a75d17fe7d64 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 24 Nov 2016 22:36:24 +0000 Subject: [PATCH 163/169] issue #1085 --- lgsm/functions/check_deps.sh | 4 ++-- lgsm/functions/info_glibc.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 62d9ed6f6..36e0a8f04 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -201,7 +201,7 @@ if [ -n "$(command -v dpkg-query)" ]; then fi # GoldenEye: Source elif [ "${gamename}" == "GoldenEye: Source" ]; then - array_deps_required+=( zlib1g:i386 ) + array_deps_required+=( zlib1g:i386 libldap-2.4-2:i386 ) # Unreal Engine elif [ "${executable}" == "./ucc-bin" ]; then #UT2K4 @@ -273,7 +273,7 @@ elif [ -n "$(command -v yum)" ]; then fi # GoldenEye: Source elif [ "${gamename}" == "GoldenEye: Source" ]; then - array_deps_required+=( zlib.i686 ) + array_deps_required+=( zlib.i686 openldap.i686 ) # Unreal Engine elif [ "${executable}" == "./ucc-bin" ]; then #UT2K4 diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index faacc022e..b8b29239c 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -43,7 +43,7 @@ elif [ "${gamename}" == "Garry's Mod" ]; then glibcfix="yes" elif [ "${gamename}" == "GoldenEye: Source" ]; then glibcrequired="2.15" - glibcfix="no" + glibcfix="yes" elif [ "${gamename}" == "Insurgency" ]; then glibcrequired="2.15" glibcfix="yes" From 3db82db867d15bf8e6f7d6c244d67a5e4215250c Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Fri, 25 Nov 2016 00:44:35 +0100 Subject: [PATCH 164/169] Corrected overlooked maxplayers variables I hope I shouldn't have created a branch for that.. Just a small dev hotfix. --- lgsm/functions/alert_email.sh | 2 +- lgsm/functions/command_details.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/alert_email.sh b/lgsm/functions/alert_email.sh index 7ec60b661..6b440070c 100644 --- a/lgsm/functions/alert_email.sh +++ b/lgsm/functions/alert_email.sh @@ -135,7 +135,7 @@ fn_details_gameserver(){ # Maxplayers if [ -n "${maxplayers}" ]; then - echo -e "Maxplayers: ${slots}" + echo -e "Maxplayers: ${maxplayers}" fi # Game mode diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index a1fd28f79..2f26501e0 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -135,7 +135,7 @@ fn_details_gameserver(){ # Maxplayers if [ -n "${maxplayers}" ]; then - echo -e "${blue}Maxplayers:\t${default}${slots}" + echo -e "${blue}Maxplayers:\t${default}${maxplayers}" fi # Game mode From 23cf50932127c5a6137aa56193664b4f7f1ae3a0 Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Fri, 25 Nov 2016 00:57:43 +0100 Subject: [PATCH 165/169] Changing branch var to develop --- DontStarveTogether/dstserver | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index 1dd527100..24de569f5 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -79,7 +79,7 @@ branch="" # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" -githubbranch="dstserver-new" +githubbranch="develop" ## LinuxGSM Server Details # Do not edit @@ -204,4 +204,4 @@ fi core_dl.sh core_functions.sh getopt=$1 -core_getopt.sh \ No newline at end of file +core_getopt.sh From bde68d9cdd90279b7adf9e7046a7528aa56f19c8 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 25 Nov 2016 10:29:54 +0000 Subject: [PATCH 166/169] corrected github branch --- DontStarveTogether/dstserver | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index 24de569f5..643026c1a 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -25,7 +25,7 @@ version="161118" ## Installation Variables | https://github.com/GameServerManagers/LinuxGSM/wiki/Don't-Starve-Together sharding="false" master="true" -shard="Master" +shard="Master" cluster="Cluster_1" cave="false" @@ -79,7 +79,7 @@ branch="" # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" -githubbranch="develop" +githubbranch="master" ## LinuxGSM Server Details # Do not edit From 0f7aad815c7bf1feaf2849a79df59b351edc9032 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 25 Nov 2016 11:33:17 +0000 Subject: [PATCH 167/169] Update version number 161125 --- 7DaysToDie/sdtdserver | 2 +- ARKSurvivalEvolved/arkserver | 2 +- Arma3/arma3server | 2 +- Battlefield1942/bf1942server | 2 +- BlackMesa/bmdmserver | 2 +- BladeSymphony/bsserver | 2 +- BrainBread2/bb2server | 2 +- CallOfDuty/codserver | 2 +- CallOfDuty2/cod2server | 2 +- CallOfDutyUnitedOffensive/coduoserver | 2 +- CallOfDutyWorldAtWar/codwawserver | 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 | 2 +- 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 +- tests/tests_jc2server.sh | 2 +- 62 files changed, 62 insertions(+), 62 deletions(-) diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index 0c532d2e5..1e5bca25e 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index aa562c209..bc4c53812 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/Arma3/arma3server b/Arma3/arma3server index f5a1c7830..b132595a5 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/Battlefield1942/bf1942server b/Battlefield1942/bf1942server index 52eca3409..d011e57ac 100644 --- a/Battlefield1942/bf1942server +++ b/Battlefield1942/bf1942server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/BlackMesa/bmdmserver b/BlackMesa/bmdmserver index e59419347..025374c70 100644 --- a/BlackMesa/bmdmserver +++ b/BlackMesa/bmdmserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/BladeSymphony/bsserver b/BladeSymphony/bsserver index 89423115b..5e1a91654 100644 --- a/BladeSymphony/bsserver +++ b/BladeSymphony/bsserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/BrainBread2/bb2server b/BrainBread2/bb2server index 932600773..977e60025 100644 --- a/BrainBread2/bb2server +++ b/BrainBread2/bb2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/CallOfDuty/codserver b/CallOfDuty/codserver index 795f89b83..8bf07b570 100755 --- a/CallOfDuty/codserver +++ b/CallOfDuty/codserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/CallOfDuty2/cod2server b/CallOfDuty2/cod2server index 885175339..49a32f1e5 100755 --- a/CallOfDuty2/cod2server +++ b/CallOfDuty2/cod2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/CallOfDutyUnitedOffensive/coduoserver b/CallOfDutyUnitedOffensive/coduoserver index 95675a10f..37e053e10 100755 --- a/CallOfDutyUnitedOffensive/coduoserver +++ b/CallOfDutyUnitedOffensive/coduoserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/CallOfDutyWorldAtWar/codwawserver b/CallOfDutyWorldAtWar/codwawserver index d89788aaf..cd908489d 100755 --- a/CallOfDutyWorldAtWar/codwawserver +++ b/CallOfDutyWorldAtWar/codwawserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/CodenameCURE/ccserver b/CodenameCURE/ccserver index 00767735f..0fcd67964 100644 --- a/CodenameCURE/ccserver +++ b/CodenameCURE/ccserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/CounterStrike/csserver b/CounterStrike/csserver index 1acc5c203..8fae4ad6d 100644 --- a/CounterStrike/csserver +++ b/CounterStrike/csserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/CounterStrikeConditionZero/csczserver b/CounterStrikeConditionZero/csczserver index d478e5130..21b58f060 100644 --- a/CounterStrikeConditionZero/csczserver +++ b/CounterStrikeConditionZero/csczserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index 6e06cce57..00234ea57 100755 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/CounterStrikeSource/cssserver b/CounterStrikeSource/cssserver index 5748f9482..6710cd78d 100644 --- a/CounterStrikeSource/cssserver +++ b/CounterStrikeSource/cssserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/DayOfDefeat/dodserver b/DayOfDefeat/dodserver index b8d5fd24c..f1638263e 100644 --- a/DayOfDefeat/dodserver +++ b/DayOfDefeat/dodserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/DayOfDefeatSource/dodsserver b/DayOfDefeatSource/dodsserver index feae13543..bee83c953 100644 --- a/DayOfDefeatSource/dodsserver +++ b/DayOfDefeatSource/dodsserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/DayOfInfamy/doiserver b/DayOfInfamy/doiserver index 3059345ab..da1605b39 100644 --- a/DayOfInfamy/doiserver +++ b/DayOfInfamy/doiserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/DeathmatchClassic/dmcserver b/DeathmatchClassic/dmcserver index 38487c7fc..58b6c4282 100644 --- a/DeathmatchClassic/dmcserver +++ b/DeathmatchClassic/dmcserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index 643026c1a..260a57a39 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/DoubleActionBoogaloo/dabserver b/DoubleActionBoogaloo/dabserver index 8466f6d5d..0938bd94a 100644 --- a/DoubleActionBoogaloo/dabserver +++ b/DoubleActionBoogaloo/dabserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/FistfulOfFrags/fofserver b/FistfulOfFrags/fofserver index 5be1b822a..224ad89db 100644 --- a/FistfulOfFrags/fofserver +++ b/FistfulOfFrags/fofserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index ea7e16c0a..379e36a08 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/GoldenEyeSource/gesserver b/GoldenEyeSource/gesserver index 7eb70c8ba..c661a3d91 100644 --- a/GoldenEyeSource/gesserver +++ b/GoldenEyeSource/gesserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/HalfLife2Deathmatch/hl2dmserver b/HalfLife2Deathmatch/hl2dmserver index d2e98e034..49be6d637 100644 --- a/HalfLife2Deathmatch/hl2dmserver +++ b/HalfLife2Deathmatch/hl2dmserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/HalfLifeDeathmatch/hldmserver b/HalfLifeDeathmatch/hldmserver index 455bd016c..53bd98dc4 100644 --- a/HalfLifeDeathmatch/hldmserver +++ b/HalfLifeDeathmatch/hldmserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/HalfLifeDeathmatchSource/hldmsserver b/HalfLifeDeathmatchSource/hldmsserver index e5e992ef7..d0c9c33db 100644 --- a/HalfLifeDeathmatchSource/hldmsserver +++ b/HalfLifeDeathmatchSource/hldmsserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/Hurtworld/hwserver b/Hurtworld/hwserver index 81e085dcd..930f367be 100644 --- a/Hurtworld/hwserver +++ b/Hurtworld/hwserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/Insurgency/insserver b/Insurgency/insserver index 89589bdbb..6427fcdb7 100644 --- a/Insurgency/insserver +++ b/Insurgency/insserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/JustCause2/jc2server b/JustCause2/jc2server index 5ee07555e..1a4fa6c9a 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/KillingFloor/kfserver b/KillingFloor/kfserver index 6ff0300c1..53080e2a7 100644 --- a/KillingFloor/kfserver +++ b/KillingFloor/kfserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/Left4Dead/l4dserver b/Left4Dead/l4dserver index c72e1c6ec..b550880fa 100644 --- a/Left4Dead/l4dserver +++ b/Left4Dead/l4dserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/Left4Dead2/l4d2server b/Left4Dead2/l4d2server index 03f71e71e..8aee908b5 100644 --- a/Left4Dead2/l4d2server +++ b/Left4Dead2/l4d2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/Minecraft/mcserver b/Minecraft/mcserver index eaac52215..320edc90d 100644 --- a/Minecraft/mcserver +++ b/Minecraft/mcserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index 6e830badb..be06c44ef 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/NS2Combat/ns2cserver b/NS2Combat/ns2cserver index 77688302f..437921ad3 100644 --- a/NS2Combat/ns2cserver +++ b/NS2Combat/ns2cserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index bbb60dc34..3ce13f844 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/NoMoreRoomInHell/nmrihserver b/NoMoreRoomInHell/nmrihserver index 2c4e37ffe..6409591fc 100644 --- a/NoMoreRoomInHell/nmrihserver +++ b/NoMoreRoomInHell/nmrihserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/OpposingForce/opforserver b/OpposingForce/opforserver index 7b3cc6ef6..8fe185650 100644 --- a/OpposingForce/opforserver +++ b/OpposingForce/opforserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/PiratesVikingandKnightsII/pvkiiserver b/PiratesVikingandKnightsII/pvkiiserver index 4861430fe..e2c920423 100644 --- a/PiratesVikingandKnightsII/pvkiiserver +++ b/PiratesVikingandKnightsII/pvkiiserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/ProjectZomboid/pzserver b/ProjectZomboid/pzserver index 782a2118c..481dbdd75 100644 --- a/ProjectZomboid/pzserver +++ b/ProjectZomboid/pzserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/Quake2/q2server b/Quake2/q2server index 3a0723a1a..206ab8379 100644 --- a/Quake2/q2server +++ b/Quake2/q2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/Quake3/q3server b/Quake3/q3server index 445875a85..ae71118ec 100644 --- a/Quake3/q3server +++ b/Quake3/q3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/QuakeLive/qlserver b/QuakeLive/qlserver index 19fb451fa..d7be6d83d 100755 --- a/QuakeLive/qlserver +++ b/QuakeLive/qlserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/RedOrchestra/roserver b/RedOrchestra/roserver index 97534b981..85bd1b103 100644 --- a/RedOrchestra/roserver +++ b/RedOrchestra/roserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/Ricochet/ricochetserver b/Ricochet/ricochetserver index 419bc04c6..aaaf3f761 100644 --- a/Ricochet/ricochetserver +++ b/Ricochet/ricochetserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/Rust/rustserver b/Rust/rustserver index 6e153a9a9..f02e29231 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/SeriousSam3BFE/ss3sserver b/SeriousSam3BFE/ss3sserver index bf5b8b3d9..f668959d6 100644 --- a/SeriousSam3BFE/ss3sserver +++ b/SeriousSam3BFE/ss3sserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/Starbound/sbserver b/Starbound/sbserver index ef4f73ef9..d4d93913f 100644 --- a/Starbound/sbserver +++ b/Starbound/sbserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/SvenCoop/svenserver b/SvenCoop/svenserver index c6fecf4ba..c69706307 100644 --- a/SvenCoop/svenserver +++ b/SvenCoop/svenserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/TeamFortress2/tf2server b/TeamFortress2/tf2server index 2d9a3da3c..c4ae5feae 100644 --- a/TeamFortress2/tf2server +++ b/TeamFortress2/tf2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/TeamFortressClassic/tfcserver b/TeamFortressClassic/tfcserver index 9b80dca60..68be7bfb0 100644 --- a/TeamFortressClassic/tfcserver +++ b/TeamFortressClassic/tfcserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/TeamSpeak3/ts3server b/TeamSpeak3/ts3server index 10e3344ec..b22971108 100644 --- a/TeamSpeak3/ts3server +++ b/TeamSpeak3/ts3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/Teeworlds/twserver b/Teeworlds/twserver index 2db116724..367baa386 100644 --- a/Teeworlds/twserver +++ b/Teeworlds/twserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/Terraria/terrariaserver b/Terraria/terrariaserver index bcc9a270e..cc68d2632 100644 --- a/Terraria/terrariaserver +++ b/Terraria/terrariaserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/UnrealTournament/utserver b/UnrealTournament/utserver index e40cba5cb..23a0d0ff1 100644 --- a/UnrealTournament/utserver +++ b/UnrealTournament/utserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/UnrealTournament2004/ut2k4server b/UnrealTournament2004/ut2k4server index bfbce6d08..2ee0f9b3f 100644 --- a/UnrealTournament2004/ut2k4server +++ b/UnrealTournament2004/ut2k4server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/UnrealTournament3/ut3server b/UnrealTournament3/ut3server index 3a70643ee..f721859b0 100644 --- a/UnrealTournament3/ut3server +++ b/UnrealTournament3/ut3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/UnrealTournament99/ut99server b/UnrealTournament99/ut99server index c08403f97..8a86a4bfb 100644 --- a/UnrealTournament99/ut99server +++ b/UnrealTournament99/ut99server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/WolfensteinEnemyTerritory/wetserver b/WolfensteinEnemyTerritory/wetserver index ff33e2647..7cddd0575 100644 --- a/WolfensteinEnemyTerritory/wetserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index d141d58c7..c4d46cbcb 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -17,7 +17,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="161118" +version="161125" ########################## ######## Settings ######## From bd7397ffa1045f49df6f0d15b3da8c061f1a250e Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 25 Nov 2016 12:24:23 +0000 Subject: [PATCH 168/169] hotfix: Corrected engine and servicename --- CallOfDutyWorldAtWar/codwawserver | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CallOfDutyWorldAtWar/codwawserver b/CallOfDutyWorldAtWar/codwawserver index cd908489d..c5bfbf785 100755 --- a/CallOfDutyWorldAtWar/codwawserver +++ b/CallOfDutyWorldAtWar/codwawserver @@ -69,10 +69,10 @@ githubbranch="master" ## LinuxGSM Server Details # Do not edit gamename="Call of Duty: World at War" -engine="IW 3.0" +engine="iw3.0" ## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers -servicename="coduo-server" +servicename="codwaw-server" #### Directories #### # Edit with care From e912cc5f783c1ca98224908b48ac70cb1ba163a8 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 28 Nov 2016 22:31:12 +0000 Subject: [PATCH 169/169] #1204 "/stop" is replaced by "stop" --- lgsm/functions/command_stop.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index 95aa10536..c5483a864 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -144,29 +144,29 @@ fn_stop_graceful_sdtd(){ fn_stop_tmux } -# Attempts graceful of source using rcon '/stop' command. +# Attempts graceful of source using rcon 'stop' command. fn_stop_graceful_minecraft(){ - fn_print_dots "Graceful: console /stop" - fn_script_log_info "Graceful: console /stop" + fn_print_dots "Graceful: console stop" + fn_script_log_info "Graceful: console stop" # sends quit - tmux send -t "${servicename}" /stop ENTER > /dev/null 2>&1 + tmux send -t "${servicename}" stop ENTER > /dev/null 2>&1 # waits up to 30 seconds giving the server time to shutdown gracefuly for seconds in {1..30}; do check_status.sh if [ "${status}" == "0" ]; then - fn_print_ok "Graceful: console /stop: ${seconds}: " + fn_print_ok "Graceful: console stop: ${seconds}: " fn_print_ok_eol_nl - fn_script_log_pass "Graceful: console /stop: OK: ${seconds} seconds" + fn_script_log_pass "Graceful: console stop: OK: ${seconds} seconds" break fi sleep 1 - fn_print_dots "Graceful: console /stop: ${seconds}" + fn_print_dots "Graceful: console stop: ${seconds}" done check_status.sh if [ "${status}" != "0" ]; then - fn_print_error "Graceful: console /stop: " + fn_print_error "Graceful: console stop: " fn_print_fail_eol_nl - fn_script_log_error "Graceful: console /stop: FAIL" + fn_script_log_error "Graceful: console stop: FAIL" fi sleep 1 fn_stop_tmux