From 219395469c2c7872c7830d3b31fedb0c213d6108 Mon Sep 17 00:00:00 2001 From: TechNZ Date: Wed, 12 Apr 2017 23:09:18 +1200 Subject: [PATCH] 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