@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then
set -x
fi
version="150316"
version="210516"
#### Variables ####
@ -10,7 +10,7 @@ if [ -f ".dev-debug" ]; then
export MALLOC_CHECK_=0
@ -2,7 +2,7 @@
# LGSM command_update_functions.sh function
# Author: Daniel Gibbs
# Website: https://gameservermanagers.com
lgsm_version="270216"
lgsm_version="210516"
# Description: Deletes the functions dir to allow re-downloading of functions from GitHub.
# LGSM core_functions.sh function
lgsm_version="180316"
# Description: REDIRECT FUNCTION to new location for core_functions.sh
# LGSM core_getopt.sh function
# Description: REDIRECT FUNCTION to new location for core_getopt.sh
# LGSM fn_functions function
# Description: REDIRECT FUNCTION to new core_functions.sh
# LGSM fn_getopt.sh function
# Description: REDIRECT FUNCTION to new core_getopt.sh
# LGSM fn_update_functions function
lgsm_version="271215"
# Description: REDIRECT FUNCTION to new command_update_functions.sh
# LGSM alert.sh function
lgsm_version="140516"
# Description: Overall function for managing alerts.
# LGSM email.sh function
# Description: Sends email alert if monitor picks up a failure.
# LGSM alert_pushbullet.sh function
# Description: alerts using pushbullet.
# LGSM fn_check function
lgsm_version="060516"
# Description: Overall function for managing checks.
# Runs checks that will either halt on or fix an issue.
# LGSM check_config.sh function
lgsm_version="060116"
# Description: If server config missing warn user.
# LGSM check_deps.sh function
lgsm_version="050516"
# Description: Checks that the requires dependencies are installed for LGSM.
# LGSM check_glibc.sh function
lgsm_version="020116"
# Description: Checks if server has correct glibc or has a fix available.
# LGSM check_ip.sh function
# Description: Automatically identifies the server interface IP.
# If multiple interfaces are detected the user will need to manualy set using ip="0.0.0.0".
# LGSM check_logs.sh function
# Description: Checks that log files exist on server start
@ -3,7 +3,7 @@
# Contributor: UltimateByte
lgsm_version="150316"
# Description: Checks script, files and folders ownership and permissions.
# LGSM check_root.sh function
lgsm_version="060316"
if [ $(whoami) = "root" ]; then
fn_print_fail_nl "Do NOT run this script as root!"
# LGSM check_status function
# Description: Checks the proccess status of the server. Either online or offline.
# LGSM check_steamcmd.sh function
lgsm_version="160316"
# Description: Checks SteamCMD is installed and correct.
# LGSM check_system_dir.sh function
if [ ! -d "${systemdir}" ]; then
fn_print_fail_nl "Cannot access ${systemdir}: No such directory"
# LGSM check_tmux.sh function
# Checks if tmux is installed as too many users do not RTFM or know how to use Google.
# LGSM command_backup.sh function
# Description: Creates a .tar.gz file in the backup directory.
# LGSM command_console.sh function
# Description: Gives access to the server tmux console.
# LGSM command_debug.sh function
# Description: Runs the server without tmux. Runs direct from the terminal.
# LGSM command_details.sh function
lgsm_version="080516"
# Description: Displays server infomation.
# LGSM dev_debug.sh function
lgsm_version="281215"
# Description: Dev only: enables debuging log to be saved to dev-debug.log.
# LGSM fn_dep_detect function
# Description: Detects dependencies the server binary requires.
# LGSM fn_install function
lgsm_version="260216"
# Description: Overall function for the installer.
# LGSM command_monitor.sh function
# Description: Monitors server by checking for running proccesses
# then passes to monitor_gsquery.sh.
# LGSM command_start.sh function
# Description: Starts the server.
# LGSM command_stop.sh function
# Description: Stops the server.
# LGSM command_email_test.sh function
# Description: Sends a test email alert.
# Contributor : UltimateByte
lgsm_version="080116"
# Description: Changes TS3 serveradmin password
# LGSM command_validate.sh function
# Description: Runs a server validation.
# LGSM compress_unreal2_maps.sh function
function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
# LGSM compress_ut99_maps.sh function
lgsm_version="301215"
# LGSM core_dl.sh function
lgsm_version="050216"
# Description: Deals with all downloads for LGSM.
# Description: Defines all functions to allow download and execution of functions using fn_fetch_function.
# This function is called first before any other function. Without this file other functions would not load.
lgsm_version="070116"
# Description: getopt arguments.
# LGSM fn_messages function
lgsm_version="380216"
# Description: Defines on-screen messages such as [ OK ] and how script logs look.
# LGSM fix.sh function
lgsm_version="010316"
# Description: Overall function for managing fixes.
# Runs functions that will fix an issue.
# LGSM fix_arma3.sh function
# Fixes: server not always creating steam_appid.txt file.
if [ ! -d "${rootdir}/.local/share/Arma\ 3" ]; then
# LGSM fix_csgo.sh function
# Description: Resolves various issues with csgo.
# LGSM fix_dst.sh function
# Description: Resolves various issues with Dont Starve together.
# LGSM fix_glibc.sh function
lgsm_version="220416"
# Description: Downloads required glibc files and applys teh glibc fix if required
# LGSM fix_ins.sh function
lgsm_version="291215"
# Description: Resolves various issues with Insurgency.
# LGSM fix_kf.sh function
echo "Applying WebAdmin ROOst.css fix."
echo "http://forums.tripwireinteractive.com/showpost.php?p=585435&postcount=13"
# LGSM fix_ro.sh function
# Description: Resolves various issues with red orchestra.
# LGSM fix_steamcmd.sh function
# Description: fixes various issues related to steamCMD.
# LGSM fix_ut2k4.sh function
# Description: Resolves various issues with unreal tournament 2004.
# LGSM fix_ut99.sh function
echo "${servercfgfullpath}"
echo "enabling UdpServerUplink."
{
# Description: Redirect to new core_functions.sh
# Description: Redirect to new core_getopt.sh
# LGSM fn_update_functions.sh function
lgsm_version="230116"
# Description: LEGACY FUNCTION Deletes the functions dir to allow re-downloading of functions from GitHub.