Browse Source

#1204 "/stop" is replaced by "stop"

pull/1227/head
Daniel Gibbs 8 years ago
parent
commit
e912cc5f78
  1. 18
      lgsm/functions/command_stop.sh

18
lgsm/functions/command_stop.sh

@ -144,29 +144,29 @@ fn_stop_graceful_sdtd(){
fn_stop_tmux fn_stop_tmux
} }
# Attempts graceful of source using rcon '/stop' command. # Attempts graceful of source using rcon 'stop' command.
fn_stop_graceful_minecraft(){ fn_stop_graceful_minecraft(){
fn_print_dots "Graceful: console /stop" fn_print_dots "Graceful: console stop"
fn_script_log_info "Graceful: console /stop" fn_script_log_info "Graceful: console stop"
# sends quit # 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 # waits up to 30 seconds giving the server time to shutdown gracefuly
for seconds in {1..30}; do for seconds in {1..30}; do
check_status.sh check_status.sh
if [ "${status}" == "0" ]; then if [ "${status}" == "0" ]; then
fn_print_ok "Graceful: console /stop: ${seconds}: " fn_print_ok "Graceful: console stop: ${seconds}: "
fn_print_ok_eol_nl 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 break
fi fi
sleep 1 sleep 1
fn_print_dots "Graceful: console /stop: ${seconds}" fn_print_dots "Graceful: console stop: ${seconds}"
done done
check_status.sh check_status.sh
if [ "${status}" != "0" ]; then if [ "${status}" != "0" ]; then
fn_print_error "Graceful: console /stop: " fn_print_error "Graceful: console stop: "
fn_print_fail_eol_nl fn_print_fail_eol_nl
fn_script_log_error "Graceful: console /stop: FAIL" fn_script_log_error "Graceful: console stop: FAIL"
fi fi
sleep 1 sleep 1
fn_stop_tmux fn_stop_tmux

Loading…
Cancel
Save