Browse Source

Don't start from tmux or screen

pull/1138/head
UltimateByte 9 years ago
committed by GitHub
parent
commit
ebbe3f5a61
  1. 19
      lgsm/functions/command_start.sh

19
lgsm/functions/command_start.sh

@ -9,6 +9,23 @@ local commandname="START"
local commandaction="Starting" local commandaction="Starting"
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
fn_check_is_in_tmux(){
if [ -n "${TMUX}" ];then
fn_print_fail_nl "Can't start a tmux session inside of a tmux session."
fn_script_log_fail "Can't start a tmux session inside of a tmux session."
fn_print_information_nl "LGSM already runs the server inside of a tmux session."
core_exit.sh
fi
}
fn_check_is_in_screen(){
if [ "$TERM" = "screen" ];then
fn_print_fail_nl "Can't start a tmux session inside of a screen session."
fn_script_log_fail "Can't start a tmux session inside of a screen session."
fn_print_information_nl "LGSM already runs the server inside of a tmux session."
core_exit.sh
fi
}
fn_start_teamspeak3(){ fn_start_teamspeak3(){
if [ ! -e "${servercfgfullpath}" ]; then if [ ! -e "${servercfgfullpath}" ]; then
fn_print_warn_nl "${servercfgfullpath} is missing" fn_print_warn_nl "${servercfgfullpath} is missing"
@ -165,6 +182,8 @@ fn_start_tmux(){
fn_print_dots "${servername}" fn_print_dots "${servername}"
sleep 1 sleep 1
fn_check_is_in_tmux
fn_check_is_in_screen
check.sh check.sh
fix.sh fix.sh
info_config.sh info_config.sh

Loading…
Cancel
Save