Browse Source

local modulename may be required after all

pull/914/head
Daniel Gibbs 9 years ago
parent
commit
b6c117bca6
  1. 2
      lgsm/functions/alert_email.sh
  2. 2
      lgsm/functions/alert_pushbullet.sh
  3. 2
      lgsm/functions/command_backup.sh
  4. 2
      lgsm/functions/command_console.sh
  5. 2
      lgsm/functions/command_debug.sh
  6. 2
      lgsm/functions/command_dev_detect_deps.sh
  7. 2
      lgsm/functions/command_fastdl.sh
  8. 2
      lgsm/functions/command_install.sh
  9. 2
      lgsm/functions/command_monitor.sh
  10. 2
      lgsm/functions/command_start.sh
  11. 2
      lgsm/functions/command_stop.sh
  12. 2
      lgsm/functions/command_test_alert.sh
  13. 2
      lgsm/functions/command_ts3_server_pass.sh
  14. 2
      lgsm/functions/command_validate.sh
  15. 2
      lgsm/functions/core_functions.sh
  16. 2
      lgsm/functions/install_complete.sh
  17. 2
      lgsm/functions/install_config.sh
  18. 2
      lgsm/functions/install_gslt.sh
  19. 2
      lgsm/functions/install_header.sh
  20. 2
      lgsm/functions/install_logs.sh
  21. 2
      lgsm/functions/install_retry.sh
  22. 2
      lgsm/functions/install_server_dir.sh
  23. 2
      lgsm/functions/install_server_files.sh
  24. 2
      lgsm/functions/install_steamcmd.sh
  25. 2
      lgsm/functions/install_ts3.sh
  26. 2
      lgsm/functions/install_ts3db.sh
  27. 2
      lgsm/functions/install_ut2k4_key.sh
  28. 2
      lgsm/functions/logs.sh
  29. 2
      lgsm/functions/monitor_gsquery.sh
  30. 2
      lgsm/functions/update_check.sh
  31. 2
      lgsm/functions/update_dl.sh

2
lgsm/functions/alert_email.sh

