Browse Source

fix(update): non-steam updates to not always require restarting if stopped (#3173)

pull/3190/head
Daniel Gibbs 4 years ago
committed by GitHub
parent
commit
2bc7b309ce
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lgsm/functions/update_factorio.sh
  2. 8
      lgsm/functions/update_jediknight2.sh
  3. 3
      lgsm/functions/update_minecraft.sh
  4. 4
      lgsm/functions/update_minecraft_bedrock.sh
  5. 4
      lgsm/functions/update_mta.sh
  6. 3
      lgsm/functions/update_mumble.sh
  7. 4
      lgsm/functions/update_ts3.sh
  8. 4
      lgsm/functions/update_vintagestory.sh

2
lgsm/functions/update_factorio.sh

@ -94,12 +94,14 @@ fn_update_factorio_compare(){
if [ "${status}" == "0" ]; then
exitbypass=1
fn_update_factorio_dl
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

8
lgsm/functions/update_jediknight2.sh

@ -4,9 +4,7 @@
# Website: https://linuxgsm.com
# Description: Handles updating of jk2 servers.
local commandname="UPDATE"
local commandaction="Update"
local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
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"
@ -30,6 +28,7 @@ fn_update_jk2_localbuild(){
fn_print_dots "Checking local build: ${remotelocation}"
# Uses log file to gather info.
# 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)
if [ -z "${localbuild}" ]; then
fn_print_error "Checking local build: ${remotelocation}"
@ -118,11 +117,14 @@ fn_update_jk2_compare(){
if [ "${status}" == "0" ]; then
exitbypass=1
fn_update_jk2_dl
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

3
lgsm/functions/update_minecraft.sh

@ -103,11 +103,14 @@ fn_update_minecraft_compare(){
if [ "${status}" == "0" ]; then
exitbypass=1
fn_update_minecraft_dl
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

4
lgsm/functions/update_minecraft_bedrock.sh

@ -34,6 +34,7 @@ fn_update_minecraft_localbuild(){
fn_print_dots "Checking local build: ${remotelocation}"
# Uses log file to gather info.
# Log is generated and cleared on startup but filled on shutdown.
requirerestart=1
localbuild=$(grep Version "${consolelogdir}"/* 2>/dev/null | tail -1 | sed 's/.*Version //')
if [ -z "${localbuild}" ]; then
fn_print_error "Checking local build: ${remotelocation}"
@ -122,11 +123,14 @@ fn_update_minecraft_compare(){
if [ "${status}" == "0" ]; then
exitbypass=1
fn_update_minecraft_dl
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

4
lgsm/functions/update_mta.sh

@ -30,6 +30,7 @@ fn_update_mta_localbuild(){
fn_print_dots "Checking local build: ${remotelocation}"
# Uses log file to gather info.
# Gives time for log file to generate.
requirerestart=1
if [ ! -f "${serverfiles}/mods/deathmatch/logs/server.log" ]; then
fn_print_error "Checking local build: ${remotelocation}"
fn_print_error_nl "Checking local build: ${remotelocation}: no log files containing version info"
@ -151,11 +152,14 @@ fn_update_mta_compare(){
if [ "${status}" == "0" ]; then
exitbypass=1
fn_update_mta_dl
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

3
lgsm/functions/update_mumble.sh

@ -87,11 +87,14 @@ fn_update_mumble_compare(){
if [ "${status}" == "0" ]; then
exitbypass=1
fn_update_mumble_dl
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

4
lgsm/functions/update_ts3.sh

@ -34,6 +34,7 @@ fn_update_ts3_localbuild(){
fn_print_dots "Checking local build: ${remotelocation}"
# Uses log file to gather info.
# Gives time for log file to generate.
requirerestart=1
if [ ! -d "${serverfiles}/logs" ]||[ -z "$(find "${serverfiles}/logs/"* -name 'ts3server*_0.log' 2> /dev/null)" ]; then
fn_print_error "Checking local build: ${remotelocation}"
fn_print_error_nl "Checking local build: ${remotelocation}: no log files containing version info"
@ -149,11 +150,14 @@ fn_update_ts3_compare(){
if [ "${status}" == "0" ]; then
exitbypass=1
fn_update_ts3_dl
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

4
lgsm/functions/update_vintagestory.sh

@ -87,11 +87,14 @@ fn_update_vs_compare(){
if [ "${status}" == "0" ]; then
exitbypass=1
fn_update_vs_dl
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
@ -130,7 +133,6 @@ fn_update_vs_compare(){
# The location where the builds are checked and downloaded.
remotelocation="vintagestory.at"
apiurl="http://api.${remotelocation}/stable-unstable.json"
localversionfile="${datadir}/vintagestoryversion"
if [ "${firstcommandname}" == "INSTALL" ]; then
fn_update_vs_remotebuild

Loading…
Cancel
Save