From e912cc5f783c1ca98224908b48ac70cb1ba163a8 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 28 Nov 2016 22:31:12 +0000 Subject: [PATCH] #1204 "/stop" is replaced by "stop" --- lgsm/functions/command_stop.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index 95aa10536..c5483a864 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -144,29 +144,29 @@ fn_stop_graceful_sdtd(){ fn_stop_tmux } -# Attempts graceful of source using rcon '/stop' command. +# Attempts graceful of source using rcon 'stop' command. fn_stop_graceful_minecraft(){ - fn_print_dots "Graceful: console /stop" - fn_script_log_info "Graceful: console /stop" + fn_print_dots "Graceful: console stop" + fn_script_log_info "Graceful: console stop" # sends quit - tmux send -t "${servicename}" /stop ENTER > /dev/null 2>&1 + tmux send -t "${servicename}" stop ENTER > /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 if [ "${status}" == "0" ]; then - fn_print_ok "Graceful: console /stop: ${seconds}: " + fn_print_ok "Graceful: console stop: ${seconds}: " fn_print_ok_eol_nl - fn_script_log_pass "Graceful: console /stop: OK: ${seconds} seconds" + fn_script_log_pass "Graceful: console stop: OK: ${seconds} seconds" break fi sleep 1 - fn_print_dots "Graceful: console /stop: ${seconds}" + fn_print_dots "Graceful: console stop: ${seconds}" done check_status.sh if [ "${status}" != "0" ]; then - fn_print_error "Graceful: console /stop: " + fn_print_error "Graceful: console stop: " fn_print_fail_eol_nl - fn_script_log_error "Graceful: console /stop: FAIL" + fn_script_log_error "Graceful: console stop: FAIL" fi sleep 1 fn_stop_tmux