Browse Source

Fixed system_requirements

pull/1003/head
Daniel Gibbs 9 years ago
parent
commit
f93d373230
  1. 2
      lgsm/functions/check.sh
  2. 8
      lgsm/functions/check_system_requirements.sh

2
lgsm/functions/check.sh

@ -75,7 +75,7 @@ do
fi fi
done done
local allowed_commands_array=( command_install.sh command_start.sh command_debug.sh ) local allowed_commands_array=( command_debug.sh command_start.sh command_install.sh )
for allowed_command in "${allowed_commands_array[@]}" for allowed_command in "${allowed_commands_array[@]}"
do do
if [ "${allowed_command}" == "${function_selfname}" ]; then if [ "${allowed_command}" == "${function_selfname}" ]; then

8
lgsm/functions/check_system_requirements.sh

@ -22,12 +22,14 @@ if [ "${gamename}" == "ARMA 3" ]; then
fi fi
# If the game or engine has a minimum RAM Requirement, compare it to system's available RAM. # If the game or engine has a minimum RAM Requirement, compare it to system's available RAM.
if [ -n "${ramrequirement}" ]; then if [ -n "${ramrequirementmb}" ]; then
if [ "${physmemtotalmb}" -lt "${ramrequirementmb}" ]; then if [ "${physmemtotalmb}" -lt "${ramrequirementmb}" ]; then
fn_print_dots "Check RAM"
sleep 0.5
# Warn the user # Warn the user
fn_print_warn "Insufficient memory: ${ramrequirementgb}G required, ${physmemtotal} available" fn_print_warn_nl "Check RAM: ${ramrequirementgb}G required, ${physmemtotal} available"
sleep 1 sleep 1
fn_print_warning "You may experiance poor performance from your server" echo " * ${gamename} server may fail to run or experience poor performance."
sleep 1 sleep 1
fi fi
fi fi

Loading…
Cancel
Save