gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.4 KiB
41 lines
1.4 KiB
#!/bin/bash
|
|
# LinuxGSM check_glibc.sh function
|
|
# Author: Daniel Gibbs
|
|
# Website: https://gameservermanagers.com
|
|
# Description: Checks if the server has the correct Glibc version or a fix available.
|
|
|
|
local commandname="CHECK"
|
|
|
|
info_glibc.sh
|
|
info_distro.sh
|
|
|
|
if [ "${glibcrequired}" == "NOT REQUIRED" ]; then
|
|
:
|
|
elif [ "${glibcrequired}" == "UNKNOWN" ]; then
|
|
fn_print_dots "Glibc fix"
|
|
sleep 0.5
|
|
fn_print_error_nl "Glibc fix: ${red}${glibcrequired}${default}"
|
|
echo -e " * glibc required: ${red}${glibcrequired}${default}"
|
|
echo -e " * glibc installed: ${glibcversion}"
|
|
elif [ "$(printf '%s\n'${glibcrequired}'\n' ${glibcversion} | sort -V | head -n 1)" != "${glibcrequired}" ]; then
|
|
if [ "${glibcfix}" == "yes" ]; then
|
|
if [ "${function_selfname}" != "command_install.sh" ]; then
|
|
fn_print_dots "Glibc fix"
|
|
sleep 0.5
|
|
fn_print_info_nl "Glibc fix: ${green}Using Glibc fix${default}"
|
|
echo -e " * glibc required: ${red}${glibcrequired}${default}"
|
|
echo -e " * glibc installed: ${glibcversion}"
|
|
fix_glibc.sh
|
|
fi
|
|
else
|
|
fn_print_dots "Glibc fix"
|
|
sleep 0.5
|
|
fn_print_error_nl "Glibc fix: ${red}No Glibc fix available!${default}"
|
|
echo -en "\n"
|
|
echo -e " * glibc required: ${glibcrequired}"
|
|
echo -e " * glibc installed: ${red}${glibcversion}${default}"
|
|
echo -en "\n"
|
|
fn_print_information "The game server will probably not work. A distro upgrade is required!"
|
|
sleep 2
|
|
fi
|
|
fi
|