فهرست منبع

updated dates

Daniel Gibbs 10 سال پیش
والد
کامیت
069f2cba06

+ 1 - 1
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.

+ 1 - 1
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".

+ 1 - 1
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
 

+ 1 - 1
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!"

+ 1 - 1
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
 

+ 1 - 1
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."	

+ 1 - 1
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"

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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.
 

+ 1 - 1
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

+ 1 - 1
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.