|
|
@ -2,7 +2,7 @@ |
|
|
|
# LGSM fn_start function |
|
|
|
# Author: Daniel Gibbs |
|
|
|
# Website: http://gameservermanagers.com |
|
|
|
# Version: 291015 |
|
|
|
# Version: 301015 |
|
|
|
|
|
|
|
# Description: Starts the server. |
|
|
|
|
|
|
@ -126,11 +126,11 @@ date > "${rootdir}/${lockselfname}" |
|
|
|
cd "${executabledir}" |
|
|
|
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" ]; then |
|
|
|
echo "Console logging disabled: Tmux => 1.6 required" >> "${consolelog}" |
|
|
|
echo "http://gameservermanagers.com/tmux-upgrade" >> "${consolelog}" |
|
|
|
echo "Currently installed: $(tmux -V)" >> "${consolelog}" |
|
|
|
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" ]; then |
|
|
|
echo "Console logging disabled: Bug in tmux 1.8 breaks logging" >> "${consolelog}" |
|
|
|
echo "http://gameservermanagers.com/tmux-upgrade" >> "${consolelog}" |
|
|
|
echo "Currently installed: $(tmux -V)" >> "${consolelog}" |
|
|
|