Browse Source

Merge branch 'hotfix/v23.7.1' into develop

pull/4410/head
Daniel Gibbs 1 year ago
parent
commit
c23b067951
No known key found for this signature in database GPG Key ID: 2076B128385E8C55
  1. 2
      .github/workflows/lock.yml
  2. 2
      lgsm/modules/check_system_requirements.sh
  3. 2
      lgsm/modules/core_modules.sh
  4. 7
      lgsm/modules/info_distro.sh
  5. 2
      linuxgsm.sh

2
.github/workflows/lock.yml

@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Lock Threads
uses: dessant/lock-threads@v4
uses: dessant/lock-threads@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
issue-comment: >

2
lgsm/modules/check_system_requirements.sh

@ -63,7 +63,7 @@ fi
# If the game or engine has a minimum RAM Requirement, compare it to system's available RAM.
if [ "${ramrequirementgb}" ]; then
if [ "${physmemtotalgb}" -lt "${ramrequirementgb}" ]; then
if (($(echo "${physmemtotalgb} < ${ramrequirementgb}" | bc -l))); then
fn_print_dots "Checking RAM"
fn_print_warn_nl "Checking RAM: ${ramrequirementgb}G required, ${physmemtotal} available"
echo "* ${gamename} server may fail to run or experience poor performance."

2
lgsm/modules/core_modules.sh

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

7
lgsm/modules/info_distro.sh

@ -195,15 +195,16 @@ else
else
humanreadable="-h"
fi
physmemtotalmb="$(free -m | awk '/Mem:/ {print $2}')" # string
physmemtotalmb="$(free -m | awk '/Mem:/ {print $2}')" # integer
physmemtotalgb="$(free -m | awk '/Mem:/ {print $2}')" # integer
physmemtotal="$(free ${humanreadable} | awk '/Mem:/ {print $2}')" # string
physmemfree="$(free ${humanreadable} | awk '/Mem:/ {print $4}')" # string
physmemused="$(free ${humanreadable} | awk '/Mem:/ {print $3}')" # string
oldfree="$(free ${humanreadable} | awk '/cache:/')"
if [ "${oldfree}" ]; then
physmemavailable="n/a"
physmemcached="n/a"
physmemavailable="n/a" # string
physmemcached="n/a" # string
else
physmemavailable="$(free ${humanreadable} | awk '/Mem:/ {print $7}')" # string
physmemcached="$(free ${humanreadable} | awk '/Mem:/ {print $6}')" # string

2
linuxgsm.sh

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

Loading…
Cancel
Save