This reverts commit aaa971c0ad.
aaa971c0ad
@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Overall function for managing alerts.
commandname="ALERT"
commandaction="Alert"
local commandname="ALERT"
local commandaction="Alert"
fn_alert_log(){
info_distro.sh
# Description: Sends email alert.
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_print_dots "Sending Email alert: ${email}"
# Description: Sends IFTTT alert.
json=$(cat <<EOF
# Description: Sends Mailgun Email alert.
fn_print_dots "Sending Email alert: Mailgun: ${email}"
# Description: Sends Pushbullet Messenger alert.
# Description: Sends Pushover alert.
fn_print_dots "Sending Pushover alert"
# Website: https://bytegaming.de
# Description: Sends Telegram Messenger alert.
@ -5,7 +5,7 @@
# Description: Overall function for managing checks.
# Runs checks that will either halt on or fix an issue.
commandname="CHECK"
local commandname="CHECK"
# Every command that requires checks just references check.sh
# check.sh selects which checks to run by using arrays
@ -4,7 +4,7 @@
# Description: Checks if the server config is missing and warns the user if needed.
if [ ! -e "${servercfgfullpath}" ]; then
# Description: Checks if required dependencies are installed for LinuxGSM.
fn_install_mono_repo(){
if [ "${monostatus}" != "0" ]; then
# Description: Checks if executable exists.
# Check if executable exists
# Description: Checks if the server has the correct Glibc version or a fix available.
info_glibc.sh
# Description: Automatically identifies the server interface IP.
# If multiple interfaces are detected the user will need to manually set using ip="0.0.0.0".
if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${travistest}" != "1" ]; then
# Description: Checks if log files exist.
fn_check_logs(){
# Description: Checks ownership & permissions of scripts, files and directories.
fn_check_ownership(){
if [ -f "${rootdir}/${selfname}" ]; then
# Description: Checks if the user tried to run the script as root.
if [ "$(whoami)" = "root" ]; then
# Description: Checks the process status of the server. Either online or offline.
if [ "${gamename}" == "TeamSpeak 3" ]; then
# Description: Checks if SteamCMD is installed correctly.
fn_install_steamcmd(){
if [ ! -d "${steamcmddir}" ]; then
# Description: Checks if systemdir/serverfiles is accessible.
local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
if [ "${function_selfname}" != "command_validate.sh" ]; then
checkdir="${serverfiles}"
# Description: Checks RAM requirements
# Description: Checks if run from tmux or screen
commandname="check"
local commandname="check"
fn_check_is_in_tmux(){
if [ -n "${TMUX}" ]; then
@ -5,8 +5,8 @@
# Description: Creates a .tar.gz file in the backup directory.
commandname="BACKUP"
commandaction="Backup"
local commandname="BACKUP"
local commandaction="Backup"
check.sh
# Description: Gives access to the server tmux console.
commandname="CONSOLE"
commandaction="Console"
local commandname="CONSOLE"
local commandaction="Console"
# Description: Runs the server without tmux and directly from the terminal.
commandname="DEBUG"
commandaction="Debug"
local commandname="DEBUG"
local commandaction="Debug"
# Trap to remove lockfile on quit.
# Description: Displays server information.
commandname="DETAILS"
commandaction="Details"
local commandname="DETAILS"
local commandaction="Details"
# Run checks and gathers details to display.
# Description: Dev only: Enables debugging log to be saved to dev-debug.log.
commandname="DEV-DEBUG"
commandaction="Dev-Debug"
local commandname="DEV-DEBUG"
local commandaction="Dev-Debug"
if [ -f "${rootdir}/.dev-debug" ]; then
# Description: Detects dependencies the server binary requires.
commandname="DETECT-DEPS"
commandaction="Detect-Deps"
local commandname="DETECT-DEPS"
local commandaction="Detect-Deps"
echo "================================="
# Description: Automatically detects the version of GLIBC that is required.
# Can check a file or directory recursively.
commandname="DETECT-GLIBC"
commandaction="Detect-Glibc"
local commandname="DETECT-GLIBC"
local commandaction="Detect-Glibc"
# Description: Automatically detects required deps using ldd.
commandname="DETECT-LDD"
commandaction="Detect-LDD"
local commandname="DETECT-LDD"
local commandaction="Detect-LDD"
# Website: https://gameservermanagers.com
# Description: Raw gamedig output of the server.
commandname="QUERY-RAW"
commandaction="QUERY-RAW"
local commandname="QUERY-RAW"
local commandaction="QUERY-RAW"
# Description: Creates a FastDL directory.
commandname="FASTDL"
commandaction="FastDL"
local commandname="FASTDL"
local commandaction="FastDL"
# Description: Overall function for the installer.
commandname="INSTALL"
commandaction="Install"
local commandname="INSTALL"
local commandaction="Install"
# Description: Installs the default resources for Multi Theft Auto.
commandname="DEFAULT_RESOURCES"
commandaction="Default Resources"
local commandname="DEFAULT_RESOURCES"
local commandaction="Default Resources"
fn_install_resources(){
# Description: List and installs available mods along with mods_list.sh and mods_core.sh.
commandname="MODS"
commandaction="addons/mods"
local commandname="MODS"
local commandaction="addons/mods"
# Description: Uninstall mods along with mods_list.sh and mods_core.sh.
# Description: Updates installed mods along with mods_list.sh and mods_core.sh.
commandaction="Mods Update"
local commandaction="Mods Update"
@ -6,8 +6,8 @@
# Description: Monitors server by checking for running processes.
# then passes to gamedig and gsquery.
commandname="MONITOR"
commandaction="Monitor"
local commandname="MONITOR"
local commandaction="Monitor"
fn_monitor_loop(){
# Description: Strips sensitive information out of Details output
commandname="postdetails"
commandaction="Postdetails"
local commandname="postdetails"
local commandaction="Postdetails"
# Set posttarget to the appropriately-defined post destination.
# Description: Restarts the server.
commandname="RESTART"
commandaction="Restarting"
local commandname="RESTART"
local commandaction="Restarting"
info_config.sh
# Description: Starts the server.
commandname="START"
commandaction="Starting"
local commandname="START"
local commandaction="Starting"
fn_start_teamspeak3(){
# Description: Stops the server.
commandname="STOP"
commandaction="Stopping"
local commandname="STOP"
local commandaction="Stopping"
# Attempts graceful shutdown by sending the 'CTRL+c'.
# Description: Sends a test alert.
fn_print_dots "${servername}"
# Description: Changes TS3 serveradmin password.
commandname="TS3-CHANGE-PASS"
commandaction="ServerAdmin Password Change"
local commandname="TS3-CHANGE-PASS"
local commandaction="ServerAdmin Password Change"
fn_serveradmin_password_prompt(){
# Description: Handles updating of servers.
commandname="UPDATE"
commandaction="Update"
local commandname="UPDATE"
local commandaction="Update"
fn_print_dots ""
# Description: Deletes the functions dir to allow re-downloading of functions from GitHub.
commandname="UPDATE LinuxGSM"
commandaction="Update LinuxGSM"
local commandname="UPDATE LinuxGSM"
local commandaction="Update LinuxGSM"
fn_print_dots "Updating LinuxGSM"
# Description: Runs a server validation.
commandname="VALIDATE"
commandaction="Validate"
local commandname="VALIDATE"
local commandaction="Validate"
fn_validation(){
# Description: Wipes server data, useful after updates for some games like Rust
commandname="WIPE"
commandaction="data wipe"
local commandname="WIPE"
local commandaction="data wipe"
# Description: Compresses unreal maps.
commandaction="Unreal Map Compressor"
local commandaction="Unreal Map Compressor"
@ -17,8 +17,8 @@
# fn_fetch_file "${remote_fileurl}" "${local_filedir}" "${local_filename}" "${chmodx}" "${run}" "${forcedl}" "${md5}"
# fn_fetch_file "http://example.com/file.tar.bz2" "/some/dir" "file.tar.bz2" "chmodx" "run" "forcedl" "10cd7353aa9d758a075c600a6dd193fd"
commandname="DOWNLOAD"
commandaction="Download"
local commandname="DOWNLOAD"
local commandaction="Download"
fn_dl_md5(){
# Description: Overall function for managing fixes.
# Runs functions that will fix an issue.
commandname="FIX"
commandaction="Fix"
local commandname="FIX"
local commandaction="Fix"
# Messages that are displayed for some fixes
fn_fix_msg_start(){
# Description: Resolves an issue with ARMA3.
# Fixes: 20150 Segmentation fault (core dumped) error.
# Description: Fixes for Call of Duty: United Offensive
# Force glibc fix
fix_glibc.sh
# Description: Resolves various issues with CS:GO.
# Fixes: server not always creating steam_appid.txt file.
# Description: Resolves various issues with Don't Starve Together.
# Fixes: ./dontstarve_dedicated_server_nullrenderer: ./lib32/libcurl-gnutls.so.4: no version information available (required by ./dontstarve_dedicated_server_nullrenderer)
# Description: Resolves various issues with GoldenEye: Source.
# Fixes: MALLOC_CHECK_ needing to be set to 0.
export MALLOC_CHECK_=0
# Description: Downloads required Glibc files and applies the Glibc fix if required.
## i386
# Description: Resolves various issues with Insurgency.
# Fixes: ./srcds_linux: error while loading shared libraries: libtier0.so: cannot open shared object file: No such file or directory.
# Description: Resolves various issues with Killing Floor.
echo "Applying WebAdmin ROOst.css fix."
# Description: Resolves various issues with Killing Floor 2.
fn_parms(){
# Contributor: ChaosMTA
# Description: Installs the libmysqlclient for database functions on the server
if [ ! -f "${lgsmdir}/lib/libmysqlclient.so.16" ]; then
# Description: Resolves various issues with Red Orchestra.
# Description: Resolves startup issue with Rust
# Fixes: [Raknet] Server Shutting Down (Shutting Down)
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${systemdir}/RustDedicated_Data/Plugins/x86_64"
# Description: Resolves startup issue with Rising World
export LD_LIBRARY_PATH="${serverfiles}/linux64:${serverfiles}:$LD_LIBRARY_PATH"
# Description: Resolves various issues with Serious Sam 3.
# Fixes https://steamcommunity.com/app/41070/discussions/0/353916981477716386/
# Description: Resolves various issues related to SteamCMD.
# Fixes: [S_API FAIL] SteamAPI_Init() failed; unable to locate a running instance of Steam,or a local steamclient.so.
# Description: Resolves various issues with Unreal Tournament.
#Set Binary Executable
# Description: Resolves various issues with Unreal Tournament 2004.
echo "applying WebAdmin ut2003.css fix."
# Description: Resolves various issues with configs in Unreal Tournament 3.
# Description: Prints installation completion message and hints.
# Description: Creates default server configs.
# Checks if server cfg dir exists, creates it if it doesn't
# Description: Configures Don't Starve Together cluster with given token.
echo ""
# Description: Creates the initial save file for Factorio
echo "Creating initial Factorio savefile"
# Description: Configures GSLT.
# Description: Prints installation header.
clear
# Description: Creates log directories.
if [ "${checklogs}" != "1" ]; then
# Description: Installs the libmysqlclient for database functions on the server and optionally installs default resources required to run the server
fn_print_information_nl "${gamename} will not function without resources!"
# Description: Asks for installation retry after failure.
if fn_prompt_yn "Retry install?" Y; then
# Description: Creates the server directory.
# Description: Installs server files.
fn_install_server_files(){
# Description: Configures the Squad server's license.
# Description: Downloads SteamCMD on install.
echo "Installing SteamCMD"
# Description: Installs the database server MariaDB for TeamSpeak 3.
fn_install_ts3db_mariadb(){
# Description: Activates ut2k4 server with given key.
# Description: Acts as a log rotator, removing old logs.
commandname="LOGS"
commandaction="Log-Manager"
local commandname="LOGS"
local commandaction="Log-Manager"
# Check if logfile variable and file exist, create logfile if it doesn't exist
if [ -n "${consolelog}" ]; then
# Description: Core functions for mods list/install/update/remove
# Files and Directories
@ -8,8 +8,8 @@
# Usage: Then add this array to the mods_global_array.
# Usage: If needed, you can scrape the download URL first.
commandaction="List Mods"
local commandaction="List Mods"
# Get a proper URL for mods that don't provide a good one (optional)
# Description: Handles updating of Factorio servers.
fn_update_factorio_dl(){
# Description: Handles updating of Minecraft servers.
fn_update_dl(){
# Description: Handles updating of Multi Theft Auto servers.
fn_update_mta_dl(){
# Description: Handles updating of mumble servers.
fn_update_mumble_dl(){
# Description: Handles updating using SteamCMD.
# Description: Handles updating of teamspeak 3 servers.
fn_update_ts3_dl(){