@ -6,7 +6,7 @@ lgsm_version="210516"
# Description: Sends email alert if monitor picks up a failure.
modulename="Alert"
local modulename="Alert"
fn_details_email(){

2
lgsm/functions/alert_pushbullet.sh

@ -6,7 +6,7 @@ lgsm_version="210516"
# Description: alerts using pushbullet.
modulename="Alert"
local modulename="Alert"
function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
fn_print_dots "Sending Pushbullet alert"
sleep 1

2
lgsm/functions/command_backup.sh

@ -6,7 +6,7 @@ lgsm_version="210516"
# Description: Creates a .tar.gz file in the backup directory.
modulename="Backup"
local modulename="Backup"
function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
check.sh

2
lgsm/functions/command_console.sh

@ -6,7 +6,7 @@ lgsm_version="210516"
# Description: Gives access to the server tmux console.
modulename="Console"
local modulename="Console"
function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
check.sh

2
lgsm/functions/command_debug.sh

@ -6,7 +6,7 @@ lgsm_version="210516"
# Description: Runs the server without tmux. Runs direct from the terminal.
modulename="Debug"
local modulename="Debug"
function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
# Trap to remove lockfile on quit.

2
lgsm/functions/command_dev_detect_deps.sh

@ -6,7 +6,7 @@ lgsm_version="210516"
# Description: Detects dependencies the server binary requires.
modulename="Backup"
local modulename="Backup"
function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
check.sh

2
lgsm/functions/command_fastdl.sh

@ -7,7 +7,7 @@ lgsm_version="060616"
# Description: Creates a FastDL folder
modulename="FastDL"
local modulename="FastDL"
function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
check.sh

2
lgsm/functions/command_install.sh

@ -6,7 +6,7 @@ lgsm_version="210516"
# Description: Overall function for the installer.
modulename="Install"
local modulename="Install"
function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
check.sh

2
lgsm/functions/command_monitor.sh

@ -7,7 +7,7 @@ lgsm_version="210516"
# Description: Monitors server by checking for running proccesses
# then passes to monitor_gsquery.sh.
modulename="Monitor"
local modulename="Monitor"
function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
fn_monitor_check_lockfile(){

2
lgsm/functions/command_start.sh

@ -6,7 +6,7 @@ lgsm_version="210516"
# Description: Starts the server.
modulename="Starting"
local modulename="Starting"
function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
fn_start_teamspeak3(){

2
lgsm/functions/command_stop.sh

@ -6,7 +6,7 @@ lgsm_version="050616"
# Description: Stops the server.
modulename="Stopping"
local modulename="Stopping"
function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
# Attempts Graceful of source using rcon 'quit' command.

2
lgsm/functions/command_test_alert.sh

@ -6,7 +6,7 @@ lgsm_version="210516"
# Description: Sends a test email alert.
modulename="Alert"
local modulename="Alert"
function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
check.sh

2
lgsm/functions/command_ts3_server_pass.sh

@ -7,7 +7,7 @@ lgsm_version="210516"
# Description: Changes TS3 serveradmin password
modulename="Change password"
local modulename="Change password"
function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"

2
lgsm/functions/command_validate.sh

@ -6,7 +6,7 @@ lgsm_version="210516"
# Description: Runs a server validation.
modulename="Validate"
local modulename="Validate"
function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
fn_validation(){

2
lgsm/functions/core_functions.sh

@ -157,7 +157,7 @@ fn_fetch_function
}
fn_restart(){
modulename="Restarting"
local modulename="Restarting"
info_config.sh
command_stop.sh
command_start.sh

2
lgsm/functions/install_complete.sh

@ -4,7 +4,7 @@
# Website: https://gameservermanagers.com
lgsm_version="210516"
modulename="Install"
local modulename="Install"
if [ "${gamename}" == "Don't Starve Together" ]; then
echo ""

2
lgsm/functions/install_config.sh

@ -4,7 +4,7 @@
# Website: https://gameservermanagers.com
lgsm_version="210516"
modulename="Install"
local modulename="Install"
fn_defaultconfig(){
echo "creating ${servercfg} config file."

2
lgsm/functions/install_gslt.sh

@ -6,7 +6,7 @@ lgsm_version="210516"
# Description: Configures GSLT.
modulename="Install"
local modulename="Install"
echo ""
echo "Game Server Login Token"

2
lgsm/functions/install_header.sh

@ -4,7 +4,7 @@
# Website: https://gameservermanagers.com
lgsm_version="210516"
modulename="Install"
local modulename="Install"
clear
echo "================================="

2
lgsm/functions/install_logs.sh

@ -4,7 +4,7 @@
# Website: https://gameservermanagers.com
lgsm_version="210516"
modulename="Install"
local modulename="Install"
if [ "${checklogs}" != "1" ]; then
echo ""

2
lgsm/functions/install_retry.sh

@ -4,7 +4,7 @@
# Website: https://gameservermanagers.com
lgsm_version="210516"
modulename="Install"
local modulename="Install"
while true; do
read -e -i "y" -p "Retry install? [Y/n]" yn

2
lgsm/functions/install_server_dir.sh

@ -4,7 +4,7 @@
# Website: https://gameservermanagers.com
lgsm_version="210516"
modulename="Install"
local modulename="Install"
echo ""
echo "Server Directory"

2
lgsm/functions/install_server_files.sh

@ -4,7 +4,7 @@
# Website: https://gameservermanagers.com
lgsm_version="270516"
modulename="Install"
local modulename="Install"
fn_install_server_files(){
if [ "${gamename}" == "Unreal Tournament 99" ]; then

2
lgsm/functions/install_steamcmd.sh

@ -6,7 +6,7 @@ lgsm_version="210516"
# Description: Downloads SteamCMD on install.
modulename="Install"
local modulename="Install"
echo ""
echo "Installing SteamCMD"

2
lgsm/functions/install_ts3.sh

@ -4,7 +4,7 @@
# Website: https://gameservermanagers.com
lgsm_version="210516"
modulename="Install"
local modulename="Install"
info_distro.sh
# Gets the teamspeak server architecture

2
lgsm/functions/install_ts3db.sh

@ -5,7 +5,7 @@
# Website: https://gameservermanagers.com
lgsm_version="210516"
modulename="Install"
local modulename="Install"
fn_install_ts3db_mariadb(){
echo ""

2
lgsm/functions/install_ut2k4_key.sh

@ -4,7 +4,7 @@
# Website: https://gameservermanagers.com
lgsm_version="210516"
modulename="Install"
local modulename="Install"
echo ""
echo "Enter ${gamename} CD Key"

2
lgsm/functions/logs.sh

@ -7,7 +7,7 @@ lgsm_version="210516"
# Description: Acts as a log rotater, removing old logs.
modulename="Log Manager"
local modulename="Log Manager"
# Check if logfile variable and file exist, create logfile if it doesn't exist
if [ -n "${consolelog}" ]; then

2
lgsm/functions/monitor_gsquery.sh

@ -7,7 +7,7 @@ lgsm_version="210516"
# Description: uses gsquery.py to query the server port.
# Detects if the server has frozen with the proccess still running.
modulename="Monitor"
local modulename="Monitor"
# Forces legecy servers to use gsquery
if [ -z "${gsquery}" ]; then

2
lgsm/functions/update_check.sh

@ -6,7 +6,7 @@ lgsm_version="210516"
# Description: Checks if a server update is available.
modulename="Update"
local modulename="Update"
function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
### SteamCMD Update Checker ###

2
lgsm/functions/update_dl.sh

@ -6,7 +6,7 @@ lgsm_version="210516"
# Description: Runs a server update.
modulename="Update"
local modulename="Update"
function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
fn_steamcmd_dl(){

Loading…
Cancel
Save