Browse Source

SC2168: 'local' is only valid in functions.

pull/1946/merge
Daniel Gibbs 7 years ago
parent
commit
aaa971c0ad
  1. 4
      lgsm/functions/alert.sh
  2. 4
      lgsm/functions/alert_email.sh
  3. 4
      lgsm/functions/alert_ifttt.sh
  4. 4
      lgsm/functions/alert_mailgun.sh
  5. 4
      lgsm/functions/alert_pushbullet.sh
  6. 4
      lgsm/functions/alert_pushover.sh
  7. 4
      lgsm/functions/alert_telegram.sh
  8. 2
      lgsm/functions/check.sh
  9. 2
      lgsm/functions/check_config.sh
  10. 2
      lgsm/functions/check_deps.sh
  11. 2
      lgsm/functions/check_executable.sh
  12. 2
      lgsm/functions/check_glibc.sh
  13. 2
      lgsm/functions/check_ip.sh
  14. 2
      lgsm/functions/check_logs.sh
  15. 2
      lgsm/functions/check_permissions.sh
  16. 2
      lgsm/functions/check_root.sh
  17. 2
      lgsm/functions/check_status.sh
  18. 2
      lgsm/functions/check_steamcmd.sh
  19. 2
      lgsm/functions/check_system_dir.sh
  20. 2
      lgsm/functions/check_system_requirements.sh
  21. 2
      lgsm/functions/check_tmuxception.sh
  22. 4
      lgsm/functions/command_backup.sh
  23. 4
      lgsm/functions/command_console.sh
  24. 4
      lgsm/functions/command_debug.sh
  25. 4
      lgsm/functions/command_details.sh
  26. 4
      lgsm/functions/command_dev_debug.sh
  27. 4
      lgsm/functions/command_dev_detect_deps.sh
  28. 4
      lgsm/functions/command_dev_detect_glibc.sh
  29. 4
      lgsm/functions/command_dev_detect_ldd.sh
  30. 4
      lgsm/functions/command_dev_query_raw.sh
  31. 4
      lgsm/functions/command_fastdl.sh
  32. 4
      lgsm/functions/command_install.sh
  33. 4
      lgsm/functions/command_install_resources_mta.sh
  34. 4
      lgsm/functions/command_mods_install.sh
  35. 4
      lgsm/functions/command_mods_remove.sh
  36. 4
      lgsm/functions/command_mods_update.sh
  37. 4
      lgsm/functions/command_monitor.sh
  38. 4
      lgsm/functions/command_postdetails.sh
  39. 4
      lgsm/functions/command_restart.sh
  40. 4
      lgsm/functions/command_start.sh
  41. 4
      lgsm/functions/command_stop.sh
  42. 4
      lgsm/functions/command_test_alert.sh
  43. 4
      lgsm/functions/command_ts3_server_pass.sh
  44. 4
      lgsm/functions/command_update.sh
  45. 4
      lgsm/functions/command_update_linuxgsm.sh
  46. 4
      lgsm/functions/command_validate.sh
  47. 4
      lgsm/functions/command_wipe.sh
  48. 2
      lgsm/functions/compress_unreal2_maps.sh
  49. 2
      lgsm/functions/compress_ut99_maps.sh
  50. 4
      lgsm/functions/core_dl.sh
  51. 4
      lgsm/functions/fix.sh
  52. 4
      lgsm/functions/fix_arma3.sh
  53. 4
      lgsm/functions/fix_coduo.sh
  54. 4
      lgsm/functions/fix_csgo.sh
  55. 4
      lgsm/functions/fix_dst.sh
  56. 4
      lgsm/functions/fix_ges.sh
  57. 4
      lgsm/functions/fix_glibc.sh
  58. 4
      lgsm/functions/fix_ins.sh
  59. 4
      lgsm/functions/fix_kf.sh
  60. 4
      lgsm/functions/fix_kf2.sh
  61. 4
      lgsm/functions/fix_mta.sh
  62. 4
      lgsm/functions/fix_ro.sh
  63. 4
      lgsm/functions/fix_rust.sh
  64. 4
      lgsm/functions/fix_rw.sh
  65. 4
      lgsm/functions/fix_ss3.sh
  66. 4
      lgsm/functions/fix_steamcmd.sh
  67. 4
      lgsm/functions/fix_ut.sh
  68. 4
      lgsm/functions/fix_ut2k4.sh
  69. 4
      lgsm/functions/fix_ut3.sh
  70. 4
      lgsm/functions/install_complete.sh
  71. 4
      lgsm/functions/install_config.sh
  72. 4
      lgsm/functions/install_dst_token.sh
  73. 4
      lgsm/functions/install_factorio_save.sh
  74. 4
      lgsm/functions/install_gslt.sh
  75. 4
      lgsm/functions/install_header.sh
  76. 4
      lgsm/functions/install_logs.sh
  77. 4
      lgsm/functions/install_mta_resources.sh
  78. 4
      lgsm/functions/install_retry.sh
  79. 4
      lgsm/functions/install_server_dir.sh
  80. 4
      lgsm/functions/install_server_files.sh
  81. 4
      lgsm/functions/install_squad_license.sh
  82. 4
      lgsm/functions/install_steamcmd.sh
  83. 4
      lgsm/functions/install_ts3db.sh
  84. 4
      lgsm/functions/install_ut2k4_key.sh
  85. 4
      lgsm/functions/logs.sh
  86. 4
      lgsm/functions/mods_core.sh
  87. 4
      lgsm/functions/mods_list.sh
  88. 4
      lgsm/functions/update_factorio.sh
  89. 4
      lgsm/functions/update_minecraft.sh
  90. 4
      lgsm/functions/update_mta.sh
  91. 4
      lgsm/functions/update_mumble.sh
  92. 4
      lgsm/functions/update_steamcmd.sh
  93. 4
      lgsm/functions/update_ts3.sh

