@ -2,87 +2,149 @@
# LGSM core_functions.sh function
# LGSM core_functions.sh function
# Author: Daniel Gibbs
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
# Website: http://gameservermanagers.com
<<< <<< < HEAD
lgsm_version = "190216"
lgsm_version = "190216"
= = = = = = =
lgsm_version = "270216"
>>>>>>> dlmanage
# Description: Defines all functions to allow download and execution of functions using fn_runfunction.
# 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.
# This function is called first before any other function. Without this file other functions would not load.
#Legacy function s
# Code/functions for legacy server s
fn_functions( ) {
fn_functions( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
fn_getopt( ) {
fn_getopt( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_runfunction
fn_fetch_function
}
# fn_fetch_core_dl also placed here to allow legecy servers to still download core functions
if [ -z " ${ lgsmdir } " ] ; then
lgsmdir = " ${ rootdir } /lgsm "
functionsdir = " ${ lgsmdir } /functions "
fi
fn_fetch_core_dl( ) {
github_file_url_dir = "functions"
github_file_url_name = " ${ functionfile } "
filedir = " ${ functionsdir } "
filename = " ${ github_file_url_name } "
githuburl = " https://raw.githubusercontent.com/ ${ githubuser } / ${ githubrepo } / ${ githubbranch } / ${ github_file_url_dir } / ${ github_file_url_name } "
# If the file is missing, then download
if [ ! -f " ${ filedir } / ${ filename } " ] ; then
if [ ! -d " ${ filedir } " ] ; then
mkdir -p " ${ filedir } "
fi
echo -e " fetching ${ filename } ...\c "
# Check curl exists and use available path
curlpaths = " $( command -v curl 2>/dev/null) $( which curl >/dev/null 2>& 1) /usr/bin/curl /bin/curl /usr/sbin/curl /sbin/curl $( echo $PATH | sed "s/\([:]\|\$\)/\/curl /g" ) "
for curlcmd in ${ curlpaths }
do
if [ -x " ${ curlcmd } " ] ; then
break
fi
done
# If curl exists download file
if [ " $( basename ${ curlcmd } ) " = = "curl" ] ; then
curlfetch = $( ${ curlcmd } -s --fail -o " ${ filedir } / ${ filename } " " ${ githuburl } " 2>& 1)
if [ $? -ne 0 ] ; then
echo -e "\e[0;31mFAIL\e[0m\n"
echo " ${ curlfetch } "
echo -e " ${ githuburl } \n "
exit 1
else
echo -e "\e[0;32mOK\e[0m"
fi
else
echo -e "\e[0;31mFAIL\e[0m\n"
echo "Curl is not installed!"
echo -e ""
exit 1
fi
chmod +x " ${ filedir } / ${ filename } "
fi
source " ${ filedir } / ${ filename } "
}
}
# Core
# Core
core_dl.sh( ) {
# Functions are defined in core_functions.sh.
functionfile = " ${ FUNCNAME } "
fn_fetch_core_dl
}
core_getopt.sh( ) {
core_getopt.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_runfunction
fn_fetch_core_dl
}
}
core_messages.sh( ) {
core_messages.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_runfunction
fn_fetch_core_dl
}
}
core_dl.sh( ) {
functionfile = " ${ FUNCNAME } "
fn_fetch_core_dl
}
# Command
# Command
command_console.sh( ) {
command_console.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_runfunction
fn_fetch_ function
}
}
command_debug.sh( ) {
command_debug.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_runfunction
fn_fetch_ function
}
}
command_details.sh( ) {
command_details.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_runfunction
fn_fetch_ function
}
}
command_email_test.sh( ) {
command_email_test.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_runfunction
fn_fetch_ function
}
}
command_backup.sh( ) {
command_backup.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_runfunction
fn_fetch_ function
}
}
command_monitor.sh( ) {
command_monitor.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_runfunction
fn_fetch_ function
}
}
command_start.sh( ) {
command_start.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
command_stop.sh( ) {
command_stop.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
command_validate.sh( ) {
command_validate.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
command_install.sh( ) {
command_install.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
command_fastdl.sh( ) {
command_fastdl.sh( ) {
@ -92,13 +154,15 @@ fn_runfunction
command_ts3_server_pass.sh( ) {
command_ts3_server_pass.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
fn_restart( ) {
fn_restart( ) {
local modulename = "Restarting"
local modulename = "Restarting"
info_config.sh
info_config.sh
fn_scriptlog " ${ servername } "
if [ -d " ${ scriptlogdir } " ] ; then
fn_scriptlog " ${ servername } "
fi
command_stop.sh
command_stop.sh
command_start.sh
command_start.sh
}
}
@ -108,52 +172,47 @@ command_start.sh
check.sh( ) {
check.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
check_config.sh( ) {
check_config.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
check_deps.sh( ) {
check_deps.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
check_ip.sh( ) {
check_ip.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
check_logs.sh( ) {
check_logs.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
check_root.sh( ) {
check_root.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
check_steamcmd.sh( ) {
check_steamcmd.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
check_steamuse r.sh( ) {
check_system_di r.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_runfunction
fn_fetch_function
}
check_systemdir.sh( ) {
functionfile = " ${ FUNCNAME } "
fn_runfunction
}
}
check_tmux.sh( ) {
check_tmux.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_function
}
}
@ -161,12 +220,12 @@ fn_runfunction
compress_unreal2_maps.sh( ) {
compress_unreal2_maps.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
compress_ut99_maps.sh( ) {
compress_ut99_maps.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
@ -174,12 +233,12 @@ fn_runfunction
command_dev_debug.sh( ) {
command_dev_debug.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
command_dev_detect_deps.sh( ) {
command_dev_detect_deps.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
@ -187,52 +246,52 @@ fn_runfunction
fix.sh( ) {
fix.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
fix_arma3.sh( ) {
fix_arma3.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
fix_csgo.sh( ) {
fix_csgo.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
fix_dst.sh( ) {
fix_dst.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
fix_ins.sh( ) {
fix_ins.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
fix_steamcmd.sh( ) {
fix_steamcmd.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
fix_glibc.sh( ) {
fix_glibc.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
fix_ro.sh( ) {
fix_ro.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
fix_kf.sh( ) {
fix_kf.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
fix_ut2k4.sh( ) {
fix_ut2k4.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
@ -240,22 +299,22 @@ fn_runfunction
info_config.sh( ) {
info_config.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
info_distro.sh( ) {
info_distro.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
info_glibc.sh( ) {
info_glibc.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
info_ts3status.sh( ) {
info_ts3status.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
@ -263,14 +322,14 @@ fn_runfunction
email.sh( ) {
email.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
# Logs
# Logs
logs.sh( ) {
logs.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
@ -278,30 +337,29 @@ fn_runfunction
monitor_gsquery.sh( ) {
monitor_gsquery.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
# Update
# Update
update_check.sh( ) {
update_check.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
update_functions.sh( ) {
command_ update_functions.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
update_dl.sh( ) {
update_dl.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
update_functions.sh( ) {
fn_ update_functions.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
@ -316,92 +374,85 @@ command_install.sh
install_complete.sh( ) {
install_complete.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
install_config.sh( ) {
install_config.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
install_gsquery.sh( ) {
install_gsquery.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
install_gslt.sh( ) {
install_gslt.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
install_header.sh( ) {
install_header.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
install_logs.sh( ) {
install_logs.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
install_retry.sh( ) {
install_retry.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
install_serverdir.sh( ) {
install_server_ dir.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
install_serverfiles.sh( ) {
install_server_ files.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
install_steamcmd.sh( ) {
install_steamcmd.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
install_ts3.sh( ) {
install_ts3.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
install_ts3db.sh( ) {
install_ts3db.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
install_ut2k4.sh( ) {
install_ut2k4.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
install_dl_ut2k4.sh( ) {
install_dl_ut2k4.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_ function
}
}
install_ut2k4_key.sh( ) {
install_ut2k4_key.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_runfunction
fn_fetch_function
}
install_ut99.sh( ) {
functionfile = " ${ FUNCNAME } "
fn_runfunction
}
install_dl_ut99.sh( ) {
functionfile = " ${ FUNCNAME } "
fn_runfunction
}
}
fix_ut99.sh( ) {
fix_ut99.sh( ) {
functionfile = " ${ FUNCNAME } "
functionfile = " ${ FUNCNAME } "
fn_run function
fn_fetch_function
}
}
# Calls on-screen messages
# Calls on-screen messages
core_messages.sh
core_messages.sh
#Calls file downloader
core_dl.sh