From 1a01ece469047fc2c7f657f994a033c63434b85d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 00:15:52 +0200 Subject: [PATCH] Introducing the tmuxception ! --- lgsm/functions/check_tmuxception.sh | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 lgsm/functions/check_tmuxception.sh diff --git a/lgsm/functions/check_tmuxception.sh b/lgsm/functions/check_tmuxception.sh new file mode 100644 index 000000000..4dfbd2a16 --- /dev/null +++ b/lgsm/functions/check_tmuxception.sh @@ -0,0 +1,29 @@ +#!/bin/bash +# LGSM check_config.sh function +# Author: Daniel Gibbs +# Contributor: UltimateByte +# Website: https://gameservermanagers.com +# Description: Checks if run from tmux or screen + +local commandname="check" + +fn_check_is_in_tmux(){ + if [ -n "${TMUX}" ];then + fn_print_fail_nl "tmuxception error: Sorry Cobb you cannot start a tmux session inside of a tmux session." + fn_script_log_fatal "tmuxception error: Attempted to start a tmux session inside of a tmux session." + fn_print_information_nl "LGSM creates a tmux session when starting the server." + echo "It is not possible to run a tmux session inside another tmux session" + echo "https://github.com/GameServerManagers/LinuxGSM/wiki/Tmux#tmuxception" + core_exit.sh + fi +} +fn_check_is_in_screen(){ + if [ "$TERM" == "screen" ];then + fn_print_fail_nl "tmuxception error: Sorry Cobb you cannot start a tmux session inside of a screen session." + fn_script_log_fatal "tmuxception error: Attempted to start a tmux session inside of a screen session." + fn_print_information_nl "LGSM creates a tmux session when starting the server." + echo "It is not possible to run a tmux session inside screen session" + echo "https://github.com/GameServerManagers/LinuxGSM/wiki/Tmux#tmuxception" + core_exit.sh + fi +}