4
lgsm/functions/alert.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Overall function for managing alerts.
local commandname="ALERT"
local commandaction="Alert"
commandname="ALERT"
commandaction="Alert"
fn_alert_log(){
info_distro.sh

4
lgsm/functions/alert_email.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Sends email alert.
local commandname="ALERT"
local commandaction="Alert"
commandname="ALERT"
commandaction="Alert"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_print_dots "Sending Email alert: ${email}"

4
lgsm/functions/alert_ifttt.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Sends IFTTT alert.
local commandname="ALERT"
local commandaction="Alert"
commandname="ALERT"
commandaction="Alert"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
json=$(cat <<EOF

4
lgsm/functions/alert_mailgun.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Sends Mailgun Email alert.
local commandname="ALERT"
local commandaction="Alert"
commandname="ALERT"
commandaction="Alert"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_print_dots "Sending Email alert: Mailgun: ${email}"

4
lgsm/functions/alert_pushbullet.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Sends Pushbullet Messenger alert.
local commandname="ALERT"
local commandaction="Alert"
commandname="ALERT"
commandaction="Alert"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
json=$(cat <<EOF

4
lgsm/functions/alert_pushover.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Sends Pushover alert.
local commandname="ALERT"
local commandaction="Alert"
commandname="ALERT"
commandaction="Alert"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_print_dots "Sending Pushover alert"

4
lgsm/functions/alert_telegram.sh

@ -4,8 +4,8 @@
# Website: https://bytegaming.de
# Description: Sends Telegram Messenger alert.
local commandname="ALERT"
local commandaction="Alert"
commandname="ALERT"
commandaction="Alert"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
json=$(cat <<EOF

2
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"
commandname="CHECK"
# Every command that requires checks just references check.sh
# check.sh selects which checks to run by using arrays

2
lgsm/functions/check_config.sh

@ -4,7 +4,7 @@
# Website: https://linuxgsm.com
# Description: Checks if the server config is missing and warns the user if needed.
local commandname="CHECK"
commandname="CHECK"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
if [ ! -e "${servercfgfullpath}" ]; then

2
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"
commandname="CHECK"
fn_install_mono_repo(){
if [ "${monostatus}" != "0" ]; then

2
lgsm/functions/check_executable.sh

@ -4,7 +4,7 @@
# Website: https://linuxgsm.com
# Description: Checks if executable exists.
local commandname="CHECK"
commandname="CHECK"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
# Check if executable exists

2
lgsm/functions/check_glibc.sh

@ -4,7 +4,7 @@
# Website: https://linuxgsm.com
# Description: Checks if the server has the correct Glibc version or a fix available.
local commandname="CHECK"
commandname="CHECK"
info_glibc.sh
info_distro.sh

2
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"
commandname="CHECK"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${travistest}" != "1" ]; then

2
lgsm/functions/check_logs.sh

@ -4,7 +4,7 @@
# Website: https://linuxgsm.com
# Description: Checks if log files exist.
local commandname="CHECK"
commandname="CHECK"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_check_logs(){

2
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"
commandname="CHECK"
fn_check_ownership(){
if [ -f "${rootdir}/${selfname}" ]; then

2
lgsm/functions/check_root.sh

@ -4,7 +4,7 @@
# Website: https://linuxgsm.com
# Description: Checks if the user tried to run the script as root.
local commandname="CHECK"
commandname="CHECK"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
if [ "$(whoami)" = "root" ]; then

2
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"
commandname="CHECK"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
if [ "${gamename}" == "TeamSpeak 3" ]; then

2
lgsm/functions/check_steamcmd.sh

@ -4,7 +4,7 @@
# Website: https://linuxgsm.com
# Description: Checks if SteamCMD is installed correctly.
local commandname="CHECK"
commandname="CHECK"
fn_install_steamcmd(){
if [ ! -d "${steamcmddir}" ]; then

2
lgsm/functions/check_system_dir.sh

@ -4,7 +4,7 @@
# Website: https://linuxgsm.com
# Description: Checks if systemdir/serverfiles is accessible.
local commandname="CHECK"
commandname="CHECK"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
if [ "${function_selfname}" != "command_validate.sh" ]; then

2
lgsm/functions/check_system_requirements.sh

@ -5,7 +5,7 @@
# Website: https://linuxgsm.com
# Description: Checks RAM requirements
local commandname="CHECK"
commandname="CHECK"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
info_distro.sh

2
lgsm/functions/check_tmuxception.sh

@ -5,7 +5,7 @@
# Website: https://linuxgsm.com
# Description: Checks if run from tmux or screen
local commandname="check"
commandname="check"
fn_check_is_in_tmux(){
if [ -n "${TMUX}" ]; then

4
lgsm/functions/command_backup.sh

@ -5,8 +5,8 @@
# Website: https://linuxgsm.com
# Description: Creates a .tar.gz file in the backup directory.
local commandname="BACKUP"
local commandaction="Backup"
commandname="BACKUP"
commandaction="Backup"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
check.sh

4
lgsm/functions/command_console.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Gives access to the server tmux console.
local commandname="CONSOLE"
local commandaction="Console"
commandname="CONSOLE"
commandaction="Console"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
check.sh

4
lgsm/functions/command_debug.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Runs the server without tmux and directly from the terminal.
local commandname="DEBUG"
local commandaction="Debug"
commandname="DEBUG"
commandaction="Debug"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
# Trap to remove lockfile on quit.

4
lgsm/functions/command_details.sh

@ -5,8 +5,8 @@
# Website: https://linuxgsm.com
# Description: Displays server information.
local commandname="DETAILS"
local commandaction="Details"
commandname="DETAILS"
commandaction="Details"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
# Run checks and gathers details to display.

4
lgsm/functions/command_dev_debug.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Dev only: Enables debugging log to be saved to dev-debug.log.
local commandname="DEV-DEBUG"
local commandaction="Dev-Debug"
commandname="DEV-DEBUG"
commandaction="Dev-Debug"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
if [ -f "${rootdir}/.dev-debug" ]; then

4
lgsm/functions/command_dev_detect_deps.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Detects dependencies the server binary requires.
local commandname="DETECT-DEPS"
local commandaction="Detect-Deps"
commandname="DETECT-DEPS"
commandaction="Detect-Deps"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
echo "================================="

4
lgsm/functions/command_dev_detect_glibc.sh

@ -5,8 +5,8 @@
# Description: Automatically detects the version of GLIBC that is required.
# Can check a file or directory recursively.
local commandname="DETECT-GLIBC"
local commandaction="Detect-Glibc"
commandname="DETECT-GLIBC"
commandaction="Detect-Glibc"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
echo "================================="

4
lgsm/functions/command_dev_detect_ldd.sh

@ -5,8 +5,8 @@
# Description: Automatically detects required deps using ldd.
# Can check a file or directory recursively.
local commandname="DETECT-LDD"
local commandaction="Detect-LDD"
commandname="DETECT-LDD"
commandaction="Detect-LDD"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
echo "================================="

4
lgsm/functions/command_dev_query_raw.sh

@ -4,8 +4,8 @@
# Website: https://gameservermanagers.com
# Description: Raw gamedig output of the server.
local commandname="QUERY-RAW"
local commandaction="QUERY-RAW"
commandname="QUERY-RAW"
commandaction="QUERY-RAW"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
echo "================================="

4
lgsm/functions/command_fastdl.sh

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

4
lgsm/functions/command_install.sh

@ -5,8 +5,8 @@
# Website: https://linuxgsm.com
# Description: Overall function for the installer.
local commandname="INSTALL"
local commandaction="Install"
commandname="INSTALL"
commandaction="Install"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
check.sh

4
lgsm/functions/command_install_resources_mta.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Installs the default resources for Multi Theft Auto.
local commandname="DEFAULT_RESOURCES"
local commandaction="Default Resources"
commandname="DEFAULT_RESOURCES"
commandaction="Default Resources"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_install_resources(){

4
lgsm/functions/command_mods_install.sh

@ -5,8 +5,8 @@
# Website: https://linuxgsm.com
# Description: List and installs available mods along with mods_list.sh and mods_core.sh.
local commandname="MODS"
local commandaction="addons/mods"
commandname="MODS"
commandaction="addons/mods"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
check.sh

4
lgsm/functions/command_mods_remove.sh

@ -5,8 +5,8 @@
# Website: https://linuxgsm.com
# Description: Uninstall mods along with mods_list.sh and mods_core.sh.
local commandname="MODS"
local commandaction="addons/mods"
commandname="MODS"
commandaction="addons/mods"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
check.sh

4
lgsm/functions/command_mods_update.sh

@ -5,8 +5,8 @@
# Website: https://linuxgsm.com
# Description: Updates installed mods along with mods_list.sh and mods_core.sh.
local commandname="MODS"
local commandaction="Mods Update"
commandname="MODS"
commandaction="Mods Update"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
check.sh

4
lgsm/functions/command_monitor.sh

@ -6,8 +6,8 @@
# Description: Monitors server by checking for running processes.
# then passes to gamedig and gsquery.
local commandname="MONITOR"
local commandaction="Monitor"
commandname="MONITOR"
commandaction="Monitor"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_monitor_loop(){

4
lgsm/functions/command_postdetails.sh

@ -5,8 +5,8 @@
# Website: https://linuxgsm.com
# Description: Strips sensitive information out of Details output
local commandname="postdetails"
local commandaction="Postdetails"
commandname="postdetails"
commandaction="Postdetails"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
# Set posttarget to the appropriately-defined post destination.

4
lgsm/functions/command_restart.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Restarts the server.
local commandname="RESTART"
local commandaction="Restarting"
commandname="RESTART"
commandaction="Restarting"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
info_config.sh

4
lgsm/functions/command_start.sh

@ -5,8 +5,8 @@
# Website: https://linuxgsm.com
# Description: Starts the server.
local commandname="START"
local commandaction="Starting"
commandname="START"
commandaction="Starting"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_start_teamspeak3(){

4
lgsm/functions/command_stop.sh

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

4
lgsm/functions/command_test_alert.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Sends a test alert.
local commandname="ALERT"
local commandaction="Alert"
commandname="ALERT"
commandaction="Alert"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_print_dots "${servername}"

4
lgsm/functions/command_ts3_server_pass.sh

@ -5,8 +5,8 @@
# Website: https://linuxgsm.com
# Description: Changes TS3 serveradmin password.
local commandname="TS3-CHANGE-PASS"
local commandaction="ServerAdmin Password Change"
commandname="TS3-CHANGE-PASS"
commandaction="ServerAdmin Password Change"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_serveradmin_password_prompt(){

4
lgsm/functions/command_update.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Handles updating of servers.
local commandname="UPDATE"
local commandaction="Update"
commandname="UPDATE"
commandaction="Update"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_print_dots ""

4
lgsm/functions/command_update_linuxgsm.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Deletes the functions dir to allow re-downloading of functions from GitHub.
local commandname="UPDATE LinuxGSM"
local commandaction="Update LinuxGSM"
commandname="UPDATE LinuxGSM"
commandaction="Update LinuxGSM"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_print_dots "Updating LinuxGSM"

4
lgsm/functions/command_validate.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Runs a server validation.
local commandname="VALIDATE"
local commandaction="Validate"
commandname="VALIDATE"
commandaction="Validate"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_validation(){

4
lgsm/functions/command_wipe.sh

@ -5,8 +5,8 @@
# Website: https://linuxgsm.com
# Description: Wipes server data, useful after updates for some games like Rust
local commandname="WIPE"
local commandaction="data wipe"
commandname="WIPE"
commandaction="data wipe"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
check.sh

2
lgsm/functions/compress_unreal2_maps.sh

@ -4,7 +4,7 @@
# Website: https://linuxgsm.com
# Description: Compresses unreal maps.
local commandaction="Unreal Map Compressor"
commandaction="Unreal Map Compressor"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
check.sh

2
lgsm/functions/compress_ut99_maps.sh

@ -4,7 +4,7 @@
# Website: https://linuxgsm.com
# Description: Compresses unreal maps.
local commandaction="Unreal Map Compressor"
commandaction="Unreal Map Compressor"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
check.sh

4
lgsm/functions/core_dl.sh

@ -17,8 +17,8 @@
# 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 commandaction="Download"
commandname="DOWNLOAD"
commandaction="Download"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_dl_md5(){

4
lgsm/functions/fix.sh

@ -5,8 +5,8 @@
# Description: Overall function for managing fixes.
# Runs functions that will fix an issue.
local commandname="FIX"
local commandaction="Fix"
commandname="FIX"
commandaction="Fix"
# Messages that are displayed for some fixes
fn_fix_msg_start(){

4
lgsm/functions/fix_arma3.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Resolves an issue with ARMA3.
local commandname="FIX"
local commandaction="Fix"
commandname="FIX"
commandaction="Fix"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
# Fixes: 20150 Segmentation fault (core dumped) error.

4
lgsm/functions/fix_coduo.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Fixes for Call of Duty: United Offensive
local commandname="FIX"
local commandaction="Fix"
commandname="FIX"
commandaction="Fix"
# Force glibc fix
fix_glibc.sh

4
lgsm/functions/fix_csgo.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Resolves various issues with CS:GO.
local commandname="FIX"
local commandaction="Fix"
commandname="FIX"
commandaction="Fix"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
# Fixes: server not always creating steam_appid.txt file.

4
lgsm/functions/fix_dst.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Resolves various issues with Don't Starve Together.
local commandname="FIX"
local commandaction="Fix"
commandname="FIX"
commandaction="Fix"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
# Fixes: ./dontstarve_dedicated_server_nullrenderer: ./lib32/libcurl-gnutls.so.4: no version information available (required by ./dontstarve_dedicated_server_nullrenderer)

4
lgsm/functions/fix_ges.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Resolves various issues with GoldenEye: Source.
local commandname="FIX"
local commandaction="Fix"
commandname="FIX"
commandaction="Fix"
# Fixes: MALLOC_CHECK_ needing to be set to 0.
export MALLOC_CHECK_=0

4
lgsm/functions/fix_glibc.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Downloads required Glibc files and applies the Glibc fix if required.
local commandname="FIX"
local commandaction="Fix"
commandname="FIX"
commandaction="Fix"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
## i386

4
lgsm/functions/fix_ins.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Resolves various issues with Insurgency.
local commandname="FIX"
local commandaction="Fix"
commandname="FIX"
commandaction="Fix"
# Fixes: ./srcds_linux: error while loading shared libraries: libtier0.so: cannot open shared object file: No such file or directory.

4
lgsm/functions/fix_kf.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Resolves various issues with Killing Floor.
local commandname="FIX"
local commandaction="Fix"
commandname="FIX"
commandaction="Fix"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
echo "Applying WebAdmin ROOst.css fix."

4
lgsm/functions/fix_kf2.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Resolves various issues with Killing Floor 2.
local commandname="FIX"
local commandaction="Fix"
commandname="FIX"
commandaction="Fix"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_parms(){

4
lgsm/functions/fix_mta.sh

@ -4,8 +4,8 @@
# Contributor: ChaosMTA
# Website: https://linuxgsm.com
# Description: Installs the libmysqlclient for database functions on the server
local commandname="FIX"
local commandaction="Fix"
commandname="FIX"
commandaction="Fix"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
if [ ! -f "${lgsmdir}/lib/libmysqlclient.so.16" ]; then

4
lgsm/functions/fix_ro.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Resolves various issues with Red Orchestra.
local commandname="FIX"
local commandaction="Fix"
commandname="FIX"
commandaction="Fix"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
echo "Applying WebAdmin ROOst.css fix."

4
lgsm/functions/fix_rust.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Resolves startup issue with Rust
local commandname="FIX"
local commandaction="Fix"
commandname="FIX"
commandaction="Fix"
# Fixes: [Raknet] Server Shutting Down (Shutting Down)
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${systemdir}/RustDedicated_Data/Plugins/x86_64"

4
lgsm/functions/fix_rw.sh

@ -4,7 +4,7 @@
# Website: https://linuxgsm.com
# Description: Resolves startup issue with Rising World
local commandname="FIX"
local commandaction="Fix"
commandname="FIX"
commandaction="Fix"
export LD_LIBRARY_PATH="${serverfiles}/linux64:${serverfiles}:$LD_LIBRARY_PATH"

4
lgsm/functions/fix_ss3.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Resolves various issues with Serious Sam 3.
local commandname="FIX"
local commandaction="Fix"
commandname="FIX"
commandaction="Fix"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
# Fixes https://steamcommunity.com/app/41070/discussions/0/353916981477716386/

4
lgsm/functions/fix_steamcmd.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Resolves various issues related to SteamCMD.
local commandname="FIX"
local commandaction="Fix"
commandname="FIX"
commandaction="Fix"
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.

4
lgsm/functions/fix_ut.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Resolves various issues with Unreal Tournament.
local commandname="FIX"
local commandaction="Fix"
commandname="FIX"
commandaction="Fix"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
#Set Binary Executable

4
lgsm/functions/fix_ut2k4.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Resolves various issues with Unreal Tournament 2004.
local commandname="FIX"
local commandaction="Fix"
commandname="FIX"
commandaction="Fix"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
echo "applying WebAdmin ut2003.css fix."

4
lgsm/functions/fix_ut3.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Resolves various issues with configs in Unreal Tournament 3.
local commandname="FIX"
local commandaction="Fix"
commandname="FIX"
commandaction="Fix"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_parms(){

4
lgsm/functions/install_complete.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Prints installation completion message and hints.
local commandname="INSTALL"
local commandaction="Install"
commandname="INSTALL"
commandaction="Install"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
echo "================================="

4
lgsm/functions/install_config.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Creates default server configs.
local commandname="INSTALL"
local commandaction="Install"
commandname="INSTALL"
commandaction="Install"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
# Checks if server cfg dir exists, creates it if it doesn't

4
lgsm/functions/install_dst_token.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Configures Don't Starve Together cluster with given token.
local commandname="INSTALL"
local commandaction="Install"
commandname="INSTALL"
commandaction="Install"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
echo ""

4
lgsm/functions/install_factorio_save.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Creates the initial save file for Factorio
local commandname="INSTALL"
local commandaction="Install"
commandname="INSTALL"
commandaction="Install"
echo ""
echo "Creating initial Factorio savefile"

4
lgsm/functions/install_gslt.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Configures GSLT.
local commandname="INSTALL"
local commandaction="Install"
commandname="INSTALL"
commandaction="Install"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
echo ""

4
lgsm/functions/install_header.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Prints installation header.
local commandname="INSTALL"
local commandaction="Install"
commandname="INSTALL"
commandaction="Install"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
clear

4
lgsm/functions/install_logs.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Creates log directories.
local commandname="INSTALL"
local commandaction="Install"
commandname="INSTALL"
commandaction="Install"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
if [ "${checklogs}" != "1" ]; then

4
lgsm/functions/install_mta_resources.sh

@ -5,8 +5,8 @@
# 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 commandaction="Install"
commandname="INSTALL"
commandaction="Install"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_print_information_nl "${gamename} will not function without resources!"

4
lgsm/functions/install_retry.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Asks for installation retry after failure.
local commandname="INSTALL"
local commandaction="Install"
commandname="INSTALL"
commandaction="Install"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
if fn_prompt_yn "Retry install?" Y; then

4
lgsm/functions/install_server_dir.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Creates the server directory.
local commandname="INSTALL"
local commandaction="Install"
commandname="INSTALL"
commandaction="Install"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
echo ""

4
lgsm/functions/install_server_files.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Installs server files.
local commandname="INSTALL"
local commandaction="Install"
commandname="INSTALL"
commandaction="Install"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_install_server_files(){

4
lgsm/functions/install_squad_license.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Configures the Squad server's license.
local commandname="INSTALL"
local commandaction="Install"
commandname="INSTALL"
commandaction="Install"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
echo ""

4
lgsm/functions/install_steamcmd.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Downloads SteamCMD on install.
local commandname="INSTALL"
local commandaction="Install"
commandname="INSTALL"
commandaction="Install"
echo ""
echo "Installing SteamCMD"

4
lgsm/functions/install_ts3db.sh

@ -5,8 +5,8 @@
# Website: https://linuxgsm.com
# Description: Installs the database server MariaDB for TeamSpeak 3.
local commandname="INSTALL"
local commandaction="Install"
commandname="INSTALL"
commandaction="Install"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_install_ts3db_mariadb(){

4
lgsm/functions/install_ut2k4_key.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Activates ut2k4 server with given key.
local commandname="INSTALL"
local commandaction="Install"
commandname="INSTALL"
commandaction="Install"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
echo ""

4
lgsm/functions/logs.sh

@ -5,8 +5,8 @@
# Website: https://linuxgsm.com
# Description: Acts as a log rotator, removing old logs.
local commandname="LOGS"
local commandaction="Log-Manager"
commandname="LOGS"
commandaction="Log-Manager"
# Check if logfile variable and file exist, create logfile if it doesn't exist
if [ -n "${consolelog}" ]; then

4
lgsm/functions/mods_core.sh

@ -5,8 +5,8 @@
# Website: https://linuxgsm.com
# Description: Core functions for mods list/install/update/remove
local commandname="MODS"
local commandaction="addons/mods"
commandname="MODS"
commandaction="addons/mods"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
# Files and Directories

4
lgsm/functions/mods_list.sh

@ -8,8 +8,8 @@
# Usage: Then add this array to the mods_global_array.
# Usage: If needed, you can scrape the download URL first.
local commandname="MODS"
local commandaction="List Mods"
commandname="MODS"
commandaction="List Mods"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
# Get a proper URL for mods that don't provide a good one (optional)

4
lgsm/functions/update_factorio.sh

@ -5,8 +5,8 @@
# Website: https://linuxgsm.com
# Description: Handles updating of Factorio servers.
local commandname="UPDATE"
local commandaction="Update"
commandname="UPDATE"
commandaction="Update"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_update_factorio_dl(){

4
lgsm/functions/update_minecraft.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Handles updating of Minecraft servers.
local commandname="UPDATE"
local commandaction="Update"
commandname="UPDATE"
commandaction="Update"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_update_dl(){

4
lgsm/functions/update_mta.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Handles updating of Multi Theft Auto servers.
local commandname="UPDATE"
local commandaction="Update"
commandname="UPDATE"
commandaction="Update"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_update_mta_dl(){

4
lgsm/functions/update_mumble.sh

@ -5,8 +5,8 @@
# Website: https://linuxgsm.com
# Description: Handles updating of mumble servers.
local commandname="UPDATE"
local commandaction="Update"
commandname="UPDATE"
commandaction="Update"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_update_mumble_dl(){

4
lgsm/functions/update_steamcmd.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Handles updating using SteamCMD.
local commandname="UPDATE"
local commandaction="Update"
commandname="UPDATE"
commandaction="Update"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
check.sh

4
lgsm/functions/update_ts3.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Handles updating of teamspeak 3 servers.
local commandname="UPDATE"
local commandaction="Update"
commandname="UPDATE"
commandaction="Update"
function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_update_ts3_dl(){

Loading…
Cancel
Save