Browse Source
Merge branch 'hotfix/v23.2.2'
pull/4183/head
v23.2.2
Daniel Gibbs
2 years ago
No known key found for this signature in database
GPG Key ID: 7CA38B43F78F12FE
10 changed files with
10 additions and
10 deletions
-
lgsm/functions/check.sh
-
lgsm/functions/command_check_update.sh
-
lgsm/functions/core_functions.sh
-
lgsm/functions/update_factorio.sh
-
lgsm/functions/update_vintagestory.sh
-
linuxgsm.sh
-
tests/tests_fctrserver.sh
-
tests/tests_jc2server.sh
-
tests/tests_mcserver.sh
-
tests/tests_ts3server.sh
|
|
@ -77,7 +77,7 @@ for allowed_command in "${allowed_commands_array[@]}"; do |
|
|
|
fi |
|
|
|
done |
|
|
|
|
|
|
|
allowed_commands_array=(DEBUG START UPDATE VALIDATE) |
|
|
|
allowed_commands_array=(DEBUG START UPDATE VALIDATE CHECK-UPDATE) |
|
|
|
for allowed_command in "${allowed_commands_array[@]}"; do |
|
|
|
if [ "${allowed_command}" == "${commandname}" ]; then |
|
|
|
if [ "${appid}" ]; then |
|
|
|
|
|
@ -6,7 +6,7 @@ |
|
|
|
# Description: Handles updating of servers. |
|
|
|
|
|
|
|
commandname="CHECK-UPDATE" |
|
|
|
commandaction="check for Update" |
|
|
|
commandaction="Check for Update" |
|
|
|
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
|
|
|
fn_firstcommand_set |
|
|
|
|
|
|
|
|
|
@ -8,7 +8,7 @@ |
|
|
|
|
|
|
|
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
|
|
|
|
|
|
|
modulesversion="v23.2.1" |
|
|
|
modulesversion="v23.2.2" |
|
|
|
|
|
|
|
# Core |
|
|
|
|
|
|
|
|
|
@ -18,7 +18,7 @@ fn_update_localbuild() { |
|
|
|
# Gets local build info. |
|
|
|
fn_print_dots "Checking local build: ${remotelocation}" |
|
|
|
# Uses executable to get local build. |
|
|
|
if [ -d "${exutabledir}" ]; then |
|
|
|
if [ -d "${executabledir}" ]; then |
|
|
|
cd "${executabledir}" || exit |
|
|
|
localbuild=$(${executable} --version | grep "Version:" | awk '{print $2}') |
|
|
|
fi |
|
|
|
|
|
@ -18,7 +18,7 @@ fn_update_localbuild() { |
|
|
|
# Gets local build info. |
|
|
|
fn_print_dots "Checking local build: ${remotelocation}" |
|
|
|
# Uses executable to get local build. |
|
|
|
if [ -d "${exutabledir}" ]; then |
|
|
|
if [ -d "${executabledir}" ]; then |
|
|
|
cd "${executabledir}" || exit |
|
|
|
localbuild="$(${preexecutable} ${executable} --version | sed '/^[[:space:]]*$/d')" |
|
|
|
fi |
|
|
|
|
|
@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then |
|
|
|
set -x |
|
|
|
fi |
|
|
|
|
|
|
|
version="v23.2.1" |
|
|
|
version="v23.2.2" |
|
|
|
shortname="core" |
|
|
|
gameservername="core" |
|
|
|
commandname="CORE" |
|
|
|
|
|
@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then |
|
|
|
set -x |
|
|
|
fi |
|
|
|
|
|
|
|
version="v23.2.1" |
|
|
|
version="v23.2.2" |
|
|
|
shortname="fctr" |
|
|
|
gameservername="fctrserver" |
|
|
|
commandname="CORE" |
|
|
|
|
|
@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then |
|
|
|
set -x |
|
|
|
fi |
|
|
|
|
|
|
|
version="v23.2.1" |
|
|
|
version="v23.2.2" |
|
|
|
shortname="jc2" |
|
|
|
gameservername="jc2server" |
|
|
|
commandname="CORE" |
|
|
|
|
|
@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then |
|
|
|
set -x |
|
|
|
fi |
|
|
|
|
|
|
|
version="v23.2.1" |
|
|
|
version="v23.2.2" |
|
|
|
shortname="mc" |
|
|
|
gameservername="mcserver" |
|
|
|
commandname="CORE" |
|
|
|
|
|
@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then |
|
|
|
set -x |
|
|
|
fi |
|
|
|
|
|
|
|
version="v23.2.1" |
|
|
|
version="v23.2.2" |
|
|
|
shortname="ts3" |
|
|
|
gameservername="ts3server" |
|
|
|
commandname="CORE" |
|
|
|