From 2ac82b969887bab47040f2269c572778cdc2a96d Mon Sep 17 00:00:00 2001 From: Bourne-ID Date: Thu, 4 Oct 2018 12:24:58 +0100 Subject: [PATCH] Fix Ctrl C in tmux tmux was sending the -t argument into the session instead of parsing it. --- lgsm/functions/command_stop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index 7b8ce1597..1ed3df5c4 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -14,7 +14,7 @@ fn_stop_graceful_ctrlc(){ fn_print_dots "Graceful: CTRL+c" fn_script_log_info "Graceful: CTRL+c" # sends quit - tmux send-keys C-c -t "${servicename}" > /dev/null 2>&1 + tmux send-keys -t "${servicename}" C-c > /dev/null 2>&1 # waits up to 30 seconds giving the server time to shutdown gracefuly for seconds in {1..30}; do check_status.sh