Browse Source
fix: system requirements bug (#4407)
* fix: added missing variable physmemtotalgb
* fix: compare RAM requirement to system's available RAM
allow numbers with decimal points to be compared
pull/4408/head^2
Daniel Gibbs
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
5 additions and
4 deletions
-
lgsm/modules/check_system_requirements.sh
-
lgsm/modules/info_distro.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." |
|
|
|
|
|
@ -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 |
|
|
|