Browse Source

updated dates

pull/584/head
Daniel Gibbs 9 years ago
parent
commit
069f2cba06
  1. 2
      functions/check.sh
  2. 2
      functions/check_ip.sh
  3. 2
      functions/check_logs.sh
  4. 2
      functions/check_root.sh
  5. 2
      functions/check_steamcmd.sh
  6. 2
      functions/check_steamuser.sh
  7. 2
      functions/check_systemdir.sh
  8. 2
      functions/check_tmux.sh
  9. 2
      functions/command_backup.sh
  10. 2
      functions/command_console.sh
  11. 2
      functions/command_debug.sh
  12. 2
      functions/command_install.sh
  13. 2
      functions/command_monitor.sh

2
functions/check.sh

@ -2,7 +2,7 @@
# LGSM fn_check function
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
lgsm_version="201215"
lgsm_version="261215"
# Description: Overall function for managing checks.
# Runs checks that will either halt on or fix an issue.

2
functions/check_ip.sh

@ -2,7 +2,7 @@
# LGSM check_ip.sh function
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
lgsm_version="201215"
lgsm_version="261215"
# Description: Automatically identifies the server interface IP.
# If multiple interfaces are detected the user will need to manualy set using ip="0.0.0.0".

2
functions/check_logs.sh

@ -2,7 +2,7 @@
# LGSM check_logs.sh function
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
lgsm_version="061115"
lgsm_version="261215"
# Description: Checks that log files exist on server start

2
functions/check_root.sh

@ -2,7 +2,7 @@
# LGSM check_root.sh function
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
lgsm_version="061115"
lgsm_version="261215"
if [ $(whoami) = "root" ]; then
fn_printfailnl "Do NOT run this script as root!"

2
functions/check_steamcmd.sh

@ -2,7 +2,7 @@
# LGSM check_steamcmd.sh function
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
lgsm_version="061115"
lgsm_version="261215"
# Description: Downloads SteamCMD on install and checks if missing before running functions that require SteamCMD

2
functions/check_steamuser.sh

@ -2,7 +2,7 @@
# LGSM check_steamuser.sh function
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
lgsm_version="061115"
lgsm_version="261215"
if [ "${steamuser}" == "username" ]; then
fn_printfailnl "Steam login not set. Update steamuser."

2
functions/check_systemdir.sh

@ -2,7 +2,7 @@
# LGSM check_systemdir.sh function
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
lgsm_version="161215"
lgsm_version="261215"
if [ ! -d "${systemdir}" ]; then
fn_printfailnl "Cannot access ${systemdir}: No such directory"

2
functions/check_tmux.sh

@ -2,7 +2,7 @@
# LGSM check_tmux.sh function
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
lgsm_version="061115"
lgsm_version="261215"
# Checks if tmux is installed as too many users do not RTFM or know how to use Google.

2
functions/command_backup.sh

@ -2,7 +2,7 @@
# LGSM command_backup.sh function
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
lgsm_version="201215"
lgsm_version="261215"
# Description: Creates a .tar.gz file in the backup directory.

2
functions/command_console.sh

@ -2,7 +2,7 @@
# LGSM command_console.sh function
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
lgsm_version="061115"
lgsm_version="261215"
# Description: Gives access to the server tmux console.

2
functions/command_debug.sh

@ -2,7 +2,7 @@
# LGSM command_debug.sh function
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
lgsm_version="061115"
lgsm_version="261215"
# Description: Runs the server without tmux. Runs direct from the terminal.

2
functions/command_install.sh

@ -33,7 +33,7 @@ if [ "${gamename}" == "Counter Strike: Global Offensive" ]; then
install_gslt.sh
fix_csgo.sh
elif [ "${gamename}" == "Teamspeak 3" ]; then
fn_install_ts3db
install_ts3db.sh
elif [ "${gamename}" == "Team Fortress 2" ]; then
install_gslt.sh
elif [ "${gamename}" == "Killing Floor" ]; then

2
functions/command_monitor.sh

@ -2,7 +2,7 @@
# LGSM command_monitor.sh function
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
lgsm_version="061115"
lgsm_version="261215"
# Description: Monitors server by checking for running proccesses
# then passes to monitor_gsquery.sh.

Loading…
Cancel
Save