From f763e4b96cef375b768e76c333d9f2475420f7d1 Mon Sep 17 00:00:00 2001 From: Scarsz Date: Fri, 26 May 2017 18:12:09 -0700 Subject: [PATCH 01/15] Add squadserver main file --- Squad/squadserver | 199 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 199 insertions(+) create mode 100644 Squad/squadserver diff --git a/Squad/squadserver b/Squad/squadserver new file mode 100644 index 000000000..7228e7ab8 --- /dev/null +++ b/Squad/squadserver @@ -0,0 +1,199 @@ +#!/bin/bash +# Project: Game Server Managers - LinuxGSM +# Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2017 Daniel Gibbs +# Purpose: Squad | 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="170501" + +########################## +######## Settings ######## +########################## + +#### Server Settings #### + +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +port="7787" +queryport="27165" +fixedmaxplayers="80" +randommapmode="ALWAYS" +ip="0.0.0.0" + +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +fn_parms(){ +parms="MULTIHOME=${ip} PORT=${port} QueryPort=${queryport} FIXEDMAXPLAYERS=${fixedmaxplayers} RANDOM={randommapmode}" +} + +#### 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="" + +## 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="403240" +# 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="feature/squadserver" + +## LinuxGSM Server Details +# Do not edit +gamename="Squad" +engine="unreal4" + +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="squad-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}/Squad" +executabledir="${systemdir}/Binaries/Linux" +executable="./SquadServer" +servercfgdir="${systemdir}/ServerConfig" +servercfg="Server.cfg" +servercfgdefault="Server.cfg" +servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory +backupdir="${rootdir}/backups" + +## Logging Directories +gamelogdir="${systemdir}/Saved/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 From 79d9dcafd0ccbdc1e865c56af593a7a93d308ac6 Mon Sep 17 00:00:00 2001 From: Scarsz Date: Fri, 26 May 2017 18:29:17 -0700 Subject: [PATCH 02/15] change executable to use included start script better to use it as it's included with the server & sets some environment info --- Squad/squadserver | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Squad/squadserver b/Squad/squadserver index 7228e7ab8..e16c730b2 100644 --- a/Squad/squadserver +++ b/Squad/squadserver @@ -100,8 +100,8 @@ filesdir="${rootdir}/serverfiles" ## Server Specific Directories systemdir="${filesdir}/Squad" -executabledir="${systemdir}/Binaries/Linux" -executable="./SquadServer" +executabledir="${systemdir}" +executable="./SquadServer.sh" servercfgdir="${systemdir}/ServerConfig" servercfg="Server.cfg" servercfgdefault="Server.cfg" From 60ed162d95e369129dbeed3b6641b36a876e047c Mon Sep 17 00:00:00 2001 From: Scarsz Date: Fri, 26 May 2017 18:30:34 -0700 Subject: [PATCH 03/15] add Squad sections to command_details adds map rotation mode & port information --- lgsm/functions/command_details.sh | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 106eb0041..1286f04a2 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -173,6 +173,11 @@ fn_details_gameserver(){ echo -e "${blue}ASE:\t${default}${ase}" fi + # Random map rotation mode (Squad) + if [ -n "${randommapmode}"]; then + echo -e "${blue}Map rotation:\t${default}${randommapmode}" + fi + # Online status if [ "${status}" == "0" ]; then echo -e "${blue}Status:\t${red}OFFLINE${default}" @@ -190,7 +195,7 @@ fn_details_script(){ # Service name: ql-server # qlserver version: 150316 # User: lgsm - # Email alert: off + # Email alert: off # Update on start: off # Location: /home/lgsm/qlserver # Config file: /home/lgsm/qlserver/serverfiles/baseq3/ql-server.cfg @@ -656,6 +661,21 @@ fn_details_spark(){ } | column -s $'\t' -t } +fn_details_squad(){ + echo -e "netstat -atunp | grep SquadServer" + echo -e "" + { + echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" + echo -e "> Game\tINBOUND\t${port}\tudp" + # Don't do arithmetics if ever the port wasn't a numeric value + if [ "${port}" -eq "${port}" ]; then + echo -e "> RAW\tINBOUND\t$((port+1))\tudp" + fi + echo -e "> Query\tINBOUND\t${queryport}\tudp" + echo -e "> RCON\tINBOUND\t${rconport}\ttcp" + } | column -s $'\t' -t +} + fn_details_starbound(){ echo -e "netstat -atunp | grep starbound" echo -e "" @@ -861,6 +881,8 @@ fn_display_details() { fn_details_quake3 elif [ "${gamename}" == "Quake Live" ]; then fn_details_quakelive + elif [ "${gamename}" == "Squad"]; then + fn_details_squad elif [ "${gamename}" == "TeamSpeak 3" ]; then fn_details_teamspeak3 elif [ "${gamename}" == "Tower Unite" ]; then From d63c710d5ed801f822a0ce4bb4d4240200f256d3 Mon Sep 17 00:00:00 2001 From: Scarsz Date: Fri, 26 May 2017 18:49:07 -0700 Subject: [PATCH 04/15] Add install_squad_license to prompt user to add a license key if wanted --- lgsm/functions/command_install.sh | 2 ++ lgsm/functions/install_squad_license.sh | 26 +++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 lgsm/functions/install_squad_license.sh diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index 7bbc40f42..5f8fe3d30 100644 --- a/lgsm/functions/command_install.sh +++ b/lgsm/functions/command_install.sh @@ -36,6 +36,8 @@ elif [ "${gamename}" == "TeamSpeak 3" ]; then install_ts3db.sh elif [ "${gamename}" == "Multi Theft Auto" ]; then command_install_resources_mta.sh +elif [ "${gamename}" == "Squad" ]; then + install_squad_license.sh fi fix.sh diff --git a/lgsm/functions/install_squad_license.sh b/lgsm/functions/install_squad_license.sh new file mode 100644 index 000000000..a832ab16f --- /dev/null +++ b/lgsm/functions/install_squad_license.sh @@ -0,0 +1,26 @@ +#!/bin/bash +# LinuxGSM install_squad_license.sh function +# Author: Daniel Gibbs +# Website: https://gameservermanagers.com +# Description: Configures the Squad server's license. + +local commandname="INSTALL" +local commandaction="Install" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +echo "" +echo "Squad Server License" +echo "=================================" +sleep 1 +echo "Server license is an optional feature for ${gamename} server" +fn_script_log_info "Server license is an optional feature for ${gamename} server" + +echo "Get more info and a server license here:" +echo "http://forums.joinsquad.com/topic/16519-server-licensing-general-info/" +fn_script_log_info "Get more info and a server license here:" +fn_script_log_info "http://forums.joinsquad.com/topic/16519-server-licensing-general-info/" +echo "" +sleep 1 +echo "The Squad server license can be changed by editing ${servercfgdir}/License.cfg." +fn_script_log_info "The Squad server license can be changed by editing ${selfname}." +echo "" \ No newline at end of file From 09e62c7ae84ffc8162d62958493470a2ccb3b037 Mon Sep 17 00:00:00 2001 From: Scarsz Date: Fri, 26 May 2017 18:51:18 -0700 Subject: [PATCH 05/15] Add getopt block for Squad license prompt --- lgsm/functions/core_getopt.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index a17487eb5..b877211c9 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -40,6 +40,7 @@ cmd_map_compressor_u99=( "mc;map-compressor" "compress_ut99_maps.sh" "Compresses cmd_map_compressor_u2=( "mc;map-compressor" "compress_unreal2_maps.sh" "Compresses all ${gamename} server maps." ) cmd_install_cdkey=( "cd;server-cd-key" "install_ut2k4_key.sh" "Add your server cd key." ) cmd_install_dst_token=( "ct;cluster-token" "install_dst_token.sh" "Configure cluster token." ) +cmd_install_squad_license=( "li;license" "install_squad_license.sh" "Add your Squad server license." ) cmd_fastdl=( "fd;fastdl" "command_fastdl.sh" "Build a FastDL directory." ) # Dev commands cmd_dev_debug=( "dev;developer" "command_dev_debug.sh" "Enable developer Mode." ) @@ -114,6 +115,11 @@ if [ "${gamename}" == "Multi Theft Auto" ]; then currentopt+=( "${cmd_install_default_resources[@]}" ) fi +# Squad license exclusive +if [ "${gamename}" == "Squad" ]; then + currentopt+=( "${cmd_install_squad_license[@]}" ) +fi + ## Mods commands if [ "${engine}" == "source" ]||[ "${gamename}" == "Rust" ]||[ "${gamename}" == "Hurtworld" ]||[ "${gamename}" == "7 Days To Die" ]; then currentopt+=( "${cmd_mods_install[@]}" "${cmd_mods_remove[@]}" "${cmd_mods_update[@]}" ) From 30c94db080a8d3180d679cc1ef75d8c2d12133bb Mon Sep 17 00:00:00 2001 From: Scarsz Date: Fri, 26 May 2017 18:59:38 -0700 Subject: [PATCH 06/15] space love how touchy bash is --- lgsm/functions/command_details.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 1286f04a2..530f869e0 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -174,7 +174,7 @@ fn_details_gameserver(){ fi # Random map rotation mode (Squad) - if [ -n "${randommapmode}"]; then + if [ -n "${randommapmode}" ]; then echo -e "${blue}Map rotation:\t${default}${randommapmode}" fi @@ -881,7 +881,7 @@ fn_display_details() { fn_details_quake3 elif [ "${gamename}" == "Quake Live" ]; then fn_details_quakelive - elif [ "${gamename}" == "Squad"]; then + elif [ "${gamename}" == "Squad" ]; then fn_details_squad elif [ "${gamename}" == "TeamSpeak 3" ]; then fn_details_teamspeak3 From 56a9b7e310b352decfc269fddfa2d157e4a92a7f Mon Sep 17 00:00:00 2001 From: Scarsz Date: Fri, 26 May 2017 19:08:04 -0700 Subject: [PATCH 07/15] Add install_squad_license.sh block to core_functions --- 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 1738928ca..7a095b96f 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -187,6 +187,11 @@ functionfile="${FUNCNAME}" fn_fetch_function } +install_squad_license.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + command_mods_install.sh(){ functionfile="${FUNCNAME}" fn_fetch_function From daa57b9782dc2f985a987aa7c8a0d6331feee9dc Mon Sep 17 00:00:00 2001 From: Scarsz Date: Fri, 26 May 2017 19:10:45 -0700 Subject: [PATCH 08/15] Add install_squad_license.sh block to command_install --- lgsm/functions/command_install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index 5f8fe3d30..092496b01 100644 --- a/lgsm/functions/command_install.sh +++ b/lgsm/functions/command_install.sh @@ -32,6 +32,8 @@ if [ "${gamename}" == "BrainBread 2" ]||[ "${gamename}" == "Black Mesa: Deathmat install_gslt.sh elif [ "${gamename}" == "Don't Starve Together" ]; then install_dst_token.sh +elif [ "${gamename}" == "Squad" ]; then + install_squad_license.sh elif [ "${gamename}" == "TeamSpeak 3" ]; then install_ts3db.sh elif [ "${gamename}" == "Multi Theft Auto" ]; then From 1b38006b9d0350efee9e8b0b5d1c1302bc838df7 Mon Sep 17 00:00:00 2001 From: Scarsz Date: Fri, 26 May 2017 19:25:05 -0700 Subject: [PATCH 09/15] remove irrelevant entry for Squad details, read RCON port from cfg file --- lgsm/functions/command_details.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 530f869e0..9af448e76 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -662,15 +662,12 @@ fn_details_spark(){ } fn_details_squad(){ + rconport=$(cat ${servercfgdir}/Rcon.cfg | grep "Port=" | cut -c6-) # obtain rcon port from file echo -e "netstat -atunp | grep SquadServer" echo -e "" { echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" echo -e "> Game\tINBOUND\t${port}\tudp" - # Don't do arithmetics if ever the port wasn't a numeric value - if [ "${port}" -eq "${port}" ]; then - echo -e "> RAW\tINBOUND\t$((port+1))\tudp" - fi echo -e "> Query\tINBOUND\t${queryport}\tudp" echo -e "> RCON\tINBOUND\t${rconport}\ttcp" } | column -s $'\t' -t From 9fc01c2b940cb26e2602fad869803fea304dba88 Mon Sep 17 00:00:00 2001 From: Scarsz Date: Fri, 26 May 2017 19:33:10 -0700 Subject: [PATCH 10/15] fix executabledir --- Squad/squadserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Squad/squadserver b/Squad/squadserver index e16c730b2..964b9b0ea 100644 --- a/Squad/squadserver +++ b/Squad/squadserver @@ -100,7 +100,7 @@ filesdir="${rootdir}/serverfiles" ## Server Specific Directories systemdir="${filesdir}/Squad" -executabledir="${systemdir}" +executabledir="${filesdir}" executable="./SquadServer.sh" servercfgdir="${systemdir}/ServerConfig" servercfg="Server.cfg" From a67300eb9ee21d1675e02497496fcbf872c59364 Mon Sep 17 00:00:00 2001 From: Scarsz Date: Fri, 26 May 2017 19:54:56 -0700 Subject: [PATCH 11/15] move rcon info reading for squad, add read of server name & max players --- lgsm/functions/command_details.sh | 1 - lgsm/functions/info_config.sh | 23 +++++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 9af448e76..e1b9f418f 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -662,7 +662,6 @@ fn_details_spark(){ } fn_details_squad(){ - rconport=$(cat ${servercfgdir}/Rcon.cfg | grep "Port=" | cut -c6-) # obtain rcon port from file echo -e "netstat -atunp | grep SquadServer" echo -e "" { diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index a179efbb4..e40d8d1a5 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -703,6 +703,27 @@ fn_info_config_wolfensteinenemyterritory(){ fi } +fn_info_config_squad(){ + if [ ! -f "${servercfgfullpath}" ]; then + servername="${unavailable}" + maxplayers="${unavailable}" + else + servername="$(cat ${servercfgfullpath} | grep "ServerName=" | cut -c13- | rev | cut -c3- | rev)" + maxplayers="$(cat ${servercfgfullpath} | grep "MaxPlayers=" | cut -c12-)" + fi + + if [ ! -f "${servercfgdir}/Rcon.cfg" ]; then + rconport=${unavailable} + rconpassword=${unavailable} + else + rconport=$(cat ${servercfgdir}/Rcon.cfg | grep "Port=" | cut -c6-) + rconpassword=$(cat ${servercfgdir}/Rcon.cfg | grep "Password=" | cut -c6-) + if [ -z "${rconpassword}" ]; then + rconpassword="${cyan}DISABLED${default}" + fi + fi +} + # Just Cause 2 if [ "${engine}" == "avalanche" ]; then fn_info_config_avalanche @@ -787,4 +808,6 @@ elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fn_info_config_wolfensteinenemyterritory elif [ "${gamename}" == "Multi Theft Auto" ]; then fn_info_config_mta +elif [ "${gamename}" == "Squad"]; then + fn_info_config_squad fi From cdfdffef3719c2273eb4ac1d1bb4d6a7b0a4b957 Mon Sep 17 00:00:00 2001 From: Scarsz Date: Fri, 26 May 2017 20:01:33 -0700 Subject: [PATCH 12/15] space love bash --- 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 e40d8d1a5..a466e7e53 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -808,6 +808,6 @@ elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fn_info_config_wolfensteinenemyterritory elif [ "${gamename}" == "Multi Theft Auto" ]; then fn_info_config_mta -elif [ "${gamename}" == "Squad"]; then +elif [ "${gamename}" == "Squad" ]; then fn_info_config_squad fi From 432c3c48f3583457c12861ed8a6cea30e10e0a2c Mon Sep 17 00:00:00 2001 From: Scarsz Date: Fri, 26 May 2017 20:16:02 -0700 Subject: [PATCH 13/15] fix up Squad block in info_config --- lgsm/functions/info_config.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index a466e7e53..80118f716 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -709,17 +709,17 @@ fn_info_config_squad(){ maxplayers="${unavailable}" else servername="$(cat ${servercfgfullpath} | grep "ServerName=" | cut -c13- | rev | cut -c3- | rev)" - maxplayers="$(cat ${servercfgfullpath} | grep "MaxPlayers=" | cut -c12-)" + maxplayers="$(cat ${servercfgfullpath} | grep "MaxPlayers=" | cut -c12- | tr -cd '[:digit:]')" fi if [ ! -f "${servercfgdir}/Rcon.cfg" ]; then rconport=${unavailable} rconpassword=${unavailable} else - rconport=$(cat ${servercfgdir}/Rcon.cfg | grep "Port=" | cut -c6-) - rconpassword=$(cat ${servercfgdir}/Rcon.cfg | grep "Password=" | cut -c6-) - if [ -z "${rconpassword}" ]; then - rconpassword="${cyan}DISABLED${default}" + rconport=$(cat ${servercfgdir}/Rcon.cfg | grep "Port=" | cut -c6- | tr -cd '[:digit:]') + rconpassword=$(cat ${servercfgdir}/Rcon.cfg | grep "Password=" | cut -c10-) + if [ -z "${rconpassword}" ]||[ ${#rconpassword} == 1 ]; then + rconpassword="${yellow}DISABLED${default}" fi fi } From 559ace3bab92b0a1f23ec75bc3667929e9557ce7 Mon Sep 17 00:00:00 2001 From: Scarsz Date: Fri, 26 May 2017 20:40:34 -0700 Subject: [PATCH 14/15] remove duplicate entry in command_install for Squad don't code tired, boys --- lgsm/functions/command_install.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index 092496b01..f344cc598 100644 --- a/lgsm/functions/command_install.sh +++ b/lgsm/functions/command_install.sh @@ -38,8 +38,6 @@ elif [ "${gamename}" == "TeamSpeak 3" ]; then install_ts3db.sh elif [ "${gamename}" == "Multi Theft Auto" ]; then command_install_resources_mta.sh -elif [ "${gamename}" == "Squad" ]; then - install_squad_license.sh fi fix.sh From b54daa0484d26a1fe71b934feef5ac3aad4aae4a Mon Sep 17 00:00:00 2001 From: Scarsz Date: Fri, 26 May 2017 20:49:33 -0700 Subject: [PATCH 15/15] add missing $ oops --- Squad/squadserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Squad/squadserver b/Squad/squadserver index 964b9b0ea..3c3d04a0e 100644 --- a/Squad/squadserver +++ b/Squad/squadserver @@ -31,7 +31,7 @@ ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters fn_parms(){ -parms="MULTIHOME=${ip} PORT=${port} QueryPort=${queryport} FIXEDMAXPLAYERS=${fixedmaxplayers} RANDOM={randommapmode}" +parms="MULTIHOME=${ip} PORT=${port} QueryPort=${queryport} FIXEDMAXPLAYERS=${fixedmaxplayers} RANDOM=${randommapmode}" } #### LinuxGSM Settings ####