|
@ -5,9 +5,7 @@ |
|
|
# Website: https://linuxgsm.com |
|
|
# Website: https://linuxgsm.com |
|
|
# Description: Handles updating of jk2 servers. |
|
|
# Description: Handles updating of jk2 servers. |
|
|
|
|
|
|
|
|
local commandname="UPDATE" |
|
|
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
|
|
local commandaction="Update" |
|
|
|
|
|
local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
|
|
|
|
|
|
|
|
|
|
|
fn_update_jk2_dl(){ |
|
|
fn_update_jk2_dl(){ |
|
|
fn_fetch_file "https://github.com/mvdevs/jk2mv/releases/download/${remotebuild}/jk2mv-v${remotebuild}-dedicated.zip" "" "" "" "${tmpdir}" "jk2mv-${remotebuild}-dedicated.zip" "" "norun" "noforce" "nomd5" |
|
|
fn_fetch_file "https://github.com/mvdevs/jk2mv/releases/download/${remotebuild}/jk2mv-v${remotebuild}-dedicated.zip" "" "" "" "${tmpdir}" "jk2mv-${remotebuild}-dedicated.zip" "" "norun" "noforce" "nomd5" |
|
@ -31,6 +29,7 @@ fn_update_jk2_localbuild(){ |
|
|
fn_print_dots "Checking local build: ${remotelocation}" |
|
|
fn_print_dots "Checking local build: ${remotelocation}" |
|
|
# Uses log file to gather info. |
|
|
# Uses log file to gather info. |
|
|
# Log is generated and cleared on startup but filled on shutdown. |
|
|
# Log is generated and cleared on startup but filled on shutdown. |
|
|
|
|
|
requirerestart=1 |
|
|
localbuild=$(grep "\"version\"" "${consolelogdir}"/* 2>/dev/null | sed 's/.*://' | awk '{print $1}' | head -n 1) |
|
|
localbuild=$(grep "\"version\"" "${consolelogdir}"/* 2>/dev/null | sed 's/.*://' | awk '{print $1}' | head -n 1) |
|
|
if [ -z "${localbuild}" ]; then |
|
|
if [ -z "${localbuild}" ]; then |
|
|
fn_print_error "Checking local build: ${remotelocation}" |
|
|
fn_print_error "Checking local build: ${remotelocation}" |
|
@ -119,11 +118,14 @@ fn_update_jk2_compare(){ |
|
|
if [ "${status}" == "0" ]; then |
|
|
if [ "${status}" == "0" ]; then |
|
|
exitbypass=1 |
|
|
exitbypass=1 |
|
|
fn_update_jk2_dl |
|
|
fn_update_jk2_dl |
|
|
exitbypass=1 |
|
|
if [ "${requirerestart}" == "1" ]; then |
|
|
command_start.sh |
|
|
exitbypass=1 |
|
|
exitbypass=1 |
|
|
command_start.sh |
|
|
command_stop.sh |
|
|
fn_firstcommand_reset |
|
|
fn_firstcommand_reset |
|
|
exitbypass=1 |
|
|
|
|
|
command_stop.sh |
|
|
|
|
|
fn_firstcommand_reset |
|
|
|
|
|
fi |
|
|
# If server started. |
|
|
# If server started. |
|
|
else |
|
|
else |
|
|
fn_print_restart_warning |
|
|
fn_print_restart_warning |
|
|