diff --git a/lgsm/functions/alert.sh b/lgsm/functions/alert.sh index 17f51140e..db5fdbc79 100644 --- a/lgsm/functions/alert.sh +++ b/lgsm/functions/alert.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Overall function for managing alerts. -local commandname="ALERT" +local modulename="ALERT" local commandaction="Alert" fn_alert_log(){ diff --git a/lgsm/functions/alert_discord.sh b/lgsm/functions/alert_discord.sh index b404b8e0f..6f5793de1 100644 --- a/lgsm/functions/alert_discord.sh +++ b/lgsm/functions/alert_discord.sh @@ -5,6 +5,10 @@ # Website: https://linuxgsm.com # Description: Sends Discord alert. +local modulename="ALERT" +local commandaction="Alert" +local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" + if ! command -v jq > /dev/null; then fn_print_fail_nl "Sending Discord alert: jq is missing." fn_script_log_fatal "Sending Discord alert: jq is missing." diff --git a/lgsm/functions/alert_email.sh b/lgsm/functions/alert_email.sh index 8b9cef865..727275b35 100644 --- a/lgsm/functions/alert_email.sh +++ b/lgsm/functions/alert_email.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Sends email alert. -local commandname="ALERT" +local modulename="ALERT" local commandaction="Alert" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/alert_ifttt.sh b/lgsm/functions/alert_ifttt.sh index 99b564f08..b77fa7c50 100644 --- a/lgsm/functions/alert_ifttt.sh +++ b/lgsm/functions/alert_ifttt.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Sends IFTTT alert. -local commandname="ALERT" +local modulename="ALERT" local commandaction="Alert" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/alert_mailgun.sh b/lgsm/functions/alert_mailgun.sh index aa2594823..521a46fb9 100644 --- a/lgsm/functions/alert_mailgun.sh +++ b/lgsm/functions/alert_mailgun.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Sends Mailgun Email alert. -local commandname="ALERT" +local modulename="ALERT" local commandaction="Alert" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/alert_pushbullet.sh b/lgsm/functions/alert_pushbullet.sh index 797e987f0..a9b409f10 100644 --- a/lgsm/functions/alert_pushbullet.sh +++ b/lgsm/functions/alert_pushbullet.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Sends Pushbullet Messenger alert. -local commandname="ALERT" +local modulename="ALERT" local commandaction="Alert" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/alert_pushover.sh b/lgsm/functions/alert_pushover.sh index 701dca674..0db5d5a0c 100644 --- a/lgsm/functions/alert_pushover.sh +++ b/lgsm/functions/alert_pushover.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Sends Pushover alert. -local commandname="ALERT" +local modulename="ALERT" local commandaction="Alert" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/alert_slack.sh b/lgsm/functions/alert_slack.sh index b2345de43..582043f0c 100644 --- a/lgsm/functions/alert_slack.sh +++ b/lgsm/functions/alert_slack.sh @@ -4,6 +4,10 @@ # Website: https://linuxgsm.com # Description: Sends Slack alert. +local modulename="ALERT" +local commandaction="Alert" +local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" + if ! command -v jq > /dev/null; then fn_print_fail_nl "Sending Slack alert: jq is missing." fn_script_log_fatal "Sending Slack alert: jq is missing." diff --git a/lgsm/functions/alert_telegram.sh b/lgsm/functions/alert_telegram.sh index 3581abf38..21436c340 100644 --- a/lgsm/functions/alert_telegram.sh +++ b/lgsm/functions/alert_telegram.sh @@ -4,7 +4,7 @@ # Website: https://bytegaming.de # Description: Sends Telegram Messenger alert. -local commandname="ALERT" +local modulename="ALERT" local commandaction="Alert" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/check.sh b/lgsm/functions/check.sh index 21e63aca4..838441517 100644 --- a/lgsm/functions/check.sh +++ b/lgsm/functions/check.sh @@ -5,7 +5,7 @@ # Description: Overall function for managing checks. # Runs checks that will either halt on or fix an issue. -local commandname="CHECK" +local modulename="CHECK" # Every command that requires checks just references check.sh. # check.sh selects which checks to run by using arrays. diff --git a/lgsm/functions/check_config.sh b/lgsm/functions/check_config.sh index 7a52ce294..01da2ab24 100644 --- a/lgsm/functions/check_config.sh +++ b/lgsm/functions/check_config.sh @@ -4,8 +4,8 @@ # Website: https://linuxgsm.com # Description: Checks if the server config is missing and warns the user if needed. -local commandname="CHECK" -local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") +local modulename="CHECK" +local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" if [ ! -e "${servercfgfullpath}" ]; then if [ "${shortname}" != "hw" ]&&[ "${shortname}" != "ut3" ]&&[ "${shortname}" != "kf2" ]; then diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index e29a35a64..fff32f9ff 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Checks if required dependencies are installed for LinuxGSM. -local commandname="CHECK" +local modulename="CHECK" fn_install_mono_repo(){ if [ "${monostatus}" != "0" ]; then diff --git a/lgsm/functions/check_executable.sh b/lgsm/functions/check_executable.sh index 88a93ffc5..3643d3e0d 100644 --- a/lgsm/functions/check_executable.sh +++ b/lgsm/functions/check_executable.sh @@ -4,8 +4,8 @@ # Website: https://linuxgsm.com # Description: Checks if server executable exists. -local commandname="CHECK" -local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") +local modulename="CHECK" +local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" # Check if executable exists if [ ! -f "${executabledir}/${execname}" ]; then diff --git a/lgsm/functions/check_glibc.sh b/lgsm/functions/check_glibc.sh index 4ff80b84b..0c6e5a70d 100644 --- a/lgsm/functions/check_glibc.sh +++ b/lgsm/functions/check_glibc.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Checks if the server has the correct Glibc version. -local commandname="CHECK" +local modulename="CHECK" info_distro.sh diff --git a/lgsm/functions/check_ip.sh b/lgsm/functions/check_ip.sh index 646a6899f..727c6e125 100644 --- a/lgsm/functions/check_ip.sh +++ b/lgsm/functions/check_ip.sh @@ -5,7 +5,7 @@ # Description: Automatically identifies the server interface IP. # If multiple interfaces are detected the user will need to manually set using ip="0.0.0.0". -local commandname="CHECK" +local modulename="CHECK" if [ "${travistest}" != "1" ]; then if [ ! -f "/bin/ip" ]; then diff --git a/lgsm/functions/check_logs.sh b/lgsm/functions/check_logs.sh index 4da3cd057..883337756 100644 --- a/lgsm/functions/check_logs.sh +++ b/lgsm/functions/check_logs.sh @@ -4,8 +4,8 @@ # Website: https://linuxgsm.com # Description: Checks if log files exist. -local commandname="CHECK" -local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") +local modulename="CHECK" +local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_check_logs(){ fn_print_dots "Checking for log files" diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 4d1e81413..1e81735b4 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -5,7 +5,7 @@ # Website: https://linuxgsm.com # Description: Checks ownership & permissions of scripts, files and directories. -local commandname="CHECK" +local modulename="CHECK" fn_check_ownership(){ if [ -f "${rootdir}/${selfname}" ]; then diff --git a/lgsm/functions/check_root.sh b/lgsm/functions/check_root.sh index 4200c5dc0..8f62674f7 100644 --- a/lgsm/functions/check_root.sh +++ b/lgsm/functions/check_root.sh @@ -4,8 +4,8 @@ # Website: https://linuxgsm.com # Description: Checks if the user tried to run the script as root. -local commandname="CHECK" -local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") +local modulename="CHECK" +local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" if [ "$(whoami)" = "root" ]; then if [ "${function_selfname}" != "command_install.sh" ]; then diff --git a/lgsm/functions/check_status.sh b/lgsm/functions/check_status.sh index d814197be..67025a5e7 100644 --- a/lgsm/functions/check_status.sh +++ b/lgsm/functions/check_status.sh @@ -5,7 +5,7 @@ # Website: https://linuxgsm.com # Description: Checks the process status of the server. Either online or offline. -local commandname="CHECK" -local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") +local modulename="CHECK" +local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" status=$(tmux list-sessions -F "#{session_name}" 2>/dev/null | grep -Ecx "^${selfname}") diff --git a/lgsm/functions/check_steamcmd.sh b/lgsm/functions/check_steamcmd.sh index 77f46033d..e7cafa4a1 100644 --- a/lgsm/functions/check_steamcmd.sh +++ b/lgsm/functions/check_steamcmd.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Checks if SteamCMD is installed correctly. -local commandname="CHECK" +local modulename="CHECK" fn_install_steamcmd(){ if [ ! -d "${steamcmddir}" ]; then diff --git a/lgsm/functions/check_system_dir.sh b/lgsm/functions/check_system_dir.sh index d11b30a20..9a4863a5a 100644 --- a/lgsm/functions/check_system_dir.sh +++ b/lgsm/functions/check_system_dir.sh @@ -4,8 +4,8 @@ # Website: https://linuxgsm.com # Description: Checks if systemdir/serverfiles is accessible. -local commandname="CHECK" -local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") +local modulename="CHECK" +local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" if [ "${function_selfname}" != "command_validate.sh" ]; then checkdir="${serverfiles}" diff --git a/lgsm/functions/check_system_requirements.sh b/lgsm/functions/check_system_requirements.sh index 3c0345219..8b0b5a92b 100644 --- a/lgsm/functions/check_system_requirements.sh +++ b/lgsm/functions/check_system_requirements.sh @@ -5,8 +5,8 @@ # Website: https://linuxgsm.com # Description: Checks RAM requirements -local commandname="CHECK" -local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") +local modulename="CHECK" +local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" info_distro.sh diff --git a/lgsm/functions/check_tmuxception.sh b/lgsm/functions/check_tmuxception.sh index 7e83cf844..9abf3bb1d 100644 --- a/lgsm/functions/check_tmuxception.sh +++ b/lgsm/functions/check_tmuxception.sh @@ -5,7 +5,7 @@ # Website: https://linuxgsm.com # Description: Checks if run from tmux or screen -local commandname="CHECK" +local modulename="CHECK" fn_check_is_in_tmux(){ if [ -n "${TMUX}" ]; then diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index a7e3e337a..c1da544e2 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -5,7 +5,7 @@ # Website: https://linuxgsm.com # Description: Creates a .tar.gz file in the backup directory. -local commandname="BACKUP" +local modulename="BACKUP" local commandaction="Backup" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_console.sh b/lgsm/functions/command_console.sh index 4dfa2a4a3..796f24454 100644 --- a/lgsm/functions/command_console.sh +++ b/lgsm/functions/command_console.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Gives access to the server tmux console. -local commandname="CONSOLE" +local modulename="CONSOLE" local commandaction="Console" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_debug.sh b/lgsm/functions/command_debug.sh index dda8b1170..e50965882 100644 --- a/lgsm/functions/command_debug.sh +++ b/lgsm/functions/command_debug.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Runs the server without tmux and directly from the terminal. -local commandname="DEBUG" +local modulename="DEBUG" local commandaction="Debug" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 889febbd4..461dc78f5 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -5,7 +5,7 @@ # Website: https://linuxgsm.com # Description: Displays server information. -local commandname="DETAILS" +local modulename="DETAILS" local commandaction="Details" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_dev_debug.sh b/lgsm/functions/command_dev_debug.sh index 0cb3e48b5..61f40c808 100644 --- a/lgsm/functions/command_dev_debug.sh +++ b/lgsm/functions/command_dev_debug.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Dev only: Enables debugging log to be saved to dev-debug.log. -local commandname="DEV-DEBUG" +local modulename="DEV-DEBUG" local commandaction="Dev-Debug" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_dev_detect_deps.sh b/lgsm/functions/command_dev_detect_deps.sh index ff1e797cd..83476a7bb 100644 --- a/lgsm/functions/command_dev_detect_deps.sh +++ b/lgsm/functions/command_dev_detect_deps.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Detects dependencies the server binary requires. -local commandname="DETECT-DEPS" +local modulename="DETECT-DEPS" local commandaction="Detect-Deps" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_dev_detect_glibc.sh b/lgsm/functions/command_dev_detect_glibc.sh index e86fb05db..a8b463e2c 100644 --- a/lgsm/functions/command_dev_detect_glibc.sh +++ b/lgsm/functions/command_dev_detect_glibc.sh @@ -5,7 +5,7 @@ # Description: Automatically detects the version of GLIBC that is required. # Can check a file or directory recursively. -local commandname="DETECT-GLIBC" +local modulename="DETECT-GLIBC" local commandaction="Detect-Glibc" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_dev_detect_ldd.sh b/lgsm/functions/command_dev_detect_ldd.sh index 848489ddf..7f360fe84 100644 --- a/lgsm/functions/command_dev_detect_ldd.sh +++ b/lgsm/functions/command_dev_detect_ldd.sh @@ -5,7 +5,7 @@ # Description: Automatically detects required deps using ldd. # Can check a file or directory recursively. -local commandname="DETECT-LDD" +local modulename="DETECT-LDD" local commandaction="Detect-LDD" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_dev_query_raw.sh b/lgsm/functions/command_dev_query_raw.sh index a0efd2690..78ba80e77 100644 --- a/lgsm/functions/command_dev_query_raw.sh +++ b/lgsm/functions/command_dev_query_raw.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Raw gamedig output of the server. -local commandname="QUERY-RAW" +local modulename="QUERY-RAW" local commandaction="Query Raw" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_donate.sh b/lgsm/functions/command_donate.sh index 15c94fdf3..e979339f1 100644 --- a/lgsm/functions/command_donate.sh +++ b/lgsm/functions/command_donate.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Shows ways to donate. -local commandname="CONSOLE" +local modulename="CONSOLE" local commandaction="Console" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_fastdl.sh b/lgsm/functions/command_fastdl.sh index d862c7ed8..54ae7fe94 100644 --- a/lgsm/functions/command_fastdl.sh +++ b/lgsm/functions/command_fastdl.sh @@ -5,7 +5,7 @@ # Website: https://linuxgsm.com # Description: Creates a FastDL directory. -local commandname="FASTDL" +local modulename="FASTDL" local commandaction="FastDL" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index 4955aab86..e8d6923de 100644 --- a/lgsm/functions/command_install.sh +++ b/lgsm/functions/command_install.sh @@ -5,7 +5,7 @@ # Website: https://linuxgsm.com # Description: Overall function for the installer. -local commandname="INSTALL" +local modulename="INSTALL" local commandaction="Install" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_install_resources_mta.sh b/lgsm/functions/command_install_resources_mta.sh index c4a555800..5874818a6 100644 --- a/lgsm/functions/command_install_resources_mta.sh +++ b/lgsm/functions/command_install_resources_mta.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Installs the default resources for Multi Theft Auto. -local commandname="DEFAULT_RESOURCES" +local modulename="DEFAULT_RESOURCES" local commandaction="Default Resources" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index dd6b51de6..5cedab62d 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -5,7 +5,7 @@ # Website: https://linuxgsm.com # Description: List and installs available mods along with mods_list.sh and mods_core.sh. -local commandname="MODS" +local modulename="MODS" local commandaction="addons/mods" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 13516410d..0c869b88b 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -5,7 +5,7 @@ # Website: https://linuxgsm.com # Description: Uninstall mods along with mods_list.sh and mods_core.sh. -local commandname="MODS" +local modulename="MODS" local commandaction="Mods Remove" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index ba5708d96..04c482e5c 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -5,7 +5,7 @@ # Website: https://linuxgsm.com # Description: Updates installed mods along with mods_list.sh and mods_core.sh. -local commandname="MODS" +local modulename="MODS" local commandaction="Mods Update" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_monitor.sh b/lgsm/functions/command_monitor.sh index 0dada9464..9d9db0ad2 100644 --- a/lgsm/functions/command_monitor.sh +++ b/lgsm/functions/command_monitor.sh @@ -6,7 +6,7 @@ # Description: Monitors server by checking for running processes # then passes to gamedig and gsquery. -local commandname="MONITOR" +local modulename="MONITOR" local commandaction="Monitor" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_postdetails.sh b/lgsm/functions/command_postdetails.sh index 083bc7213..7e5d14355 100644 --- a/lgsm/functions/command_postdetails.sh +++ b/lgsm/functions/command_postdetails.sh @@ -5,7 +5,7 @@ # Website: https://linuxgsm.com # Description: Strips sensitive information out of Details output -local commandname="POSTDETAILS" +local modulename="POSTDETAILS" local commandaction="Postdetails" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_restart.sh b/lgsm/functions/command_restart.sh index 76b65b8e5..56b6d7872 100644 --- a/lgsm/functions/command_restart.sh +++ b/lgsm/functions/command_restart.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Restarts the server. -local commandname="RESTART" +local modulename="RESTART" local commandaction="Restarting" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index 4c9fd20c4..80ffdd19a 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -5,7 +5,7 @@ # Website: https://linuxgsm.com # Description: Starts the server. -local commandname="START" +local modulename="START" local commandaction="Starting" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index 03a3bff18..609425595 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -5,7 +5,7 @@ # Website: https://linuxgsm.com # Description: Stops the server. -local commandname="STOP" +local modulename="STOP" local commandaction="Stopping" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_test_alert.sh b/lgsm/functions/command_test_alert.sh index 368a9ab21..77ff0d079 100644 --- a/lgsm/functions/command_test_alert.sh +++ b/lgsm/functions/command_test_alert.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Sends a test alert. -local commandname="ALERT" +local modulename="ALERT" local commandaction="Alert" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_ts3_server_pass.sh b/lgsm/functions/command_ts3_server_pass.sh index 4bb3421dc..dfe9c5824 100644 --- a/lgsm/functions/command_ts3_server_pass.sh +++ b/lgsm/functions/command_ts3_server_pass.sh @@ -5,7 +5,7 @@ # Website: https://linuxgsm.com # Description: Changes TS3 serveradmin password. -local commandname="PASSWORD-CHANGE" +local modulename="PASSWORD-CHANGE" local commandaction="Password Change" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_update.sh b/lgsm/functions/command_update.sh index 1bc37e7bb..64cfcb2f5 100644 --- a/lgsm/functions/command_update.sh +++ b/lgsm/functions/command_update.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Handles updating of servers. -local commandname="UPDATE" +local modulename="UPDATE" local commandaction="Update" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_update_linuxgsm.sh b/lgsm/functions/command_update_linuxgsm.sh index 05069b79c..c2529f43c 100644 --- a/lgsm/functions/command_update_linuxgsm.sh +++ b/lgsm/functions/command_update_linuxgsm.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Deletes the functions dir to allow re-downloading of functions from GitHub. -local commandname="UPDATE LINUXGSM" +local modulename="UPDATE LINUXGSM" local commandaction="Update LinuxGSM" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_validate.sh b/lgsm/functions/command_validate.sh index 55a58d266..abc59473c 100644 --- a/lgsm/functions/command_validate.sh +++ b/lgsm/functions/command_validate.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Runs a server validation. -local commandname="VALIDATE" +local modulename="VALIDATE" local commandaction="Validate" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 97b268e57..55d0d5d01 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -5,7 +5,7 @@ # Website: https://linuxgsm.com # Description: Wipes server data, useful after updates for some games like Rust -local commandname="WIPE" +local modulename="WIPE" local commandaction="Wipe" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/core_dl.sh b/lgsm/functions/core_dl.sh index 24cff68bf..3874c8f24 100644 --- a/lgsm/functions/core_dl.sh +++ b/lgsm/functions/core_dl.sh @@ -17,7 +17,7 @@ # fn_fetch_file "${remote_fileurl}" "${local_filedir}" "${local_filename}" "${chmodx}" "${run}" "${forcedl}" "${md5}" # fn_fetch_file "http://example.com/file.tar.bz2" "/some/dir" "file.tar.bz2" "chmodx" "run" "forcedl" "10cd7353aa9d758a075c600a6dd193fd" -local commandname="DOWNLOAD" +local modulename="DOWNLOAD" local commandaction="Download" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/core_messages.sh b/lgsm/functions/core_messages.sh index 166cca593..6dadb63c7 100644 --- a/lgsm/functions/core_messages.sh +++ b/lgsm/functions/core_messages.sh @@ -46,8 +46,8 @@ fn_sleep_time(){ ## Feb 28 14:56:58 ut99-server: Monitor: fn_script_log(){ if [ -d "${lgsmlogdir}" ]; then - if [ -n "${commandname}" ]; then - echo -e "$(date '+%b %d %H:%M:%S.%3N') ${selfname}: ${commandname}: ${1}" >> "${lgsmlog}" + if [ -n "${modulename}" ]; then + echo -e "$(date '+%b %d %H:%M:%S.%3N') ${servicename}: ${modulename}: ${1}" >> "${lgsmlog}" else echo -e "$(date '+%b %d %H:%M:%S.%3N') ${selfname}: ${1}" >> "${lgsmlog}" fi @@ -57,8 +57,8 @@ fn_script_log(){ ## Feb 28 14:56:58 ut99-server: Monitor: PASS: fn_script_log_pass(){ if [ -d "${lgsmlogdir}" ]; then - if [ -n "${commandname}" ]; then - echo -e "$(date '+%b %d %H:%M:%S.%3N') ${selfname}: ${commandname}: PASS: ${1}" >> "${lgsmlog}" + if [ -n "${modulename}" ]; then + echo -e "$(date '+%b %d %H:%M:%S.%3N') ${servicename}: ${modulename}: PASS: ${1}" >> "${lgsmlog}" else echo -e "$(date '+%b %d %H:%M:%S.%3N') ${selfname}: PASS: ${1}" >> "${lgsmlog}" fi @@ -69,8 +69,8 @@ fn_script_log_pass(){ ## Feb 28 14:56:58 ut99-server: Monitor: FATAL: fn_script_log_fatal(){ if [ -d "${lgsmlogdir}" ]; then - if [ -n "${commandname}" ]; then - echo -e "$(date '+%b %d %H:%M:%S.%3N') ${selfname}: ${commandname}: FATAL: ${1}" >> "${lgsmlog}" + if [ -n "${modulename}" ]; then + echo -e "$(date '+%b %d %H:%M:%S.%3N') ${servicename}: ${modulename}: FATAL: ${1}" >> "${lgsmlog}" else echo -e "$(date '+%b %d %H:%M:%S.%3N') ${selfname}: FATAL: ${1}" >> "${lgsmlog}" fi @@ -81,8 +81,8 @@ fn_script_log_fatal(){ ## Feb 28 14:56:58 ut99-server: Monitor: ERROR: fn_script_log_error(){ if [ -d "${lgsmlogdir}" ]; then - if [ -n "${commandname}" ]; then - echo -e "$(date '+%b %d %H:%M:%S.%3N') ${selfname}: ${commandname}: ERROR: ${1}" >> "${lgsmlog}" + if [ -n "${modulename}" ]; then + echo -e "$(date '+%b %d %H:%M:%S.%3N') ${servicename}: ${modulename}: ERROR: ${1}" >> "${lgsmlog}" else echo -e "$(date '+%b %d %H:%M:%S.%3N') ${selfname}: ERROR: ${1}" >> "${lgsmlog}" fi @@ -93,8 +93,8 @@ fn_script_log_error(){ ## Feb 28 14:56:58 ut99-server: Monitor: WARN: fn_script_log_warn(){ if [ -d "${lgsmlogdir}" ]; then - if [ -n "${commandname}" ]; then - echo -e "$(date '+%b %d %H:%M:%S.%3N') ${selfname}: ${commandname}: WARN: ${1}" >> "${lgsmlog}" + if [ -n "${modulename}" ]; then + echo -e "$(date '+%b %d %H:%M:%S.%3N') ${servicename}: ${modulename}: WARN: ${1}" >> "${lgsmlog}" else echo -e "$(date '+%b %d %H:%M:%S.%3N') ${selfname}: WARN: ${1}" >> "${lgsmlog}" fi @@ -105,8 +105,8 @@ fn_script_log_warn(){ ## Feb 28 14:56:58 ut99-server: Monitor: INFO: fn_script_log_info(){ if [ -d "${lgsmlogdir}" ]; then - if [ -n "${commandname}" ]; then - echo -e "$(date '+%b %d %H:%M:%S.%3N') ${selfname}: ${commandname}: INFO: ${1}" >> "${lgsmlog}" + if [ -n "${modulename}" ]; then + echo -e "$(date '+%b %d %H:%M:%S.%3N') ${servicename}: ${modulename}: INFO: ${1}" >> "${lgsmlog}" else echo -e "$(date '+%b %d %H:%M:%S.%3N') ${selfname}: INFO: ${1}" >> "${lgsmlog}" fi diff --git a/lgsm/functions/fix.sh b/lgsm/functions/fix.sh index 864e69f49..7585b4348 100644 --- a/lgsm/functions/fix.sh +++ b/lgsm/functions/fix.sh @@ -5,7 +5,7 @@ # Description: Overall function for managing fixes. # Runs functions that will fix an issue. -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" # Messages that are displayed for some fixes. diff --git a/lgsm/functions/fix_arma3.sh b/lgsm/functions/fix_arma3.sh index eda6dde69..de9785e51 100644 --- a/lgsm/functions/fix_arma3.sh +++ b/lgsm/functions/fix_arma3.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves an issue with ARMA3. -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/fix_csgo.sh b/lgsm/functions/fix_csgo.sh index 5e9981e38..0ea098eed 100644 --- a/lgsm/functions/fix_csgo.sh +++ b/lgsm/functions/fix_csgo.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves various issues with CS:GO. -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/fix_dst.sh b/lgsm/functions/fix_dst.sh index 3b62be24b..46c17756b 100644 --- a/lgsm/functions/fix_dst.sh +++ b/lgsm/functions/fix_dst.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves various issues with Don't Starve Together. -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/fix_ges.sh b/lgsm/functions/fix_ges.sh index 35e1411e3..bbd08c645 100644 --- a/lgsm/functions/fix_ges.sh +++ b/lgsm/functions/fix_ges.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves various issues with GoldenEye: Source. -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" # Fixes: MALLOC_CHECK_ needing to be set to 0. diff --git a/lgsm/functions/fix_ins.sh b/lgsm/functions/fix_ins.sh index 354401ea5..e26d501da 100644 --- a/lgsm/functions/fix_ins.sh +++ b/lgsm/functions/fix_ins.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves various issues with Insurgency. -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" # Fixes: ./srcds_linux: error while loading shared libraries: libtier0.so: cannot open shared object file: No such file or directory. diff --git a/lgsm/functions/fix_kf.sh b/lgsm/functions/fix_kf.sh index 0661775d4..0ce05184b 100644 --- a/lgsm/functions/fix_kf.sh +++ b/lgsm/functions/fix_kf.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves various issues with Killing Floor. -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/fix_kf2.sh b/lgsm/functions/fix_kf2.sh index 2909a535f..7cc1be568 100644 --- a/lgsm/functions/fix_kf2.sh +++ b/lgsm/functions/fix_kf2.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves various issues with Killing Floor 2. -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/fix_mcb.sh b/lgsm/functions/fix_mcb.sh index d9cb8073a..e5a919dbc 100644 --- a/lgsm/functions/fix_mcb.sh +++ b/lgsm/functions/fix_mcb.sh @@ -4,8 +4,8 @@ # Website: https://linuxgsm.com # Description: Resolves possible startup issue with Minecraft Bedrock -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" # official docs state that the server should be started with: LD_LIBRARY_PATH=. ./bedrock_server -export LD_LIBRARY_PATH="${serverfiles}:$LD_LIBRARY_PATH" \ No newline at end of file +export LD_LIBRARY_PATH="${serverfiles}:$LD_LIBRARY_PATH" diff --git a/lgsm/functions/fix_mta.sh b/lgsm/functions/fix_mta.sh index c8b2ff8b0..af4d5002f 100644 --- a/lgsm/functions/fix_mta.sh +++ b/lgsm/functions/fix_mta.sh @@ -4,7 +4,7 @@ # Contributor: ChaosMTA # Website: https://linuxgsm.com # Description: Installs the libmysqlclient for database functions on the server -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/fix_onset.sh b/lgsm/functions/fix_onset.sh index 9fbeddff3..24ab62132 100644 --- a/lgsm/functions/fix_onset.sh +++ b/lgsm/functions/fix_onset.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves various issues with Onset -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/fix_ro.sh b/lgsm/functions/fix_ro.sh index 1e1da31bc..e7ced52ad 100644 --- a/lgsm/functions/fix_ro.sh +++ b/lgsm/functions/fix_ro.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves various issues with Red Orchestra. -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/fix_rust.sh b/lgsm/functions/fix_rust.sh index 854020873..bb70724db 100644 --- a/lgsm/functions/fix_rust.sh +++ b/lgsm/functions/fix_rust.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves startup issue with Rust -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" # Fixes: [Raknet] Server Shutting Down (Shutting Down). diff --git a/lgsm/functions/fix_rw.sh b/lgsm/functions/fix_rw.sh index da5fd8286..7cf5a6b12 100644 --- a/lgsm/functions/fix_rw.sh +++ b/lgsm/functions/fix_rw.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves startup issue with Rising World -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" export LD_LIBRARY_PATH="${serverfiles}/linux64:${serverfiles}:$LD_LIBRARY_PATH" diff --git a/lgsm/functions/fix_sdtd.sh b/lgsm/functions/fix_sdtd.sh index ca0dc09a1..b04b1fca7 100644 --- a/lgsm/functions/fix_sdtd.sh +++ b/lgsm/functions/fix_sdtd.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves startup issue with 7 Days to Die -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" export LD_LIBRARY_PATH="${serverfiles}" diff --git a/lgsm/functions/fix_sfc.sh b/lgsm/functions/fix_sfc.sh index a40250083..ce42211fb 100644 --- a/lgsm/functions/fix_sfc.sh +++ b/lgsm/functions/fix_sfc.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves various issues with Source Forts Classic. -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/fix_sof2.sh b/lgsm/functions/fix_sof2.sh index 2715f7f8c..3ad769767 100644 --- a/lgsm/functions/fix_sof2.sh +++ b/lgsm/functions/fix_sof2.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves startup issue with Soldier of Fortune 2 -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" # Fixes: error while loading shared libraries: libcxa.so.1 diff --git a/lgsm/functions/fix_ss3.sh b/lgsm/functions/fix_ss3.sh index c7277ea9d..3baf5d866 100644 --- a/lgsm/functions/fix_ss3.sh +++ b/lgsm/functions/fix_ss3.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves various issues with Serious Sam 3. -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/fix_steamcmd.sh b/lgsm/functions/fix_steamcmd.sh index 37bd4f61f..62a3c9fed 100644 --- a/lgsm/functions/fix_steamcmd.sh +++ b/lgsm/functions/fix_steamcmd.sh @@ -4,9 +4,9 @@ # Website: https://linuxgsm.com # Description: Resolves various issues related to SteamCMD. -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" -local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") +function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" # Fixes: [S_API FAIL] SteamAPI_Init() failed; unable to locate a running instance of Steam,or a local steamclient.so. if [ ! -f "${HOME}/.steam/sdk32/steamclient.so" ]; then diff --git a/lgsm/functions/fix_terraria.sh b/lgsm/functions/fix_terraria.sh index e3a595029..8d9af0947 100644 --- a/lgsm/functions/fix_terraria.sh +++ b/lgsm/functions/fix_terraria.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves an issue with Terraria. -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/fix_tf2.sh b/lgsm/functions/fix_tf2.sh index 5c8cdf6c4..b0e9ce1ce 100644 --- a/lgsm/functions/fix_tf2.sh +++ b/lgsm/functions/fix_tf2.sh @@ -4,7 +4,7 @@ # Website: https://github.com/vectorsigma # Description: Resolves various issues with Team Fortress 2. -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/fix_ts3.sh b/lgsm/functions/fix_ts3.sh index 3e3599066..2a921d91d 100644 --- a/lgsm/functions/fix_ts3.sh +++ b/lgsm/functions/fix_ts3.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves various issues with Teamspeak 3. -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/fix_unt.sh b/lgsm/functions/fix_unt.sh index 3c9c9335a..f040b77c6 100644 --- a/lgsm/functions/fix_unt.sh +++ b/lgsm/functions/fix_unt.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves startup issue with Unturned -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" # steamclient.so: cannot open shared object file: No such file or directory diff --git a/lgsm/functions/fix_ut.sh b/lgsm/functions/fix_ut.sh index e479e9442..7c8c12458 100644 --- a/lgsm/functions/fix_ut.sh +++ b/lgsm/functions/fix_ut.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves various issues with Unreal Tournament. -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/fix_ut2k4.sh b/lgsm/functions/fix_ut2k4.sh index 45ef3dc78..70ed0465d 100644 --- a/lgsm/functions/fix_ut2k4.sh +++ b/lgsm/functions/fix_ut2k4.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves various issues with Unreal Tournament 2004. -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/fix_ut3.sh b/lgsm/functions/fix_ut3.sh index 31eb85281..3b5537d67 100644 --- a/lgsm/functions/fix_ut3.sh +++ b/lgsm/functions/fix_ut3.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves various issues with configs in Unreal Tournament 3. -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/fix_zmr.sh b/lgsm/functions/fix_zmr.sh index 5ed1d8beb..25deec45f 100644 --- a/lgsm/functions/fix_zmr.sh +++ b/lgsm/functions/fix_zmr.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Resolves various issues with Zombie Master: Reborn. -local commandname="FIX" +local modulename="FIX" local commandaction="Fix" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/install_complete.sh b/lgsm/functions/install_complete.sh index a747438a2..70f4e5345 100644 --- a/lgsm/functions/install_complete.sh +++ b/lgsm/functions/install_complete.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Prints installation completion message and hints. -local commandname="INSTALL" +local modulename="INSTALL" local commandaction="Install" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 92451b5d9..77e9433ea 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Creates default server configs. -local commandname="INSTALL" +local modulename="INSTALL" local commandaction="Install" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/install_dst_token.sh b/lgsm/functions/install_dst_token.sh index 869adde71..247280a56 100644 --- a/lgsm/functions/install_dst_token.sh +++ b/lgsm/functions/install_dst_token.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Configures Don't Starve Together cluster with given token. -local commandname="INSTALL" +local modulename="INSTALL" local commandaction="Install" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/install_factorio_save.sh b/lgsm/functions/install_factorio_save.sh index fd9e634a1..5abdc4069 100644 --- a/lgsm/functions/install_factorio_save.sh +++ b/lgsm/functions/install_factorio_save.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Creates the initial save file for Factorio -local commandname="INSTALL" +local modulename="INSTALL" local commandaction="Install" echo -e "" diff --git a/lgsm/functions/install_gslt.sh b/lgsm/functions/install_gslt.sh index ddb0ca291..3162f669c 100644 --- a/lgsm/functions/install_gslt.sh +++ b/lgsm/functions/install_gslt.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Configures GSLT. -local commandname="INSTALL" +local modulename="INSTALL" local commandaction="Install" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/install_header.sh b/lgsm/functions/install_header.sh index 1a0c9dc29..bd2e4524b 100644 --- a/lgsm/functions/install_header.sh +++ b/lgsm/functions/install_header.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Prints installation header. -local commandname="INSTALL" +local modulename="INSTALL" local commandaction="Install" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/install_logs.sh b/lgsm/functions/install_logs.sh index 1a00bac39..e33b2a6af 100644 --- a/lgsm/functions/install_logs.sh +++ b/lgsm/functions/install_logs.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Creates log directories. -local commandname="INSTALL" +local modulename="INSTALL" local commandaction="Install" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/install_mta_resources.sh b/lgsm/functions/install_mta_resources.sh index 6d7f14bd1..fb7bb012b 100644 --- a/lgsm/functions/install_mta_resources.sh +++ b/lgsm/functions/install_mta_resources.sh @@ -5,7 +5,7 @@ # Website: https://linuxgsm.com # Description: Installs the libmysqlclient for database functions on the server and optionally installs default resources required to run the server -local commandname="INSTALL" +local modulename="INSTALL" local commandaction="Install" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/install_retry.sh b/lgsm/functions/install_retry.sh index 2698b150c..15cbf938e 100644 --- a/lgsm/functions/install_retry.sh +++ b/lgsm/functions/install_retry.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Asks for installation retry after failure. -local commandname="INSTALL" +local modulename="INSTALL" local commandaction="Install" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/install_server_dir.sh b/lgsm/functions/install_server_dir.sh index 894ae060d..006264a06 100644 --- a/lgsm/functions/install_server_dir.sh +++ b/lgsm/functions/install_server_dir.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Creates the server directory. -local commandname="INSTALL" +local modulename="INSTALL" local commandaction="Install" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index b9069db53..f0ce44d7c 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Installs server files. -local commandname="INSTALL" +local modulename="INSTALL" local commandaction="Install" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/install_squad_license.sh b/lgsm/functions/install_squad_license.sh index 0f1528e07..cd8ba87b6 100644 --- a/lgsm/functions/install_squad_license.sh +++ b/lgsm/functions/install_squad_license.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Configures the Squad server's license. -local commandname="INSTALL" +local modulename="INSTALL" local commandaction="Install" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/install_stats.sh b/lgsm/functions/install_stats.sh index 35a6f608f..4a00edd49 100644 --- a/lgsm/functions/install_stats.sh +++ b/lgsm/functions/install_stats.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Enabled LinuxGSM Stats. -local commandname="INSTALL" +local modulename="INSTALL" local commandaction="Install" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/install_steamcmd.sh b/lgsm/functions/install_steamcmd.sh index e56c9b8aa..9a2415079 100644 --- a/lgsm/functions/install_steamcmd.sh +++ b/lgsm/functions/install_steamcmd.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Downloads SteamCMD on install. -local commandname="INSTALL" +local modulename="INSTALL" local commandaction="Install" echo -e "" diff --git a/lgsm/functions/install_ts3db.sh b/lgsm/functions/install_ts3db.sh index 09e16324e..cf8831dd3 100644 --- a/lgsm/functions/install_ts3db.sh +++ b/lgsm/functions/install_ts3db.sh @@ -5,7 +5,7 @@ # Website: https://linuxgsm.com # Description: Installs the database server MariaDB for TeamSpeak 3. -local commandname="INSTALL" +local modulename="INSTALL" local commandaction="Install" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/install_ut2k4_key.sh b/lgsm/functions/install_ut2k4_key.sh index c8d18692e..c5eff82e6 100644 --- a/lgsm/functions/install_ut2k4_key.sh +++ b/lgsm/functions/install_ut2k4_key.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Activates ut2k4 server with given key. -local commandname="INSTALL" +local modulename="INSTALL" local commandaction="Install" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/logs.sh b/lgsm/functions/logs.sh index 04f5010e9..199295d46 100644 --- a/lgsm/functions/logs.sh +++ b/lgsm/functions/logs.sh @@ -5,7 +5,7 @@ # Website: https://linuxgsm.com # Description: Acts as a log rotator, removing old logs. -local commandname="LOGS" +local modulename="LOGS" local commandaction="Log-Manager" # Check if logfile variable and file exist, create logfile if it doesn't exist. diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 942012e46..083b91818 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -5,7 +5,7 @@ # Website: https://linuxgsm.com # Description: Core functions for mods list/install/update/remove -local commandname="MODS" +local modulename="MODS" local commandaction="Mods" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 67a57463c..8037f1eed 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -8,7 +8,7 @@ # Usage: Then add this array to the mods_global_array. # Usage: If needed, you can scrape the download URL first. -local commandname="MODS" +local modulename="MODS" local commandaction="List Mods" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/update_factorio.sh b/lgsm/functions/update_factorio.sh index 584fec4ae..e5a3a4397 100644 --- a/lgsm/functions/update_factorio.sh +++ b/lgsm/functions/update_factorio.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Handles updating of Factorio servers. -local commandname="UPDATE" +local modulename="UPDATE" local commandaction="Update" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/update_minecraft.sh b/lgsm/functions/update_minecraft.sh index 89cb7e024..706aa7832 100644 --- a/lgsm/functions/update_minecraft.sh +++ b/lgsm/functions/update_minecraft.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Handles updating of Minecraft servers. -local commandname="UPDATE" +local modulename="UPDATE" local commandaction="Update" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/update_minecraft_bedrock.sh b/lgsm/functions/update_minecraft_bedrock.sh index bf4b6f5d1..00989d52c 100644 --- a/lgsm/functions/update_minecraft_bedrock.sh +++ b/lgsm/functions/update_minecraft_bedrock.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Handles updating of Minecraft Bedrock servers. -local commandname="UPDATE" +local modulename="UPDATE" local commandaction="Update" local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" diff --git a/lgsm/functions/update_mta.sh b/lgsm/functions/update_mta.sh index 879ca1409..373b3e823 100644 --- a/lgsm/functions/update_mta.sh +++ b/lgsm/functions/update_mta.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Handles updating of Multi Theft Auto servers. -local commandname="UPDATE" +local modulename="UPDATE" local commandaction="Update" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/update_mumble.sh b/lgsm/functions/update_mumble.sh index 0f33c1900..c17bd8036 100644 --- a/lgsm/functions/update_mumble.sh +++ b/lgsm/functions/update_mumble.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Handles updating of Mumble servers. -local commandname="UPDATE" +local modulename="UPDATE" local commandaction="Update" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/update_steamcmd.sh b/lgsm/functions/update_steamcmd.sh index fcb289485..c55237c2b 100644 --- a/lgsm/functions/update_steamcmd.sh +++ b/lgsm/functions/update_steamcmd.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Handles updating using SteamCMD. -local commandname="UPDATE" +local modulename="UPDATE" local commandaction="Update" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")") diff --git a/lgsm/functions/update_ts3.sh b/lgsm/functions/update_ts3.sh index 798137311..893d34205 100644 --- a/lgsm/functions/update_ts3.sh +++ b/lgsm/functions/update_ts3.sh @@ -4,7 +4,7 @@ # Website: https://linuxgsm.com # Description: Handles updating of Teamspeak 3 servers. -local commandname="UPDATE" +local modulename="UPDATE" local commandaction="Update" local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")")