@ -2,7 +2,7 @@
# LGSM fn_check function
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
lgsm_version="201215"
lgsm_version="261215"
# Description: Overall function for managing checks.
# Runs checks that will either halt on or fix an issue.
# 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
lgsm_version="061115"
# Description: Checks that log files exist on server start
# LGSM check_root.sh function
if [ $(whoami) = "root" ]; then
fn_printfailnl "Do NOT run this script as root!"
# LGSM check_steamcmd.sh function
# Description: Downloads SteamCMD on install and checks if missing before running functions that require SteamCMD
# LGSM check_steamuser.sh function
if [ "${steamuser}" == "username" ]; then
fn_printfailnl "Steam login not set. Update steamuser."
# LGSM check_systemdir.sh function
lgsm_version="161215"
if [ ! -d "${systemdir}" ]; then
fn_printfailnl "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.
@ -33,7 +33,7 @@ if [ "${gamename}" == "Counter Strike: Global Offensive" ]; then
install_gslt.sh
fix_csgo.sh
elif [ "${gamename}" == "Teamspeak 3" ]; then
fn_install_ts3db
install_ts3db.sh
elif [ "${gamename}" == "Team Fortress 2" ]; then
elif [ "${gamename}" == "Killing Floor" ]; then
# LGSM command_monitor.sh function
# Description: Monitors server by checking for running proccesses
# then passes to monitor_gsquery.sh.