Browse Source

fix(log): allow logs to correctly display primary command (#2969)

pull/2990/head
Daniel Gibbs 5 years ago
committed by GitHub
parent
commit
d327e93880
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lgsm/functions/alert.sh
  2. 2
      lgsm/functions/check_last_update.sh
  3. 2
      lgsm/functions/check_version.sh
  4. 14
      lgsm/functions/command_backup.sh
  5. 13
      lgsm/functions/command_console.sh
  6. 12
      lgsm/functions/command_debug.sh
  7. 10
      lgsm/functions/command_details.sh
  8. 10
      lgsm/functions/command_dev_clear_functions.sh
  9. 10
      lgsm/functions/command_dev_debug.sh
  10. 10
      lgsm/functions/command_dev_detect_deps.sh
  11. 10
      lgsm/functions/command_dev_detect_glibc.sh
  12. 10
      lgsm/functions/command_dev_detect_ldd.sh
  13. 10
      lgsm/functions/command_dev_query_raw.sh
  14. 10
      lgsm/functions/command_donate.sh
  15. 10
      lgsm/functions/command_fastdl.sh
  16. 12
      lgsm/functions/command_install.sh
  17. 10
      lgsm/functions/command_install_resources_mta.sh
  18. 10
      lgsm/functions/command_mods_install.sh
  19. 12
      lgsm/functions/command_mods_remove.sh
  20. 10
      lgsm/functions/command_mods_update.sh
  21. 12
      lgsm/functions/command_monitor.sh
  22. 10
      lgsm/functions/command_postdetails.sh
  23. 12
      lgsm/functions/command_restart.sh
  24. 12
      lgsm/functions/command_start.sh
  25. 10
      lgsm/functions/command_stop.sh
  26. 10
      lgsm/functions/command_test_alert.sh
  27. 18
      lgsm/functions/command_ts3_server_pass.sh
  28. 10
      lgsm/functions/command_update.sh
  29. 10
      lgsm/functions/command_update_linuxgsm.sh
  30. 14
      lgsm/functions/command_validate.sh
  31. 14
      lgsm/functions/command_wipe.sh
  32. 10
      lgsm/functions/compress_unreal2_maps.sh
  33. 10
      lgsm/functions/compress_ut99_maps.sh
  34. 17
      lgsm/functions/core_messages.sh
  35. 8
      lgsm/functions/fix_kf.sh
  36. 4
      lgsm/functions/fix_kf2.sh
  37. 8
      lgsm/functions/fix_ro.sh
  38. 8
      lgsm/functions/fix_ut2k4.sh
  39. 4
      lgsm/functions/fix_ut3.sh
  40. 4
      lgsm/functions/fix_wurm.sh
  41. 2
      lgsm/functions/install_modules.sh
  42. 8
      lgsm/functions/update_factorio.sh
  43. 10
      lgsm/functions/update_minecraft.sh
  44. 12
      lgsm/functions/update_minecraft_bedrock.sh
  45. 8
      lgsm/functions/update_mta.sh
  46. 6
      lgsm/functions/update_mumble.sh
  47. 8
      lgsm/functions/update_steamcmd.sh
  48. 8
      lgsm/functions/update_ts3.sh

2
lgsm/functions/alert.sh

@ -99,7 +99,7 @@ fn_alert_log
if [ "${postalert}" == "on" ]&&[ -n "${postalert}" ]; then if [ "${postalert}" == "on" ]&&[ -n "${postalert}" ]; then
exitbypass=1 exitbypass=1
command_postdetails.sh command_postdetails.sh
fn_commandname fn_firstcommand_reset
elif [ "${postalert}" != "on" ]&&[ "${commandname}" == "TEST-ALERT" ]; then elif [ "${postalert}" != "on" ]&&[ "${commandname}" == "TEST-ALERT" ]; then
fn_print_warn_nl "More Info not enabled" fn_print_warn_nl "More Info not enabled"
fn_script_log_warn "More Info alerts not enabled" fn_script_log_warn "More Info alerts not enabled"

2
lgsm/functions/check_last_update.sh

@ -20,6 +20,6 @@ if [ -f "${lockdir}/lastupdate.lock" ]&&[ "${status}" != "0" ]; then
fn_print_info "${selfname} has not been restarted since last update" fn_print_info "${selfname} has not been restarted since last update"
fn_script_log_info "${selfname} has not been restarted since last update" fn_script_log_info "${selfname} has not been restarted since last update"
command_restart.sh command_restart.sh
fn_commandname fn_firstcommand_reset
fi fi
fi fi

2
lgsm/functions/check_version.sh

@ -16,5 +16,5 @@ if [ -n "${modulesversion}" ]&&[ -n "${version}" ]&&[ "${version}" != "${modules
fn_sleep_time fn_sleep_time
fn_script_log_error "LinuxGSM Version mismatch: ${selfname}: ${version}: modules: ${modulesversion}" fn_script_log_error "LinuxGSM Version mismatch: ${selfname}: ${version}: modules: ${modulesversion}"
command_update_linuxgsm.sh command_update_linuxgsm.sh
fn_commandname fn_firstcommand_reset
fi fi

14
lgsm/functions/command_backup.sh

@ -5,12 +5,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Creates a .tar.gz file in the backup directory. # Description: Creates a .tar.gz file in the backup directory.
fn_commandname(){ commandname="BACKUP"
commandname="BACKUP" commandaction="Backing up"
commandaction="Backing up" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
check.sh check.sh
@ -77,7 +75,7 @@ fn_backup_stop_server(){
startserver="1" startserver="1"
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
fi fi
} }
@ -252,7 +250,7 @@ fn_backup_start_server(){
if [ -n "${startserver}" ]; then if [ -n "${startserver}" ]; then
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
fi fi
} }

13
lgsm/functions/command_console.sh

@ -4,12 +4,11 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Gives access to the server tmux console. # Description: Gives access to the server tmux console.
fn_commandname(){
commandname="CONSOLE" commandname="CONSOLE"
commandaction="Access console" commandaction="Access console"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
} fn_firstcommand_set
fn_commandname
check.sh check.sh
fn_print_header fn_print_header
@ -38,7 +37,7 @@ else
if fn_prompt_yn "Do you want to start the server?" Y; then if fn_prompt_yn "Do you want to start the server?" Y; then
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
fi fi
fi fi

12
lgsm/functions/command_debug.sh

@ -4,12 +4,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Runs the server without tmux and directly from the terminal. # Description: Runs the server without tmux and directly from the terminal.
fn_commandname(){ commandname="DEBUG"
commandname="DEBUG" commandaction="Debuging"
commandaction="Debuging" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
# Trap to remove lockfile on quit. # Trap to remove lockfile on quit.
fn_lockfile_trap(){ fn_lockfile_trap(){
@ -91,7 +89,7 @@ fn_print_info_nl "Stopping any running servers"
fn_script_log_info "Stopping any running servers" fn_script_log_info "Stopping any running servers"
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
unset exitbypass unset exitbypass
fn_print_dots "Starting debug" fn_print_dots "Starting debug"
fn_script_log_info "Starting debug" fn_script_log_info "Starting debug"

10
lgsm/functions/command_details.sh

@ -5,12 +5,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Displays server information. # Description: Displays server information.
fn_commandname(){ commandname="DETAILS"
commandname="DETAILS" commandaction="Viewing details"
commandaction="Viewing details" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
# Run checks and gathers details to display. # Run checks and gathers details to display.
check.sh check.sh

10
lgsm/functions/command_dev_clear_functions.sh

@ -4,12 +4,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Deletes the contents of the functions dir. # Description: Deletes the contents of the functions dir.
fn_commandname(){ commandname="DEV-CLEAR-MODULES"
commandname="DEV-CLEAR-MODULES" commandaction="Clearing modules"
commandaction="Clearing modules" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
echo -e "=================================" echo -e "================================="
echo -e "Clear Functions" echo -e "Clear Functions"

10
lgsm/functions/command_dev_debug.sh

@ -4,12 +4,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Dev only: Enables debugging log to be saved to dev-debug.log. # Description: Dev only: Enables debugging log to be saved to dev-debug.log.
fn_commandname(){ commandname="DEV-DEBUG"
commandname="DEV-DEBUG" commandaction="Developer debug"
commandaction="Developer debug" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_reset
}
fn_commandname
if [ -f "${rootdir}/.dev-debug" ]; then if [ -f "${rootdir}/.dev-debug" ]; then
rm "${rootdir:?}/.dev-debug" rm "${rootdir:?}/.dev-debug"

10
lgsm/functions/command_dev_detect_deps.sh

@ -4,12 +4,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Detects dependencies the server binary requires. # Description: Detects dependencies the server binary requires.
fn_commandname(){ commandname="DEV-DETECT-DEPS"
commandname="DEV-DETECT-DEPS" commandaction="Developer detect deps"
commandaction="Developer detect deps" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
echo -e "=================================" echo -e "================================="
echo -e "Dependencies Checker" echo -e "Dependencies Checker"

10
lgsm/functions/command_dev_detect_glibc.sh

@ -5,12 +5,10 @@
# Description: Automatically detects the version of GLIBC that is required. # Description: Automatically detects the version of GLIBC that is required.
# Can check a file or directory recursively. # Can check a file or directory recursively.
fn_commandname(){ commandname="DEV-DETECT-GLIBC"
commandname="DEV-DETECT-GLIBC" commandaction="Developer detect glibc"
commandaction="Developer detect glibc" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
echo -e "=================================" echo -e "================================="
echo -e "glibc Requirements Checker" echo -e "glibc Requirements Checker"

10
lgsm/functions/command_dev_detect_ldd.sh

@ -5,12 +5,10 @@
# Description: Automatically detects required deps using ldd. # Description: Automatically detects required deps using ldd.
# Can check a file or directory recursively. # Can check a file or directory recursively.
fn_commandname(){ commandname="DEV-DETECT-LDD"
commandname="DEV-DETECT-LDD" commandaction="Developer detect ldd"
commandaction="Developer detect ldd" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
echo -e "=================================" echo -e "================================="
echo -e "Shared Object dependencies Checker" echo -e "Shared Object dependencies Checker"

10
lgsm/functions/command_dev_query_raw.sh

@ -4,12 +4,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Raw gamedig output of the server. # Description: Raw gamedig output of the server.
fn_commandname(){ commandname="DEV-QUERY-RAW"
commandname="DEV-QUERY-RAW" commandaction="Developer query raw"
commandaction="Developer query raw" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
check.sh check.sh
info_config.sh info_config.sh

10
lgsm/functions/command_donate.sh

@ -4,12 +4,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Shows ways to donate. # Description: Shows ways to donate.
fn_commandname(){ commandname="DONATE"
commandname="DONATE" commandaction="Donate"
commandaction="Donate" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
fn_print_ascii_logo fn_print_ascii_logo
echo -e "${lightyellow}Support LinuxGSM${default}" echo -e "${lightyellow}Support LinuxGSM${default}"

10
lgsm/functions/command_fastdl.sh

@ -5,12 +5,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Creates a FastDL directory. # Description: Creates a FastDL directory.
fn_commandname(){ commandname="FASTDL"
commandname="FASTDL" commandaction="Fastdl"
commandaction="Fastdl" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
check.sh check.sh

12
lgsm/functions/command_install.sh

@ -5,12 +5,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Overall function for the installer. # Description: Overall function for the installer.
fn_commandname(){ commandname="INSTALL"
commandname="INSTALL" commandaction="Installing"
commandaction="Installing" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
check.sh check.sh
if [ "$(whoami)" = "root" ]; then if [ "$(whoami)" = "root" ]; then
@ -45,7 +43,7 @@ else
install_ts3db.sh install_ts3db.sh
elif [ "${shortname}" == "mta" ]; then elif [ "${shortname}" == "mta" ]; then
command_install_resources_mta.sh command_install_resources_mta.sh
fn_commandname fn_firstcommand_reset
fi fi
fix.sh fix.sh

10
lgsm/functions/command_install_resources_mta.sh

@ -4,12 +4,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Installs the default resources for Multi Theft Auto. # Description: Installs the default resources for Multi Theft Auto.
fn_commandname(){ commandname="DEFAULT-RESOURCES"
commandname="DEFAULT-RESOURCES" commandaction="Default Resources"
commandaction="Default Resources" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
fn_install_resources(){ fn_install_resources(){
echo -e "" echo -e ""

10
lgsm/functions/command_mods_install.sh

@ -5,12 +5,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: List and installs available mods along with mods_list.sh and mods_core.sh. # Description: List and installs available mods along with mods_list.sh and mods_core.sh.
fn_commandname(){ commandname="MODS-INSTALL"
commandname="MODS-INSTALL" commandaction="Installing mods"
commandaction="Installing mods" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
check.sh check.sh
mods_core.sh mods_core.sh

12
lgsm/functions/command_mods_remove.sh

@ -5,12 +5,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Uninstall mods along with mods_list.sh and mods_core.sh. # Description: Uninstall mods along with mods_list.sh and mods_core.sh.
fn_commandname(){ commandname="MODS-REMOVE"
commandname="MODS-REMOVE" commandaction="Removing mods"
commandaction="Removing mods" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
check.sh check.sh
mods_core.sh mods_core.sh
@ -126,7 +124,7 @@ if [ "${engine}" == "unity3d" ]&&[[ "${modprettyname}" == *"Oxide"* ]]; then
fn_script_log "Validating to restore original ${gamename} files replaced by Oxide" fn_script_log "Validating to restore original ${gamename} files replaced by Oxide"
exitbypass="1" exitbypass="1"
command_validate.sh command_validate.sh
fn_commandname fn_firstcommand_reset
unset exitbypass unset exitbypass
fi fi
echo -e "${modprettyname} removed" echo -e "${modprettyname} removed"

10
lgsm/functions/command_mods_update.sh

@ -5,12 +5,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Updates installed mods along with mods_list.sh and mods_core.sh. # Description: Updates installed mods along with mods_list.sh and mods_core.sh.
fn_commandname(){ commandname="MODS-UPDATE"
commandname="MODS-UPDATE" commandaction="Updating mods"
commandaction="Updating mods" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
check.sh check.sh
mods_core.sh mods_core.sh

12
lgsm/functions/command_monitor.sh

@ -6,12 +6,10 @@
# Description: Monitors server by checking for running processes # Description: Monitors server by checking for running processes
# then passes to gamedig and gsquery. # then passes to gamedig and gsquery.
fn_commandname(){ commandname="MONITOR"
commandname="MONITOR" commandaction="Monitoring"
commandaction="Monitoring" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
fn_monitor_check_lockfile(){ fn_monitor_check_lockfile(){
# Monitor does not run it lockfile is not found. # Monitor does not run it lockfile is not found.
@ -173,7 +171,7 @@ for queryattempt in {1..5}; do
alert="restartquery" alert="restartquery"
alert.sh alert.sh
command_restart.sh command_restart.sh
fn_commandname fn_firstcommand_reset
core_exit.sh core_exit.sh
fi fi
elif [ "${querymethod}" == "gamedig" ]; then elif [ "${querymethod}" == "gamedig" ]; then

10
lgsm/functions/command_postdetails.sh

@ -5,12 +5,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Strips sensitive information out of Details output # Description: Strips sensitive information out of Details output
fn_commandname(){ commandname="POST-DETAILS"
commandname="POST-DETAILS" commandaction="Posting details"
commandaction="Posting details" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
# Set posttarget to the appropriately-defined post destination. # Set posttarget to the appropriately-defined post destination.

12
lgsm/functions/command_restart.sh

@ -4,16 +4,14 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Restarts the server. # Description: Restarts the server.
fn_commandname(){ commandname="MODS-INSTALL"
commandname="MODS-INSTALL" commandaction="Restarting"
commandaction="Restarting" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
info_config.sh info_config.sh
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
core_exit.sh core_exit.sh

12
lgsm/functions/command_start.sh

@ -5,12 +5,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Starts the server. # Description: Starts the server.
fn_commandname(){ commandname="START"
commandname="START" commandaction="Starting"
commandaction="Starting" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
fn_start_teamspeak3(){ fn_start_teamspeak3(){
if [ ! -f "${servercfgfullpath}" ]; then if [ ! -f "${servercfgfullpath}" ]; then
@ -191,7 +189,7 @@ if [ "${updateonstart}" == "yes" ]||[ "${updateonstart}" == "1" ]||[ "${updateon
exitbypass=1 exitbypass=1
unset updateonstart unset updateonstart
command_update.sh command_update.sh
fn_commandname fn_firstcommand_reset
fi fi
fn_print_dots "${servername}" fn_print_dots "${servername}"

10
lgsm/functions/command_stop.sh

@ -5,12 +5,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Stops the server. # Description: Stops the server.
fn_commandname(){ commandname="STOP"
commandname="STOP" commandaction="Stopping"
commandaction="Stopping" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
# Attempts graceful shutdown by sending 'CTRL+c'. # Attempts graceful shutdown by sending 'CTRL+c'.
fn_stop_graceful_ctrlc(){ fn_stop_graceful_ctrlc(){

10
lgsm/functions/command_test_alert.sh

@ -4,12 +4,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Sends a test alert. # Description: Sends a test alert.
fn_commandname(){ commandname="TEST-ALERT"
commandname="TEST-ALERT" commandaction="Sending Alert"
commandaction="Sending Alert" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
fn_print_dots "${servername}" fn_print_dots "${servername}"
check.sh check.sh

18
lgsm/functions/command_ts3_server_pass.sh

@ -5,12 +5,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Changes TS3 serveradmin password. # Description: Changes TS3 serveradmin password.
fn_commandname(){ commandname="CHANGE-PASSWORD"
commandname="CHANGE-PASSWORD" commandaction="Changing password"
commandaction="Changing password" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
fn_serveradmin_password_prompt(){ fn_serveradmin_password_prompt(){
fn_print_header fn_print_header
@ -31,7 +29,7 @@ fn_serveradmin_password_set(){
ts3serverpass="1" ts3serverpass="1"
exitbypass="1" exitbypass="1"
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
fn_print_ok_nl "New password applied" fn_print_ok_nl "New password applied"
fn_script_log_pass "New ServerAdmin password applied" fn_script_log_pass "New ServerAdmin password applied"
} }
@ -43,16 +41,16 @@ if [ "${status}" != "0" ]; then
# Stop any running server. # Stop any running server.
exitbypass="1" exitbypass="1"
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
fn_serveradmin_password_set fn_serveradmin_password_set
parms="serveradmin_password=\"${newpassword}\" inifile=\"${servercfgfullpath}\" > /dev/null 2>&1" parms="serveradmin_password=\"${newpassword}\" inifile=\"${servercfgfullpath}\" > /dev/null 2>&1"
ts3serverpass="0" ts3serverpass="0"
command_restart.sh command_restart.sh
fn_commandname fn_firstcommand_reset
else else
fn_serveradmin_password_set fn_serveradmin_password_set
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
fi fi
core_exit.sh core_exit.sh

10
lgsm/functions/command_update.sh

@ -4,12 +4,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Handles updating of servers. # Description: Handles updating of servers.
fn_commandname(){ commandname="UPDATE"
commandname="UPDATE" commandaction="Updating"
commandaction="Updating" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
fn_print_dots "" fn_print_dots ""
check.sh check.sh

10
lgsm/functions/command_update_linuxgsm.sh

@ -4,12 +4,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Deletes the functions dir to allow re-downloading of functions from GitHub. # Description: Deletes the functions dir to allow re-downloading of functions from GitHub.
fn_commandname(){ commandname="UPDATE-LGSM"
commandname="UPDATE-LGSM" commandaction="Updating LinuxGSM"
commandaction="Updating LinuxGSM" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
check.sh check.sh

14
lgsm/functions/command_validate.sh

@ -4,12 +4,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Runs a server validation. # Description: Runs a server validation.
fn_commandname(){ commandname="VALIDATE"
commandname="VALIDATE" commandaction="Validating"
commandaction="Validating" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
fn_validate(){ fn_validate(){
fn_print_warn "Validate might overwrite some customised files" fn_print_warn "Validate might overwrite some customised files"
@ -38,11 +36,11 @@ if [ "${status}" != "0" ]; then
fn_print_restart_warning fn_print_restart_warning
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
fn_validate fn_validate
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
else else
fn_validate fn_validate
fi fi

14
lgsm/functions/command_wipe.sh

@ -5,12 +5,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Wipes server data, useful after updates for some games like Rust # Description: Wipes server data, useful after updates for some games like Rust
fn_commandname(){ commandname="WIPE"
commandname="WIPE" commandaction="Wiping"
commandaction="Wiping" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
# Provides an exit code upon error. # Provides an exit code upon error.
fn_wipe_exit_code(){ fn_wipe_exit_code(){
@ -198,11 +196,11 @@ if [ -d "${serveridentitydir}/storage" ]||[ -d "${serveridentitydir}/user" ]||[
fn_stop_warning fn_stop_warning
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
fn_wipe_server_files fn_wipe_server_files
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
else else
fn_wipe_server_files fn_wipe_server_files
fi fi

10
lgsm/functions/compress_unreal2_maps.sh

@ -4,12 +4,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Compresses unreal maps. # Description: Compresses unreal maps.
fn_commandname(){ commandname="MAP-COMPRESSOR"
commandname="MAP-COMPRESSOR" commandaction="Compressing maps"
commandaction="Compressing maps" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
check.sh check.sh
fn_print_header fn_print_header

10
lgsm/functions/compress_ut99_maps.sh

@ -4,12 +4,10 @@
# Website: https://linuxgsm.com # Website: https://linuxgsm.com
# Description: Compresses unreal maps. # Description: Compresses unreal maps.
fn_commandname(){ commandname="MAP-COMPRESSOR"
commandname="MAP-COMPRESSOR" commandaction="Compressing maps"
commandaction="Compressing maps" functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_firstcommand_set
}
fn_commandname
check.sh check.sh
fn_print_header fn_print_header

17
lgsm/functions/core_messages.sh

@ -544,3 +544,20 @@ fn_print_restart_warning(){
done done
fn_print_warn_nl "${selfname} will be restarted" fn_print_warn_nl "${selfname} will be restarted"
} }
# Functions below are used to ensure that logs and UI correctly reflect the command it is actually running.
# Useful when a command has to call upon another command causing the other command to overrite commandname variables
# Used to remember the command that ran first.
fn_firstcommand_set(){
if [ -z "${firstcommandname}" ]; then
firstcommandname="${commandname}"
firstcommandaction="${commandaction}"
fi
}
# Used to reset commandname variables to the command the script ran first.
fn_firstcommand_reset(){
commandname="${firstcommandname}"
commandaction="${firstcommandaction}"
}

8
lgsm/functions/fix_kf.sh

@ -21,15 +21,15 @@ echo -e "forcing server restart..."
fn_sleep_time fn_sleep_time
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
sleep 5 sleep 5
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
sleep 5 sleep 5
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset

4
lgsm/functions/fix_kf2.sh

@ -14,8 +14,8 @@ fn_print_information "starting ${gamename} server to generate configs."
fn_sleep_time fn_sleep_time
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
sleep 10 sleep 10
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset

8
lgsm/functions/fix_ro.sh

@ -24,15 +24,15 @@ echo -e "forcing server restart..."
fn_sleep_time fn_sleep_time
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
sleep 5 sleep 5
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
sleep 5 sleep 5
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset

8
lgsm/functions/fix_ut2k4.sh

@ -21,15 +21,15 @@ echo -e "forcing server restart."
fn_sleep_time fn_sleep_time
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
sleep 5 sleep 5
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
sleep 5 sleep 5
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset

4
lgsm/functions/fix_ut3.sh

@ -14,8 +14,8 @@ fn_print_information "starting ${gamename} server to generate configs."
fn_sleep_time fn_sleep_time
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
sleep 10 sleep 10
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset

4
lgsm/functions/fix_wurm.sh

@ -18,10 +18,10 @@ if [ ! -d "${serverfiles}/Creative" ]; then
fixbypass=1 fixbypass=1
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
sleep 10 sleep 10
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
unset parmsbypass unset parmsbypass
fi fi

2
lgsm/functions/install_modules.sh

@ -14,4 +14,4 @@ cp "${tmpdir}/LinuxGSM-master/lgsm/functions"/*.sh "${functionsdir}"
cp "${tmpdir}/LinuxGSM-master/lgsm/functions"/*.py "${functionsdir}" cp "${tmpdir}/LinuxGSM-master/lgsm/functions"/*.py "${functionsdir}"
chmod +x "${functionsdir}"/* chmod +x "${functionsdir}"/*
command_update_linuxgsm.sh command_update_linuxgsm.sh
fn_commandname fn_firstcommand_reset

8
lgsm/functions/update_factorio.sh

@ -96,21 +96,21 @@ fn_update_factorio_compare(){
fn_update_factorio_dl fn_update_factorio_dl
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
# If server started. # If server started.
else else
fn_print_restart_warning fn_print_restart_warning
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
exitbypass=1 exitbypass=1
fn_update_factorio_dl fn_update_factorio_dl
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
fi fi
date +%s > "${lockdir}/lastupdate.lock" date +%s > "${lockdir}/lastupdate.lock"
alert="update" alert="update"

10
lgsm/functions/update_minecraft.sh

@ -44,10 +44,10 @@ fn_update_minecraft_localbuild(){
fn_script_log_info "Forcing server restart" fn_script_log_info "Forcing server restart"
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
totalseconds=0 totalseconds=0
# Check again, allow time to generate logs. # Check again, allow time to generate logs.
while [ ! -f "${serverfiles}/logs/latest.log" ]; do while [ ! -f "${serverfiles}/logs/latest.log" ]; do
@ -159,18 +159,18 @@ fn_update_minecraft_compare(){
command_start.sh command_start.sh
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
# If server started. # If server started.
else else
fn_print_restart_warning fn_print_restart_warning
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
exitbypass=1 exitbypass=1
fn_update_minecraft_dl fn_update_minecraft_dl
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
fi fi
date +%s > "${lockdir}/lastupdate.lock" date +%s > "${lockdir}/lastupdate.lock"
alert="update" alert="update"

12
lgsm/functions/update_minecraft_bedrock.sh

@ -47,16 +47,16 @@ fn_update_minecraft_localbuild(){
if [ "${status}" == "0" ]; then if [ "${status}" == "0" ]; then
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
sleep 3 sleep 3
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
# If server started. # If server started.
else else
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
fi fi
fi fi
@ -126,18 +126,18 @@ fn_update_minecraft_compare(){
command_start.sh command_start.sh
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
# If server started. # If server started.
else else
fn_print_restart_warning fn_print_restart_warning
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
exitbypass=1 exitbypass=1
fn_update_minecraft_dl fn_update_minecraft_dl
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
fi fi
date +%s > "${lockdir}/lastupdate.lock" date +%s > "${lockdir}/lastupdate.lock"
alert="update" alert="update"

8
lgsm/functions/update_mta.sh

@ -40,7 +40,7 @@ fn_update_mta_localbuild(){
command_stop.sh command_stop.sh
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
totalseconds=0 totalseconds=0
# Check again, allow time to generate logs. # Check again, allow time to generate logs.
while [ ! -f "${serverfiles}/mods/deathmatch/logs/server.log" ]; do while [ ! -f "${serverfiles}/mods/deathmatch/logs/server.log" ]; do
@ -155,18 +155,18 @@ fn_update_mta_compare(){
command_start.sh command_start.sh
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
# If server started. # If server started.
else else
fn_print_restart_warning fn_print_restart_warning
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
exitbypass=1 exitbypass=1
fn_update_mta_dl fn_update_mta_dl
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
fi fi
date +%s > "${lockdir}/lastupdate.lock" date +%s > "${lockdir}/lastupdate.lock"
alert="update" alert="update"

6
lgsm/functions/update_mumble.sh

@ -91,18 +91,18 @@ fn_update_mumble_compare(){
command_start.sh command_start.sh
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
# If server started. # If server started.
else else
fn_print_restart_warning fn_print_restart_warning
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
exitbypass=1 exitbypass=1
fn_update_mumble_dl fn_update_mumble_dl
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
fi fi
date +%s > "${lockdir}/lastupdate.lock" date +%s > "${lockdir}/lastupdate.lock"
alert="update" alert="update"

8
lgsm/functions/update_steamcmd.sh

@ -106,12 +106,12 @@ fn_update_steamcmd_compare(){
fn_print_restart_warning fn_print_restart_warning
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
exitbypass=1 exitbypass=1
fn_dl_steamcmd fn_dl_steamcmd
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
fi fi
date +%s > "${lockdir}/lastupdate.lock" date +%s > "${lockdir}/lastupdate.lock"
alert="update" alert="update"
@ -203,12 +203,12 @@ if [ "${forceupdate}" == "1" ]; then
fn_print_restart_warning fn_print_restart_warning
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
fn_dl_steamcmd fn_dl_steamcmd
date +%s > "${lockdir}/lastupdate.lock" date +%s > "${lockdir}/lastupdate.lock"
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
else else
fn_dl_steamcmd fn_dl_steamcmd
date +%s > "${lockdir}/lastupdate.lock" date +%s > "${lockdir}/lastupdate.lock"

8
lgsm/functions/update_ts3.sh

@ -44,7 +44,7 @@ fn_update_ts3_localbuild(){
command_stop.sh command_stop.sh
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
totalseconds=0 totalseconds=0
# Check again, allow time to generate logs. # Check again, allow time to generate logs.
while [ ! -d "${serverfiles}/logs" ]||[ -z "$(find "${serverfiles}/logs/"* -name 'ts3server*_0.log' 2> /dev/null)" ]; do while [ ! -d "${serverfiles}/logs" ]||[ -z "$(find "${serverfiles}/logs/"* -name 'ts3server*_0.log' 2> /dev/null)" ]; do
@ -153,18 +153,18 @@ fn_update_ts3_compare(){
command_start.sh command_start.sh
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
# If server started. # If server started.
else else
fn_print_restart_warning fn_print_restart_warning
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_commandname fn_firstcommand_reset
exitbypass=1 exitbypass=1
fn_update_ts3_dl fn_update_ts3_dl
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fn_commandname fn_firstcommand_reset
fi fi
date +%s > "${lockdir}/lastupdate.lock" date +%s > "${lockdir}/lastupdate.lock"
alert="update" alert="update"

Loading…
Cancel
Save