@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then
set -x
fi
version="201215"
version="271215"
#### Variables ####
@ -10,7 +10,7 @@ if [ -f ".dev-debug" ]; then
@ -2,7 +2,7 @@
# LGSM fn_check function
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
lgsm_version="261215"
lgsm_version="271215"
# 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
# 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
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.
# LGSM command_details.sh function
# Description: Displays server infomation.
# LGSM fn_install function
check_root.sh
install_header.sh
# LGSM command_monitor.sh function
# Description: Monitors server by checking for running proccesses
# then passes to monitor_gsquery.sh.
# LGSM command_start.sh function
lgsm_version="201215"
# Description: Starts the server.
# LGSM command_stop.sh function
# Description: Stops the server.
# LGSM command_validate.sh function
# Description: Runs a server validation.
# LGSM compress_unreal2_maps.sh function
lgsm_version="061115"
clear
# LGSM compress_ut99_maps.sh function
# LGSM core_functions.sh function
# Description: Defines all functions to allow download and execution of functions using fn_runfunction.
# This function is called first before any other function. Without this file other functions would not load.
# LGSM core_getopt.sh function
# Description: getopt arguments.
# LGSM fn_messages function
# Description: Defines on-screen messages such as [ OK ] and how script logs look.
# LGSM dev_debug.sh function
if [ -f ".dev-debug" ]; then
rm .dev-debug
# LGSM fn_dep_detect function
# Description: Detects dependencies the server binary requires.
# LGSM email.sh function
# Description: Sends email notification if monitor picks up a failure.
# LGSM email_test.sh function
# Description: Sends a test email notification.
# LGSM fix_arma3.sh function
# Fixes line 63: 20150 Segmentation fault (core dumped) #488
# LGSM fix_csgo.sh function
# Description: Resolves various issues with csgo.
# LGSM fix_glibc.sh function
fn_glibcfixmsg(){
echo ""
# LGSM fix_ins.sh function
# Description: Resolves various issues with Insurgency.
# Description: Redirect to new core_functions.sh
# Description: Redirect to new core_getopt.sh
# LGSM info_config.sh function
# Description: Gets specific details from config files.
# LGSM info_distro.sh function
lgsm_version="211215"
# Description: Variables providing useful info on the Operating System such as disk and performace info.
# Used for command_details.sh, command_debug.sh and email.sh.
# LGSM info_glibc.sh function
# Description: stores details on servers Glibc requirements.
# LGSM check_ts3status.sh function
# Checks the status of Teamspeak 3.
# LGSM install_complete.sh function
if [ "${gamename}" == "Dont Starve Together" ]; then
# LGSM install_config.sh function
lgsm_version="251215"
fn_defaultconfig(){
echo "creating ${servercfg} config file."
# LGSM install_dl_ut2k4.sh function
echo "Downloading Server Files"
echo "================================="
# LGSM install_dl_ut99.sh function
# LGSM install_fix_kf.sh function
echo "Applying ${gamename} Server Fixes"
# LGSM install_fix_ro.sh function
# LGSM install_fix_steam.sh function
fn_steamclientfix(){
# LGSM install_fix_ut2k4.sh function
# LGSM install_fix_ut99.sh function
# LGSM install_gslt.sh function
lgsm_version="091215"
# Description: Configures GSLT.
# LGSM install_gsquery.sh function
fn_dlgsquery(){
cd "${rootdir}"
# LGSM install_header.sh function
# LGSM install_logs.sh function
if [ "${checklogs}" != "1" ]; then
# LGSM install_retry.sh function
while true; do
read -e -i "y" -p "Retry install? [Y/n]" yn
# LGSM install_serverdir.sh function
echo "Server Directory"
# LGSM finstall_serverfiles.sh function
fn_steaminstallcommand(){
check_steamuser.sh
# LGSM install_steamcmd.sh function
# Description: Downloads SteamCMD on install.
# LGSM install_ts3.sh function
info_distro.sh
# Gets the teamspeak server architecture
@ -3,7 +3,7 @@
# Contributor: PhilPhonic
fn_install_ts3db_mariadb(){
# LGSM install_ut2k4.sh function
echo "Installing ${gamename} Server"
# LGSM install_ut2k4_key.sh function
echo "Enter ${gamename} CD Key"
# LGSM install_ut99.sh function
# LGSM logs.sh function
# Description: Acts as a log rotater, removing old logs.
# LGSM monitor_gsquery.sh function
# Description: uses gsquery.py to directly query the server.
# Detects if the server has frozen.
# LGSM update_check.sh function
# Description: Checks if a server update is available.