Browse Source

feat(ts3): add check-update function (#3967)

pull/3745/head
Christian 3 years ago
committed by GitHub
parent
commit
9984f956b3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      lgsm/functions/command_check_update.sh
  2. 2
      lgsm/functions/core_getopt.sh
  3. 50
      lgsm/functions/update_ts3.sh

14
lgsm/functions/command_check_update.sh

@ -14,12 +14,16 @@ fn_print_dots ""
check.sh check.sh
core_logs.sh core_logs.sh
core_steamcmd.sh if [ "${appid}" ]; then
core_steamcmd.sh
check_steamcmd.sh check_steamcmd.sh
fn_update_steamcmd_localbuild fn_update_steamcmd_localbuild
fn_update_steamcmd_remotebuild fn_update_steamcmd_remotebuild
fn_update_steamcmd_compare fn_update_steamcmd_compare
elif [ "${shortname}" == "ts3" ]; then
update_ts3.sh
fi
core_exit.sh core_exit.sh

2
lgsm/functions/core_getopt.sh

@ -75,7 +75,7 @@ if [ "${shortname}" == "jk2" ] || [ "${engine}" != "idtech3" ]; then
fi fi
# Validate and check-update command. # Validate and check-update command.
if [ "${appid}" ]; then if [ "${appid}" ]||[ "${shortname}" == "ts3" ]; then
currentopt+=("${cmd_validate[@]}" "${cmd_check_update[@]}") currentopt+=("${cmd_validate[@]}" "${cmd_check_update[@]}")
fi fi

50
lgsm/functions/update_ts3.sh

@ -150,35 +150,39 @@ fn_update_ts3_compare() {
fn_script_log_info "Remote build: ${remotebuild}" fn_script_log_info "Remote build: ${remotebuild}"
fn_script_log_info "${localbuild} > ${remotebuild}" fn_script_log_info "${localbuild} > ${remotebuild}"
unset updateonstart if [ "${commandname}" == "UPDATE" ]; then
check_status.sh unset updateonstart
# If server stopped. check_status.sh
if [ "${status}" == "0" ]; then # If server stopped.
exitbypass=1 if [ "${status}" == "0" ]; then
fn_update_ts3_dl
if [ "${requirerestart}" == "1" ]; then
exitbypass=1 exitbypass=1
command_start.sh fn_update_ts3_dl
fn_firstcommand_reset if [ "${requirerestart}" == "1" ]; then
exitbypass=1
command_start.sh
fn_firstcommand_reset
exitbypass=1
command_stop.sh
fn_firstcommand_reset
fi
# If server started.
else
fn_print_restart_warning
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_firstcommand_reset fn_firstcommand_reset
exitbypass=1
fn_update_ts3_dl
exitbypass=1
command_start.sh
fn_firstcommand_reset
fi fi
# If server started. unset exitbypass
else date +%s > "${lockdir}/lastupdate.lock"
fn_print_restart_warning alert="update"
exitbypass=1 elif [ "${commandname}" == "CHECK-UPDATE" ]; then
command_stop.sh alert="check-update"
fn_firstcommand_reset
exitbypass=1
fn_update_ts3_dl
exitbypass=1
command_start.sh
fn_firstcommand_reset
fi fi
unset exitbypass
date +%s > "${lockdir}/lastupdate.lock"
alert="update"
alert.sh alert.sh
else else
fn_print_ok_nl "Checking for update: ${remotelocation}" fn_print_ok_nl "Checking for update: ${remotelocation}"

Loading…
Cancel
Save