Browse Source

change lock file name

feature/786-playersonline
Daniel Gibbs 10 months ago
parent
commit
c0ba7219fd
No known key found for this signature in database GPG Key ID: 2076B128385E8C55
  1. 2
      lgsm/modules/command_monitor.sh
  2. 6
      lgsm/modules/command_stop.sh

2
lgsm/modules/command_monitor.sh

@ -110,7 +110,7 @@ fn_monitor_check_stopping() {
} }
fn_monitor_check_restart_request() { 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_dots "Checking restart: "
fn_print_checking_eol fn_print_checking_eol
fn_print_info "Checking restart: Restart requested: " fn_print_info "Checking restart: Restart requested: "

6
lgsm/modules/command_stop.sh

@ -20,11 +20,11 @@ fn_stop_players_online() {
if [ -n "${gdplayers}" ] && [ "${gdplayers}" -ne 0 ]; then if [ -n "${gdplayers}" ] && [ "${gdplayers}" -ne 0 ]; then
fn_print_info_nl "Server will not stop while ${gdplayers} players are on the server" 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" 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 core_exit.sh
else else
if [ -f "${lockdir:?}/${selfname}-restart-request.lock" ]; then if [ -f "${lockdir:?}/${selfname}-stop-request.lock" ]; then
rm -f "${lockdir:?}/${selfname}-restart-request.lock" rm -f "${lockdir:?}/${selfname}-stop-request.lock"
fi fi
break break
fi fi

Loading…
Cancel
Save