diff --git a/functions/check.sh b/functions/check.sh index 61c8083ce..d8924df0c 100644 --- a/functions/check.sh +++ b/functions/check.sh @@ -7,40 +7,55 @@ lgsm_version="271215" # Description: Overall function for managing checks. # Runs checks that will either halt on or fix an issue. -fn_module_compare() { - local e - for e in "${@:2}"; do [[ "$e" == "$1" ]] && return 0; done - return 1 +array_contains () { + local seeking=$1; shift + local in=1 + for element; do + if [ ${element} == ${seeking} ]; then + in=0 + break + fi + done + return $in } check_root.sh -if [ "${cmd}" != "install" ]; then +if [ "${getopt}" != "install" ]||[ "${getopt}" != "auto-install" ]; then check_systemdir.sh fi -no_check_logs=( debug details install map-compressor ) -fn_module_compare "${cmd}" "${no_check_logs[@]}" -if [ $? != 0 ]; then - check_logs.sh -fi - -check_ip=( debug ) -fn_module_compare "${cmd}" "${no_check_logs[@]}" -if [ $? != 0 ]; then - check_ip.sh -fi - -check_ip=( debug ) -fn_module_compare "${cmd}" "${no_check_logs[@]}" -if [ $? != 0 ]; then - check_steamuser.sh - check_steamcmd.sh -fi - -check_ip=( start ) -fn_module_compare "${cmd}" "${no_check_logs[@]}" -if [ $? != 0 ]; then - check_tmux.sh -fi \ No newline at end of file +local allowed_commands_array=( backup console debug details map-compressor monitor start stop update validate ) +for allowed_command in "${allowed_commands_array[@]}" +do + if [ "${allowed_command}" == "${getopt}" ]; then + echo "OK logs" + check_logs.sh + fi +done + +local allowed_commands_array=( debug details monitor start stop ) +for allowed_command in "${allowed_commands_array[@]}" +do + if [ "${allowed_command}" == "${getopt}" ]; then + check_ip.sh + fi +done + +local allowed_commands_array=( debug install start stop update validate ) +for allowed_command in "${allowed_commands_array[@]}" +do + if [ "${allowed_command}" == "${getopt}" ]; then + check_steamuser.sh + check_steamcmd.sh + fi +done + +local allowed_commands_array=( console start stop ) +for allowed_command in "${allowed_commands_array[@]}" +do + if [ "${allowed_command}" == "${getopt}" ]; then + check_tmux.sh + fi +done \ No newline at end of file diff --git a/functions/check_ip.sh b/functions/check_ip.sh index 1a877c12a..2d162fbb5 100644 --- a/functions/check_ip.sh +++ b/functions/check_ip.sh @@ -7,25 +7,29 @@ lgsm_version="271215" # 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". -if [ ! -f "/bin/ip" ]; then - ipcommand="/sbin/ip" -else - ipcommand="ip" -fi -getip=$(${ipcommand} -o -4 addr|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0) -getipwc=$(${ipcommand} -o -4 addr|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -vc 127.0.0) - -if [ "${ip}" == "0.0.0.0" ]||[ "${ip}" == "" ]; then - if [ "${getipwc}" -ge "2" ]; then - fn_printwarn "Multiple active network interfaces found.\n\n" - echo -en "Manually specify the IP you want to use within the ${selfname} script.\n" - echo -en "Set ip=\"0.0.0.0\" to one of the following:\n" - echo -en "${getip}\n" - echo -en "" - echo -en "http://gameservermanagers.com/network-interfaces" - echo -en "" - exit 1 +if [ "${gamename}" == "Teamspeak 3" ]; then + : +elif + if [ ! -f "/bin/ip" ]; then + ipcommand="/sbin/ip" else - ip=${getip} + ipcommand="ip" + fi + getip=$(${ipcommand} -o -4 addr|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0) + getipwc=$(${ipcommand} -o -4 addr|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -vc 127.0.0) + + if [ "${ip}" == "0.0.0.0" ]||[ "${ip}" == "" ]; then + if [ "${getipwc}" -ge "2" ]; then + fn_printwarn "Multiple active network interfaces found.\n\n" + echo -en "Manually specify the IP you want to use within the ${selfname} script.\n" + echo -en "Set ip=\"0.0.0.0\" to one of the following:\n" + echo -en "${getip}\n" + echo -en "" + echo -en "http://gameservermanagers.com/network-interfaces" + echo -en "" + exit 1 + else + ip=${getip} + fi fi -fi +fi \ No newline at end of file diff --git a/functions/command_backup.sh b/functions/command_backup.sh index 6a2f9d301..65a88508c 100644 --- a/functions/command_backup.sh +++ b/functions/command_backup.sh @@ -7,8 +7,7 @@ lgsm_version="271215" # Description: Creates a .tar.gz file in the backup directory. local modulename="Backup" -check_root.sh -check_systemdir.sh +check.sh backupname="${servicename}-$(date '+%Y-%m-%d-%H%M%S')" echo "" echo "${gamename} Backup" diff --git a/functions/command_console.sh b/functions/command_console.sh index 9f3476d1c..4386cc770 100644 --- a/functions/command_console.sh +++ b/functions/command_console.sh @@ -7,8 +7,7 @@ lgsm_version="271215" # Description: Gives access to the server tmux console. local modulename="Console" -check_root.sh -check_systemdir.sh +check.sh echo "" echo "${gamename} Console" echo "============================" @@ -26,7 +25,6 @@ esac done fn_printdots "Starting" sleep 1 -check_tmux.sh tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -Ec "^${servicename}:") if [ "${tmuxwc}" -eq 1 ]; then fn_printoknl "Starting" diff --git a/functions/command_debug.sh b/functions/command_debug.sh index e58fe0ab4..5cf2f5138 100644 --- a/functions/command_debug.sh +++ b/functions/command_debug.sh @@ -7,10 +7,7 @@ lgsm_version="271215" # Description: Runs the server without tmux. Runs direct from the terminal. local modulename="Debug" -check_root.sh -check_systemdir.sh -check_ip.sh -check_logs.sh +check.sh info_distro.sh fn_parms echo "" diff --git a/functions/command_details.sh b/functions/command_details.sh index 927f0beb7..aca698dbc 100644 --- a/functions/command_details.sh +++ b/functions/command_details.sh @@ -106,7 +106,7 @@ printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' = # online status if [ "${gamename}" == "Teamspeak 3" ]; then info_ts3status.sh - if [ "${ts3status}" = "Server seems to have died" ] || [ "${ts3status}" = "No server running (ts3server.pid is missing)" ]; then + if [ "${ts3status}" = "Server seems to have died" ]||[ "${ts3status}" = "No server running (ts3server.pid is missing)" ]; then echo -e "\e[34mStatus:\t\e[0;31mOFFLINE\e[0m" else echo -e "\e[34mStatus:\t\e[0;32mONLINE\e[0m" @@ -184,7 +184,7 @@ fn_details_backup(){ echo -e "" echo -e "\e[92mBackups\e[0m" printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' = -if [ ! -d "${backupdir}" ] || [ "${backupcount}" == "0" ]; then +if [ ! -d "${backupdir}" ]||[ "${backupcount}" == "0" ]; then echo -e "No Backups created" else { @@ -207,7 +207,7 @@ echo -e "${executable} ${parms}" fn_details_statusbottom(){ echo -e "" if [ "${gamename}" == "Teamspeak 3" ]; then - if [ "${ts3status}" = "Server seems to have died" ] || [ "${ts3status}" = "No server running (ts3server.pid is missing)" ]; then + if [ "${ts3status}" = "Server seems to have died" ]||[ "${ts3status}" = "No server running (ts3server.pid is missing)" ]; then echo -e "\e[34mStatus: \e[0;31mOFFLINE\e[0m" else echo -e "\e[34mStatus: \e[0;32mONLINE\e[0m" @@ -226,14 +226,6 @@ echo -e "" # Engine Specific details fn_details_avalanche(){ -check_ip.sh -info_config.sh -info_distro.sh -fn_details_os -fn_details_performance -fn_details_disk -fn_details_gameserver -fn_details_backup echo -e "" echo -e "\e[92mPorts\e[0m" printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' = @@ -252,14 +244,6 @@ fn_details_statusbottom } fn_details_dontstarve(){ -check_ip.sh -info_config.sh -info_distro.sh -fn_details_os -fn_details_performance -fn_details_disk -fn_details_gameserver -fn_details_backup echo -e "" echo -e "\e[92mPorts\e[0m" printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' = @@ -278,14 +262,6 @@ fn_details_statusbottom } fn_details_projectzomboid(){ -check_ip.sh -info_config.sh -info_distro.sh -fn_details_os -fn_details_performance -fn_details_disk -fn_details_gameserver -fn_details_backup echo -e "" echo -e "\e[92mPorts\e[0m" printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' = @@ -305,16 +281,6 @@ fn_details_statusbottom fn_details_realvirtuality(){ -check_ip.sh -fn_parms -info_config.sh -info_distro.sh -fn_details_os -fn_details_performance -fn_details_disk -fn_details_gameserver -fn_details_backup -fn_details_commandlineparms echo -e "" echo -e "\e[92mPorts\e[0m" printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' = @@ -324,7 +290,7 @@ echo -e "" echo -e "Useful port diagnostic command:" echo -e "netstat -atunp | grep arma3server" echo -e "" -if [ -z "${port}" ] || [ -z "${queryport}" ] || [ -z "${masterport}" ]; then +if [ -z "${port}" ]||[ -z "${queryport}" ]||[ -z "${masterport}" ]; then echo -e "\e[0;31mERROR!\e[0m Missing/commented ports in ${servercfg}." echo -e "" fi @@ -339,16 +305,6 @@ fn_details_statusbottom } fn_details_seriousengine35(){ -check_ip.sh -fn_parms -info_config.sh -info_distro.sh -fn_details_os -fn_details_performance -fn_details_disk -fn_details_gameserver -fn_details_backup -fn_details_commandlineparms echo -e "" echo -e "\e[92mPorts\e[0m" printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' = @@ -368,16 +324,6 @@ fn_details_statusbottom } fn_details_source(){ -check_ip.sh -fn_parms -info_config.sh -info_distro.sh -fn_details_os -fn_details_performance -fn_details_disk -fn_details_gameserver -fn_details_backup -fn_details_commandlineparms echo -e "" echo -e "\e[92mPorts\e[0m" printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' = @@ -400,16 +346,6 @@ fn_details_statusbottom } fn_details_spark(){ -check_ip.sh -fn_parms -info_config.sh -info_distro.sh -fn_details_os -fn_details_performance -fn_details_disk -fn_details_gameserver -fn_details_backup -fn_details_commandlineparms echo -e "" echo -e "\e[92mPorts\e[0m" printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' = @@ -438,16 +374,6 @@ fn_details_statusbottom } fn_details_starbound(){ -check_ip.sh -fn_parms -info_config.sh -info_distro.sh -fn_details_os -fn_details_performance -fn_details_disk -fn_details_gameserver -fn_details_backup -fn_details_commandlineparms echo -e "" echo -e "\e[92mPorts\e[0m" printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' = @@ -469,14 +395,6 @@ fn_details_statusbottom } fn_details_teamspeak3(){ -info_config.sh -info_distro.sh -fn_details_os -fn_details_performance -fn_details_disk -fn_details_gameserver -fn_details_backup -fn_details_commandlineparms echo -e "" echo -e "\e[92mPorts\e[0m" printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' = @@ -497,16 +415,6 @@ fn_details_statusbottom } fn_details_teeworlds(){ -check_ip.sh -fn_parms -info_config.sh -info_distro.sh -fn_details_os -fn_details_performance -fn_details_disk -fn_details_gameserver -fn_details_backup -fn_details_commandlineparms echo -e "" echo -e "\e[92mPorts\e[0m" printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' = @@ -525,16 +433,6 @@ fn_details_statusbottom } fn_details_terraria(){ -check_ip.sh -fn_parms -info_config.sh -info_distro.sh -fn_details_os -fn_details_performance -fn_details_disk -fn_details_gameserver -fn_details_backup -fn_details_commandlineparms echo -e "" echo -e "\e[92mPorts\e[0m" printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' = @@ -555,16 +453,6 @@ fn_details_statusbottom } fn_details_sdtd(){ -fn_check_ip.sh -fn_parms -info_config.sh -info_distro.sh -fn_details_os -fn_details_performance -fn_details_disk -fn_details_gameserver -fn_details_backup -fn_details_commandlineparms echo -e "" echo -e "\e[92mPorts\e[0m" printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' = @@ -602,16 +490,6 @@ fn_details_statusbottom } fn_details_hurtworld(){ -check_ip.sh -fn_parms -fn_details_config -fn_details_distro -fn_details_os -fn_details_performance -fn_details_disk -fn_details_gameserver -fn_details_backup -fn_details_commandlineparms echo -e "" echo -e "\e[92mPorts\e[0m" printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' = @@ -633,16 +511,6 @@ fn_details_statusbottom } fn_details_unreal(){ -check_ip.sh -fn_parms -info_config.sh -info_distro.sh -fn_details_os -fn_details_performance -fn_details_disk -fn_details_gameserver -fn_details_backup -fn_details_commandlineparms echo -e "" echo -e "\e[92mPorts\e[0m" printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' = @@ -690,16 +558,6 @@ fn_details_statusbottom } fn_details_ark(){ -check_ip.sh -fn_parms -info_config.sh -info_distro.sh -fn_details_os -fn_details_performance -fn_details_disk -fn_details_gameserver -fn_details_backup -fn_details_commandlineparms echo -e "" echo -e "\e[92mPorts\e[0m" printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' = @@ -718,6 +576,10 @@ echo -e "" fn_details_statusbottom } + +# Run checks and gathers details to display. +check.sh + if [ ! -e "${servercfgfullpath}" ]; then if [ "${gamename}" != "Hurtworld" ]; then echo "" @@ -734,8 +596,21 @@ if [ ! -e "${servercfgfullpath}" ]; then fi fi +info_config.sh +info_distro.sh info_glibc.sh +fn_details_os +fn_details_performance +fn_details_gameserver +fn_details_backup +# Some game servers do not have parms. +if [ "${gamename}" != "Teamspeak 3" ]||[ "${engine}" != "avalanche" ]||[ "${engine}" != "dontstarve" ]||[ "${engine}" == "projectzomboid" ]; then + fn_parms + fn_details_commandlineparms +fi + +# Display details depending on game or engine. if [ "${engine}" == "avalanche" ]; then fn_details_avalanche elif [ "${engine}" == "dontstarve" ]; then @@ -746,7 +621,7 @@ elif [ "${engine}" == "realvirtuality" ]; then fn_details_realvirtuality elif [ "${engine}" == "seriousengine35" ]; then fn_details_seriousengine35 -elif [ "${engine}" == "source" ] || [ "${engine}" == "goldsource" ]; then +elif [ "${engine}" == "source" ]||[ "${engine}" == "goldsource" ]; then fn_details_source elif [ "${engine}" == "spark" ]; then fn_details_spark @@ -756,7 +631,7 @@ elif [ "${engine}" == "teeworlds" ]; then fn_details_teeworlds elif [ "${engine}" == "terraria" ]; then fn_details_terraria -elif [ "${engine}" == "unreal" ] || [ "${engine}" == "unreal2" ]; then +elif [ "${engine}" == "unreal" ]||[ "${engine}" == "unreal2" ]; then fn_details_unreal elif [ "${gamename}" == "ARK: Survivial Evolved" ]; then fn_details_ark diff --git a/functions/dev_debug.sh b/functions/command_dev_debug.sh similarity index 100% rename from functions/dev_debug.sh rename to functions/command_dev_debug.sh diff --git a/functions/dev_detect_deps.sh b/functions/command_dev_detect_deps.sh similarity index 98% rename from functions/dev_detect_deps.sh rename to functions/command_dev_detect_deps.sh index 03069ea8e..28826a2bb 100644 --- a/functions/dev_detect_deps.sh +++ b/functions/command_dev_detect_deps.sh @@ -7,8 +7,7 @@ lgsm_version="271215" # Description: Detects dependencies the server binary requires. local modulename="Backup" -check_root.sh -check_systemdir.sh +check.sh cd "${executabledir}" if [ "${executable}" == "./hlds_run" ]; then executable=hlds_linux diff --git a/functions/command_install.sh b/functions/command_install.sh index 8f8d0a8ec..dc5b5bff9 100644 --- a/functions/command_install.sh +++ b/functions/command_install.sh @@ -4,7 +4,7 @@ # Website: http://gameservermanagers.com lgsm_version="271215" -check_root.sh +check.sh install_header.sh install_serverdir.sh diff --git a/functions/command_monitor.sh b/functions/command_monitor.sh index f99409f8d..728b59c49 100644 --- a/functions/command_monitor.sh +++ b/functions/command_monitor.sh @@ -10,8 +10,7 @@ lgsm_version="271215" local modulename="Monitor" fn_monitor_teamspeak3(){ -check_root.sh -check_systemdir.sh +check.sh logs.sh fn_printdots "${servername}" fn_scriptlog "${servername}" @@ -54,9 +53,7 @@ fn_restart } fn_monitor_tmux(){ -check_root.sh -check_systemdir.sh -check_ip.sh +check.sh info_config.sh fn_printdots "${servername}" fn_scriptlog "${servername}" diff --git a/functions/command_start.sh b/functions/command_start.sh index 424c69e4c..98212219e 100644 --- a/functions/command_start.sh +++ b/functions/command_start.sh @@ -9,9 +9,7 @@ lgsm_version="271215" local modulename="Starting" fn_start_teamspeak3(){ -check_root.sh -check_systemdir.sh -check_logs.sh +check.sh info_ts3status.sh if [ "${ts3status}" != "Server is running" ]; then diff --git a/functions/command_stop.sh b/functions/command_stop.sh index d567489e0..0b91ea69d 100644 --- a/functions/command_stop.sh +++ b/functions/command_stop.sh @@ -29,8 +29,7 @@ sdtd_telnet(){ } fn_stop_teamspeak3(){ -check_root.sh -check_systemdir.sh +check.sh fn_printdots "${servername}" fn_scriptlog "${servername}" sleep 1 @@ -50,13 +49,11 @@ echo -en "\n" } fn_stop_tmux(){ -check_root.sh -check_systemdir.sh +check.sh info_config.sh fn_printdots "${servername}" fn_scriptlog "${servername}" sleep 1 -check_tmux.sh if [ "${gamename}" == "7 Days To Die" ] ; then # if game is 7 Days To Die, we need special, graceful shutdown via telnet connection. @@ -70,7 +67,6 @@ if [ "${gamename}" == "7 Days To Die" ] ; then # If failed using localhost will use servers ip refused=$(echo -en "\n ${sdtdshutdown}"| grep "Timeout or EOF") if [ -n "${refused}" ]; then - check_ip.sh telnetip=${ip} fn_printwarn "Attempting graceful shutdown via telnet: localhost failed" fn_scriptlog "Warning! Attempting graceful shutdown failed using localhost" diff --git a/functions/command_validate.sh b/functions/command_validate.sh index 7d62f0dd5..369969f4d 100644 --- a/functions/command_validate.sh +++ b/functions/command_validate.sh @@ -9,8 +9,6 @@ lgsm_version="271215" local modulename="Validate" fn_validation(){ -check_steamcmd.sh -check_steamuser.sh fn_printwarn "Validating may overwrite some customised files." sleep 1 echo -en "\n" @@ -42,8 +40,7 @@ fi fn_scriptlog "Checking complete" } -check_root.sh -check_systemdir.sh +check.sh tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -Ec "^${servicename}:") if [ "${tmuxwc}" -eq 1 ]; then command_stop.sh diff --git a/functions/compress_unreal2_maps.sh b/functions/compress_unreal2_maps.sh index 5992cb8f6..2a0f88542 100644 --- a/functions/compress_unreal2_maps.sh +++ b/functions/compress_unreal2_maps.sh @@ -4,7 +4,7 @@ # Website: http://gameservermanagers.com lgsm_version="271215" -check_root.sh +check.sh clear echo "${gamename} Map Compressor" echo "============================" diff --git a/functions/compress_ut99_maps.sh b/functions/compress_ut99_maps.sh index ba14cb663..510a7b5a7 100644 --- a/functions/compress_ut99_maps.sh +++ b/functions/compress_ut99_maps.sh @@ -4,7 +4,7 @@ # Website: http://gameservermanagers.com lgsm_version="271215" -check_root.sh +check.sh clear echo "${gamename} Map Compressor" echo "============================" diff --git a/functions/install_serverfiles.sh b/functions/install_serverfiles.sh index e21ace3f7..24677da9c 100644 --- a/functions/install_serverfiles.sh +++ b/functions/install_serverfiles.sh @@ -5,7 +5,7 @@ lgsm_version="271215" fn_steaminstallcommand(){ -check_steamuser.sh +check.sh counter="0" while [ "${counter}" == "0" ]||[ "$(grep -wc 0x402 .finstall_serverfiles.sh.tmp)" -ge "1" ]||[ "$(grep -wc 0x406 .finstall_serverfiles.sh.tmp)" -ge "1" ]||[ "$(grep -wc 0x6 .finstall_serverfiles.sh.tmp)" -ge "1" ]||[ "$(grep -wc 0x106 .finstall_serverfiles.sh.tmp)" -ge "1" ]; do counter=$((counter+1)) diff --git a/functions/update_check.sh b/functions/update_check.sh index f1b9ae78a..b5f36f7b5 100644 --- a/functions/update_check.sh +++ b/functions/update_check.sh @@ -102,8 +102,7 @@ fi } fn_steamcmdcheck(){ -check_steamcmd.sh -check_steamuser.sh +check.sh fn_appmanifestcheck # Checks for server update from SteamCMD fn_printdots "Checking for update: SteamCMD" diff --git a/functions/update_dl.sh b/functions/update_dl.sh index aa9fc51b2..9c7106287 100644 --- a/functions/update_dl.sh +++ b/functions/update_dl.sh @@ -9,8 +9,7 @@ lgsm_version="271215" local modulename="Update" fn_steamcmd_dl(){ -check_root.sh -check_systemdir.sh +check.sh info_config.sh fn_printdots "Updating ${servername}" sleep 1 @@ -39,8 +38,7 @@ fi } fn_teamspeak3_dl(){ -check_root.sh -check_systemdir.sh +check.sh info_config.sh fn_printdots "Updating ${servername}" sleep 1