From 61bc06acf2443daef166d513527bcbbd82737fa2 Mon Sep 17 00:00:00 2001 From: TechNZ Date: Tue, 11 Apr 2017 07:50:25 +1200 Subject: [PATCH 1/5] 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 2/5] 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 3/5] 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 4/5] 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 5/5] 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