From afe1853ab2571a4deaa47857783087ca4f0d07d2 Mon Sep 17 00:00:00 2001 From: Chaos Date: Mon, 20 Mar 2017 17:39:43 -0600 Subject: [PATCH 01/11] Resolves #1377 --- lgsm/functions/info_distro.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/info_distro.sh b/lgsm/functions/info_distro.sh index d8d733d64..abc3fff59 100644 --- a/lgsm/functions/info_distro.sh +++ b/lgsm/functions/info_distro.sh @@ -37,12 +37,14 @@ glibcversion="$(ldd --version | sed -n '1s/.* //p')" ## tmux version # e.g: tmux 1.6 -if [ -z "$(command -v tmux)" ]; then +if [ -z "$(command -V tmux)" ]; then tmuxv="${red}NOT INSTALLED!${default}" -elif [ "$(tmux -V|sed "s/tmux //" | sed -n '1 p' | tr -cd '[:digit:]')" -lt "16" ]; then - tmuxv="$(tmux -V) (>= 1.6 required for console log)" else - tmuxv=$(tmux -V) + if [ "$(tmux -V|sed "s/tmux //" | sed -n '1 p' | tr -cd '[:digit:]')" -lt "16" ] 2>/dev/null; then + tmuxv="$(tmux -V) (>= 1.6 required for console log)" + else + tmuxv=$(tmux -V) + fi fi ## Uptime From 4b547ef89973114c0a9cd502f804ef8f3f66171b Mon Sep 17 00:00:00 2001 From: Chaos Date: Mon, 20 Mar 2017 17:56:00 -0600 Subject: [PATCH 02/11] Fixes the same issue in command_start --- lgsm/functions/command_start.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index 1f411af48..4bad75d7b 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -84,13 +84,13 @@ fn_start_tmux(){ tmux new-session -d -s "${servicename}" "${executable} ${parms}" 2> "${scriptlogdir}/.${servicename}-tmux-error.tmp" # tmux pipe-pane not supported in tmux versions < 1.6 - if [ "$(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd '[:digit:]')" -lt "16" ]; then + if [ "$(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd '[:digit:]')" -lt "16" ] 2>/dev/null; then echo "Console logging disabled: Tmux => 1.6 required https://gameservermanagers.com/tmux-upgrade Currently installed: $(tmux -V)" > "${consolelog}" # Console logging disabled: Bug in tmux 1.8 breaks logging - elif [ "$(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd '[:digit:]')" -eq "18" ]; then + elif [ "$(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd '[:digit:]')" -eq "18" ] 2>/dev/null; then echo "Console logging disabled: Bug in tmux 1.8 breaks logging https://gameservermanagers.com/tmux-upgrade Currently installed: $(tmux -V)" > "${consolelog}" From d0c6cbf1cce34e28cc9d7c0df31322166c5950d3 Mon Sep 17 00:00:00 2001 From: Chaos Date: Mon, 20 Mar 2017 17:56:59 -0600 Subject: [PATCH 03/11] Helpful comment as to why I'm doing this --- 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 4bad75d7b..b4928905d 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -84,7 +84,7 @@ fn_start_tmux(){ tmux new-session -d -s "${servicename}" "${executable} ${parms}" 2> "${scriptlogdir}/.${servicename}-tmux-error.tmp" # tmux pipe-pane not supported in tmux versions < 1.6 - if [ "$(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd '[:digit:]')" -lt "16" ] 2>/dev/null; then + if [ "$(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd '[:digit:]')" -lt "16" ] 2>/dev/null; then # Tmux compiled from source will not return a number, therefore bypass this check and trash the error echo "Console logging disabled: Tmux => 1.6 required https://gameservermanagers.com/tmux-upgrade Currently installed: $(tmux -V)" > "${consolelog}" From 283e54b9dcc7399f1007b7bdaaa644a9a912227e Mon Sep 17 00:00:00 2001 From: Chaos Date: Mon, 3 Apr 2017 00:11:44 -0600 Subject: [PATCH 04/11] Added a discord icon to the readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 72e57fa62..978fdbbff 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ [![Build Status](https://travis-ci.org/GameServerManagers/LinuxGSM.svg?branch=master)](https://travis-ci.org/GameServerManagers/LinuxGSM) [![Under Development](https://badge.waffle.io/GameServerManagers/LinuxGSM.svg?label=Under%20Development&title=Under%20Development)](http://waffle.io/GameServerManagers/LinuxGSM) +[![Discord](https://discordapp.com/api/guilds/127498813903601664/widget.png?style=shield)](https://gameservermanagers.com/discord) The Linux Game Server Managers are command line tools for quick, simple deployment and management of various dedicated game servers and voice alert servers. From 61bc06acf2443daef166d513527bcbbd82737fa2 Mon Sep 17 00:00:00 2001 From: TechNZ Date: Tue, 11 Apr 2017 07:50:25 +1200 Subject: [PATCH 05/11] Add tmux dimensions added the ability to set the default width and height of the detatched session using variables tmux_width and tmux_height. these variables may be set at a local level or system wide. the script checks if the input from the variables is a valid positive integer and if input is not a valid positive integer, sets the values for the tmux to the default values of 80x23 --- lgsm/functions/command_start.sh | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index c544dd9cf..f102b3a10 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -56,6 +56,20 @@ fn_start_teamspeak3(){ fn_start_tmux(){ fn_parms + + # check for tmux size variables + if [[ ${tmux_width} =~ ^[0-9]+$ ]] + then + tmux-x=${tmux_width} + else + tmux-x=80 + fi + if [[ ${tmux_height} =~ ^[0-9]+$ ]] + then + tmux-y=${tmux_height} + else + tmux-y=23 + fi # Log rotation check_status.sh @@ -81,7 +95,7 @@ fn_start_tmux(){ # Create lockfile date > "${rootdir}/${lockselfname}" cd "${executabledir}" - tmux new-session -d -s "${servicename}" "${executable} ${parms}" 2> "${scriptlogdir}/.${servicename}-tmux-error.tmp" + tmux new-session -d -x ${tmux-x} -y ${tmux-y} --s "${servicename}" "${executable} ${parms}" 2> "${scriptlogdir}/.${servicename}-tmux-error.tmp" # tmux pipe-pane not supported in tmux versions < 1.6 if [ "$(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd '[:digit:]')" -lt "16" ]; then From d7f1acee6cd489c4d5d381a338b55dba8e46c423 Mon Sep 17 00:00:00 2001 From: TechNZ Date: Tue, 11 Apr 2017 07:58:54 +1200 Subject: [PATCH 06/11] fixed error with '-s' flag '-s' flag had an extra '-' --- 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 f102b3a10..3cf200739 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -95,7 +95,7 @@ fn_start_tmux(){ # Create lockfile date > "${rootdir}/${lockselfname}" cd "${executabledir}" - tmux new-session -d -x ${tmux-x} -y ${tmux-y} --s "${servicename}" "${executable} ${parms}" 2> "${scriptlogdir}/.${servicename}-tmux-error.tmp" + tmux new-session -d -x ${tmux-x} -y ${tmux-y} -s "${servicename}" "${executable} ${parms}" 2> "${scriptlogdir}/.${servicename}-tmux-error.tmp" # tmux pipe-pane not supported in tmux versions < 1.6 if [ "$(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd '[:digit:]')" -lt "16" ]; then From 8f89b64394191a76078cbdbfcdc2f3725eb45042 Mon Sep 17 00:00:00 2001 From: TechNZ Date: Wed, 12 Apr 2017 20:05:27 +1200 Subject: [PATCH 07/11] correct syntax error changed "-" to "_" --- lgsm/functions/command_start.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index 3cf200739..f8689ca45 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -60,15 +60,15 @@ fn_start_tmux(){ # check for tmux size variables if [[ ${tmux_width} =~ ^[0-9]+$ ]] then - tmux-x=${tmux_width} + tmux_x=${tmux_width} else - tmux-x=80 + tmux_x=80 fi if [[ ${tmux_height} =~ ^[0-9]+$ ]] then - tmux-y=${tmux_height} + tmux_y=${tmux_height} else - tmux-y=23 + tmux_y=23 fi # Log rotation @@ -95,7 +95,7 @@ fn_start_tmux(){ # Create lockfile date > "${rootdir}/${lockselfname}" cd "${executabledir}" - tmux new-session -d -x ${tmux-x} -y ${tmux-y} -s "${servicename}" "${executable} ${parms}" 2> "${scriptlogdir}/.${servicename}-tmux-error.tmp" + tmux new-session -d -x ${tmux_x} -y ${tmux_y} -s "${servicename}" "${executable} ${parms}" 2> "${scriptlogdir}/.${servicename}-tmux-error.tmp" # tmux pipe-pane not supported in tmux versions < 1.6 if [ "$(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd '[:digit:]')" -lt "16" ]; then From 219395469c2c7872c7830d3b31fedb0c213d6108 Mon Sep 17 00:00:00 2001 From: TechNZ Date: Wed, 12 Apr 2017 23:09:18 +1200 Subject: [PATCH 08/11] updated if syntax and naming scheme updated if statements and variables to meet LGSM syntax and naming conventions --- lgsm/functions/command_start.sh | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index f8689ca45..cb640aa20 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -58,17 +58,15 @@ fn_start_tmux(){ fn_parms # check for tmux size variables - if [[ ${tmux_width} =~ ^[0-9]+$ ]] - then - tmux_x=${tmux_width} + if [[ "${servercfgtmuxwidth}" =~ ^[0-9]+$ ]]; then + sessionwidth="${servercfgwidth}" else - tmux_x=80 + sessionwidth="80" fi - if [[ ${tmux_height} =~ ^[0-9]+$ ]] - then - tmux_y=${tmux_height} + if [[ "${servercfgtmuxheight}" =~ ^[0-9]+$ ]]; then + sessionheight="${servercfgtmuxheight}" else - tmux_y=23 + sessionheight="23" fi # Log rotation @@ -95,7 +93,7 @@ fn_start_tmux(){ # Create lockfile date > "${rootdir}/${lockselfname}" cd "${executabledir}" - tmux new-session -d -x ${tmux_x} -y ${tmux_y} -s "${servicename}" "${executable} ${parms}" 2> "${scriptlogdir}/.${servicename}-tmux-error.tmp" + tmux new-session -d -x "${sessionheight}" -y "${sessionwidth}" -s "${servicename}" "${executable} ${parms}" 2> "${scriptlogdir}/.${servicename}-tmux-error.tmp" # tmux pipe-pane not supported in tmux versions < 1.6 if [ "$(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd '[:digit:]')" -lt "16" ]; then From d46a0af89421edf8ac3f8894664011a0aeee0eeb Mon Sep 17 00:00:00 2001 From: TechNZ Date: Wed, 12 Apr 2017 23:13:40 +1200 Subject: [PATCH 09/11] corrected variable name error corrected a variable name error cause by quickly making changes when tired --- 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 cb640aa20..b9b07fff4 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -59,7 +59,7 @@ fn_start_tmux(){ # check for tmux size variables if [[ "${servercfgtmuxwidth}" =~ ^[0-9]+$ ]]; then - sessionwidth="${servercfgwidth}" + sessionwidth="${servercfgtmuxwidth}" else sessionwidth="80" fi From e2e1ee8c69bc8c69eeb2e149e80731121926d188 Mon Sep 17 00:00:00 2001 From: Christoph Raible Date: Fri, 28 Apr 2017 09:23:37 +0200 Subject: [PATCH 10/11] Update check_deps.sh binutils not part of the standard installation of Ubuntu (tested on 17.04) "strings"-command is missing and used in install_config.sh --- 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 a256c6abc..01fe38c9b 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -145,7 +145,7 @@ if [ -n "$(command -v dpkg-query)" ]; then array_deps_missing=() # LinuxGSM requirements - array_deps_required=( curl wget ca-certificates file bsdmainutils util-linux python bzip2 gzip unzip ) + array_deps_required=( curl wget ca-certificates file bsdmainutils util-linux python bzip2 gzip unzip binutils ) # All servers except ts3 require tmux if [ "${gamename}" != "TeamSpeak 3" ]; then From 2a9290b5951299c12e356e7169de52520a27b218 Mon Sep 17 00:00:00 2001 From: Christoph Raible Date: Fri, 28 Apr 2017 13:18:51 +0200 Subject: [PATCH 11/11] Update install_server_files.sh Updated UnrealTournament Serverfile + Checksum --- 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 edee16e9f..f86abd801 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -34,7 +34,7 @@ fn_install_server_files(){ 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="https://s3.amazonaws.com/unrealtournament/UnrealTournament-Server-XAN-3270765-Linux.zip"; filedir="${tmpdir}"; filename="UnrealTournament-Server-XAN-3270765-Linux.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="8791dc087383061d7f7f9f523237b8b3" + fileurl="https://s3.amazonaws.com/unrealtournament/UnrealTournament-Server-XAN-3395761-Linux.zip"; filedir="${tmpdir}"; filename="UnrealTournament-Server-XAN-3395761-Linux.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="f04ad5b96865b19613303331ff4075eb" 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