From c0ba7219fdc3358f2833f3883bd912bf3d995121 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 15 Jun 2024 21:53:58 +0100 Subject: [PATCH] change lock file name --- lgsm/modules/command_monitor.sh | 2 +- lgsm/modules/command_stop.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lgsm/modules/command_monitor.sh b/lgsm/modules/command_monitor.sh index c52fdb1d7..911cf5201 100644 --- a/lgsm/modules/command_monitor.sh +++ b/lgsm/modules/command_monitor.sh @@ -110,7 +110,7 @@ fn_monitor_check_stopping() { } fn_monitor_check_restart_request() { - if [ -f "${lockdir}/${selfname}-restart-request.lock" ]; then + if [ -f "${lockdir}/${selfname}-stop-request.lock" ]; then fn_print_dots "Checking restart: " fn_print_checking_eol fn_print_info "Checking restart: Restart requested: " diff --git a/lgsm/modules/command_stop.sh b/lgsm/modules/command_stop.sh index 947cb3834..1dace37c9 100644 --- a/lgsm/modules/command_stop.sh +++ b/lgsm/modules/command_stop.sh @@ -20,11 +20,11 @@ fn_stop_players_online() { if [ -n "${gdplayers}" ] && [ "${gdplayers}" -ne 0 ]; then fn_print_info_nl "Server will not stop while ${gdplayers} players are on the server" fn_script_log_info "Server will not stop while ${gdplayers} players are on the server" - date '+%s' > "${lockdir:?}/${selfname}-restart-request.lock" + date '+%s' > "${lockdir:?}/${selfname}-stop-request.lock" core_exit.sh else - if [ -f "${lockdir:?}/${selfname}-restart-request.lock" ]; then - rm -f "${lockdir:?}/${selfname}-restart-request.lock" + if [ -f "${lockdir:?}/${selfname}-stop-request.lock" ]; then + rm -f "${lockdir:?}/${selfname}-stop-request.lock" fi break fi