Browse Source

Release v23.2.2

pull/4028/head
Daniel Gibbs 2 years ago
parent
commit
63c7f4106f
No known key found for this signature in database GPG Key ID: 7CA38B43F78F12FE
  1. 2
      lgsm/functions/core_functions.sh
  2. 2
      lgsm/functions/core_modules.sh
  3. 2
      lgsm/modules/check.sh
  4. 2
      lgsm/modules/command_check_update.sh
  5. 2
      lgsm/modules/core_functions.sh
  6. 2
      lgsm/modules/core_modules.sh
  7. 2
      lgsm/modules/update_factorio.sh
  8. 2
      lgsm/modules/update_vintagestory.sh
  9. 2
      linuxgsm.sh
  10. 2
      tests/tests_fctrserver.sh
  11. 2
      tests/tests_jc2server.sh
  12. 2
      tests/tests_mcserver.sh
  13. 2
      tests/tests_ts3server.sh

2
lgsm/functions/core_functions.sh

@ -8,7 +8,7 @@
module_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" module_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
modulesversion="v23.2.1" modulesversion="v23.2.2"
# Core # Core

2
lgsm/functions/core_modules.sh

@ -8,7 +8,7 @@
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
modulesversion="v23.2.0" modulesversion="v23.2.2"
# Core # Core

2
lgsm/modules/check.sh

@ -77,7 +77,7 @@ for allowed_command in "${allowed_commands_array[@]}"; do
fi fi
done 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 for allowed_command in "${allowed_commands_array[@]}"; do
if [ "${allowed_command}" == "${commandname}" ]; then if [ "${allowed_command}" == "${commandname}" ]; then
if [ "${appid}" ]; then if [ "${appid}" ]; then

2
lgsm/modules/command_check_update.sh

@ -6,7 +6,7 @@
# Description: Handles updating of servers. # Description: Handles updating of servers.
commandname="CHECK-UPDATE" commandname="CHECK-UPDATE"
commandaction="check for Update" commandaction="Check for Update"
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_firstcommand_set fn_firstcommand_set

2
lgsm/modules/core_functions.sh

@ -8,7 +8,7 @@
module_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" module_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
modulesversion="v23.2.0" modulesversion="v23.2.2"
# Core # Core

2
lgsm/modules/core_modules.sh

@ -8,7 +8,7 @@
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
modulesversion="v23.2.0" modulesversion="v23.2.2"
# Core # Core

2
lgsm/modules/update_factorio.sh

@ -18,7 +18,7 @@ fn_update_localbuild() {
# Gets local build info. # Gets local build info.
fn_print_dots "Checking local build: ${remotelocation}" fn_print_dots "Checking local build: ${remotelocation}"
# Uses executable to get local build. # Uses executable to get local build.
if [ -d "${exutabledir}" ]; then if [ -d "${executabledir}" ]; then
cd "${executabledir}" || exit cd "${executabledir}" || exit
localbuild=$(${executable} --version | grep "Version:" | awk '{print $2}') localbuild=$(${executable} --version | grep "Version:" | awk '{print $2}')
fi fi

2
lgsm/modules/update_vintagestory.sh

@ -18,7 +18,7 @@ fn_update_localbuild() {
# Gets local build info. # Gets local build info.
fn_print_dots "Checking local build: ${remotelocation}" fn_print_dots "Checking local build: ${remotelocation}"
# Uses executable to get local build. # Uses executable to get local build.
if [ -d "${exutabledir}" ]; then if [ -d "${executabledir}" ]; then
cd "${executabledir}" || exit cd "${executabledir}" || exit
localbuild="$(${preexecutable} ${executable} --version | sed '/^[[:space:]]*$/d')" localbuild="$(${preexecutable} ${executable} --version | sed '/^[[:space:]]*$/d')"
fi fi

2
linuxgsm.sh

@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
set -x set -x
fi fi
version="v23.2.1" version="v23.2.2"
shortname="core" shortname="core"
gameservername="core" gameservername="core"
commandname="CORE" commandname="CORE"

2
tests/tests_fctrserver.sh

@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
set -x set -x
fi fi
version="v23.2.1" version="v23.2.2"
shortname="fctr" shortname="fctr"
gameservername="fctrserver" gameservername="fctrserver"
commandname="CORE" commandname="CORE"

2
tests/tests_jc2server.sh

@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
set -x set -x
fi fi
version="v23.2.1" version="v23.2.2"
shortname="jc2" shortname="jc2"
gameservername="jc2server" gameservername="jc2server"
commandname="CORE" commandname="CORE"

2
tests/tests_mcserver.sh

@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
set -x set -x
fi fi
version="v23.2.1" version="v23.2.2"
shortname="mc" shortname="mc"
gameservername="mcserver" gameservername="mcserver"
commandname="CORE" commandname="CORE"

2
tests/tests_ts3server.sh

@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
set -x set -x
fi fi
version="v23.2.1" version="v23.2.2"
shortname="ts3" shortname="ts3"
gameservername="ts3server" gameservername="ts3server"
commandname="CORE" commandname="CORE"

Loading…
Cancel
Save