Browse Source

Merge remote-tracking branch 'upstream/master' into config-select

Conflicts:
	functions/fn_getopt
pull/372/head
Ilija Matoski 10 years ago
parent
commit
15f2e552b8
  1. 6
      7DaysToDie/sdtdserver
  2. 6
      Arma3/arma3server
  3. 6
      BladeSymphony/bsserver
  4. 6
      CounterStrike/csserver
  5. 6
      CounterStrikeConditionZero/csczserver
  6. 6
      CounterStrikeGlobalOffensive/csgoserver
  7. 6
      CounterStrikeSource/cssserver
  8. 6
      DayOfDefeat/dodserver
  9. 6
      DayOfDefeatSource/dodsserver
  10. 4
      DeathmatchClassic/dmcserver
  11. 4
      DoubleActionBoogaloo/dabserver
  12. 6
      FistfulOfFrags/fofserver
  13. 4
      GameServerQuery/gsquery.py
  14. 6
      GarrysMod/gmodserver
  15. 6
      HalfLife2Deathmatch/hl2dmserver
  16. 4
      HalfLifeDeathmatch/hldmserver
  17. 15
      HalfLifeDeathmatchSource/cfg/lgsm-default.cfg
  18. 98
      HalfLifeDeathmatchSource/hldmsserver
  19. 6
      Insurgency/insserver
  20. 6
      JustCause2/jc2server
  21. 6
      KillingFloor/kfserver
  22. 6
      Left4Dead/l4dserver
  23. 6
      Left4Dead2/l4d2server
  24. 6
      NS2Combat/ns2cserver
  25. 6
      NaturalSelection2/ns2server
  26. 6
      NoMoreRoomInHell/nmrihserver
  27. 6
      OpposingForce/opforserver
  28. 6
      ProjectZomboid/pzserver
  29. 6
      RedOrchestra/roserver
  30. 6
      Ricochet/ricochetserver
  31. 6
      SeriousSam3BFE/ss3sserver
  32. 6
      StarBound/sbserver
  33. 6
      TeamFortress2/tf2server
  34. 6
      TeamFortressClassic/tfcserver
  35. 7
      TeamSpeak3/ts3server
  36. 6
      UnrealTournament2004/ut2k4server
  37. 6
      UnrealTournament99/ut99server
  38. 2
      functions/fn_backup
  39. 2
      functions/fn_check_ip
  40. 2
      functions/fn_check_logs
  41. 2
      functions/fn_check_root
  42. 4
      functions/fn_check_steamcmd
  43. 2
      functions/fn_check_systemdir
  44. 6
      functions/fn_check_tmux
  45. 2
      functions/fn_check_ts3status
  46. 2
      functions/fn_compress_unreal2maps
  47. 2
      functions/fn_compress_ut99maps
  48. 2
      functions/fn_console
  49. 2
      functions/fn_csgofix
  50. 2
      functions/fn_debug
  51. 2
      functions/fn_details
  52. 2
      functions/fn_details_config
  53. 2
      functions/fn_details_distro
  54. 2
      functions/fn_email
  55. 2
      functions/fn_email_test
  56. 2
      functions/fn_functions
  57. 22
      functions/fn_getopt
  58. 2
      functions/fn_insfix
  59. 2
      functions/fn_install
  60. 2
      functions/fn_install_complete
  61. 42
      functions/fn_install_config
  62. 4
      functions/fn_install_gsquery
  63. 4
      functions/fn_install_header
  64. 2
      functions/fn_install_kffix
  65. 2
      functions/fn_install_logs
  66. 2
      functions/fn_install_retry
  67. 2
      functions/fn_install_rofix
  68. 2
      functions/fn_install_serverdir
  69. 16
      functions/fn_install_serverfiles
  70. 4
      functions/fn_install_steamcmd
  71. 2
      functions/fn_install_steamfix
  72. 2
      functions/fn_install_ut2k4
  73. 6
      functions/fn_install_ut2k4filesdl
  74. 2
      functions/fn_install_ut2k4fix
  75. 2
      functions/fn_install_ut2k4key
  76. 2
      functions/fn_install_ut99
  77. 6
      functions/fn_install_ut99filesdl
  78. 2
      functions/fn_install_ut99fix
  79. 34
      functions/fn_logs
  80. 2
      functions/fn_messages
  81. 2
      functions/fn_monitor
  82. 36
      functions/fn_start
  83. 2
      functions/fn_stop
  84. 12
      functions/fn_update_check
  85. 14
      functions/fn_update_dl
  86. 11
      functions/fn_validate

6
7DaysToDie/sdtdserver

@ -2,8 +2,8 @@
# 7 Days To Die
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -85,7 +85,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
Arma3/arma3server

@ -3,8 +3,8 @@
# Server Management Script
# Author: Daniel Gibbs
# Contributor: Scarsz
# Website: http://danielgibbs.co.uk
# Version: 240415
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -85,7 +85,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
BladeSymphony/bsserver

@ -2,8 +2,8 @@
# Blade Symphony
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -78,7 +78,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
CounterStrike/csserver

@ -2,8 +2,8 @@
# Counter Strike
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 010215
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -77,7 +77,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
CounterStrikeConditionZero/csczserver

@ -2,8 +2,8 @@
# Counter Strike: Condition Zero
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -77,7 +77,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
CounterStrikeGlobalOffensive/csgoserver

@ -2,8 +2,8 @@
# Counter Strike: Global Offensive
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -95,7 +95,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
CounterStrikeSource/cssserver

@ -2,8 +2,8 @@
# Counter Strike: Source
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -78,7 +78,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
DayOfDefeat/dodserver

@ -2,8 +2,8 @@
# Day of Defeat
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -77,7 +77,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
DayOfDefeatSource/dodsserver

@ -2,8 +2,8 @@
# Day of Defeat: Source
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -78,7 +78,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

4
DeathmatchClassic/dmcserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
# Version: 150315
# Version: 030515
#### Variables ####
@ -77,7 +77,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

4
DoubleActionBoogaloo/dabserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
# Version: 220315
# Version: 030515
#### Variables ####
@ -78,7 +78,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
FistfulOfFrags/fofserver

@ -2,8 +2,8 @@
# Fistful Of Frags
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -78,7 +78,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

4
GameServerQuery/gsquery.py

@ -2,8 +2,8 @@
# -*- coding: utf-8 -*-
# Game Server Query
# Author: Anonymous & Daniel Gibbs
# # Website: http://danielgibbs.co.uk
# Version: 210115
# # Website: http://gameservermanagers.com
# Version: 030515
import optparse
import socket

6
GarrysMod/gmodserver

@ -2,8 +2,8 @@
# Garry's Mod
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 160315
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -84,7 +84,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
HalfLife2Deathmatch/hl2dmserver

@ -2,8 +2,8 @@
# Half Life 2: Deathmatch
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -78,7 +78,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

4
HalfLifeDeathmatch/hldmserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
# Version: 150315
# Version: 030515
#### Variables ####
@ -77,7 +77,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

15
HalfLifeDeathmatchSource/cfg/lgsm-default.cfg

@ -0,0 +1,15 @@
// Server Name
hostname "hostname"
// RCON Password
rcon_password "rconpassword"
// Server Password
sv_password ""
// Server Logging
log on
sv_logbans 1
sv_logecho 1
sv_logfile 1
sv_log_onefile 0

98
HalfLifeDeathmatchSource/hldmsserver

@ -0,0 +1,98 @@
#!/bin/bash
# Half-Life Deathmatch: Source
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
# Version: 050515
#### Variables ####
# Notification Email
# (on|off)
emailnotification="off"
email="[email protected]"
# Steam login
steamuser="anonymous"
steampass=""
# Start Variables
defaultmap="crossfire"
maxplayers="16"
port="27015"
sourcetvport="27020"
clientport="27005"
ip="0.0.0.0"
# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server
fn_parms(){
parms="-game hl1mp -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}"
}
#### Advanced Variables ####
# Steam
appid="255470"
# Server Details
servicename="hldms-server"
gamename="Half-Life Deathmatch: Source"
engine="source"
# Directories
rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
selfname="$(basename $0)"
lockselfname=".${servicename}.lock"
filesdir="${rootdir}/serverfiles"
systemdir="${filesdir}/hl1mp"
executabledir="${filesdir}"
executable="./srcds_run"
servercfgdir="${systemdir}/cfg"
servercfg="${servicename}.cfg"
servercfgfullpath="${servercfgdir}/${servercfg}"
defaultcfg="${servercfgdir}/server.cfg"
backupdir="${rootdir}/backups"
# Logging
logdays="7"
gamelogdir="${systemdir}/logs"
scriptlogdir="${rootdir}/log/script"
consolelogdir="${rootdir}/log/console"
scriptlog="${scriptlogdir}/${servicename}-script.log"
consolelog="${consolelogdir}/${servicename}-console.log"
emaillog="${scriptlogdir}/${servicename}-email.log"
scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%d-%m-%Y-%H-%M-%S').log"
consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M-%S').log"
##### Script #####
# Do not edit
fn_runfunction(){
# Functions are downloaded and run with this function
if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
cd "${rootdir}"
if [ ! -d "functions" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}
fn_functions(){
# Functions are defined in fn_functions.
functionfile="${FUNCNAME}"
fn_runfunction
}
fn_functions
getopt=$1
fn_getopt

6
Insurgency/insserver

@ -2,8 +2,8 @@
# Insurgency
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -78,7 +78,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
JustCause2/jc2server

@ -2,8 +2,8 @@
# Just Cause 2
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -73,7 +73,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
KillingFloor/kfserver

@ -2,8 +2,8 @@
# Killing Floor
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -80,7 +80,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
Left4Dead/l4dserver

@ -3,8 +3,8 @@
# Server Management Script
# Author: Daniel Gibbs
# Contributor: Summit Singh Thakur
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -78,7 +78,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
Left4Dead2/l4d2server

@ -2,8 +2,8 @@
# Left 4 Dead 2
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -77,7 +77,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
NS2Combat/ns2cserver

@ -2,8 +2,8 @@
# NS2: Combat
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -83,7 +83,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
NaturalSelection2/ns2server

@ -2,8 +2,8 @@
# Natural Selection 2
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -83,7 +83,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
NoMoreRoomInHell/nmrihserver

@ -2,8 +2,8 @@
# No More Room in Hell
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -78,7 +78,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
OpposingForce/opforserver

@ -2,8 +2,8 @@
# Half-Life: Opposing Force
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -77,7 +77,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
ProjectZomboid/pzserver

@ -2,8 +2,8 @@
# Project Zomboid
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 150415
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -72,7 +72,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
RedOrchestra/roserver

@ -2,8 +2,8 @@
# Red Orchestra: Ostfront 41-45
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -76,7 +76,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
Ricochet/ricochetserver

@ -2,8 +2,8 @@
# Ricochet
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -77,7 +77,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
SeriousSam3BFE/ss3sserver

@ -2,8 +2,8 @@
# Serious Sam 3: BFE
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -74,7 +74,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
StarBound/sbserver

@ -2,8 +2,8 @@
# Starbound
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 230215
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -73,7 +73,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
TeamFortress2/tf2server

@ -2,8 +2,8 @@
# Team Fortress 2
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -78,7 +78,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
TeamFortressClassic/tfcserver

@ -2,8 +2,8 @@
# Team Fortress Classic
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -77,7 +77,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

7
TeamSpeak3/ts3server

@ -2,8 +2,9 @@
# Teamspeak 3
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 080214
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
# Notification Email
@ -52,7 +53,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
UnrealTournament2004/ut2k4server

@ -2,8 +2,8 @@
# Unreal Tournament 2004
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 070215
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -67,7 +67,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

6
UnrealTournament99/ut99server

@ -2,8 +2,8 @@
# Unreal Tournament 99
# Server Management Script
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 070215
# Website: http://gameservermanagers.com
# Version: 030515
#### Variables ####
@ -66,7 +66,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
fi
cd functions
echo -e "loading ${functionfile}...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1

2
functions/fn_backup

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_backup function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
# Description: Creates a .tar.gz file in the backup directory.

2
functions/fn_check_ip

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_check_ip function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 170415
# Description: Automatically identifies the server interface IP.

2
functions/fn_check_logs

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_check_logs function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 160415
# Description: Checks that log files exist on server start

2
functions/fn_check_root

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_check_root function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
if [ $(whoami) = "root" ]; then

4
functions/fn_check_steamcmd

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_check_steamcmd function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
# Description: Downloads SteamCMD on install and checks if missing before running functions that require SteamCMD
@ -21,7 +21,7 @@ elif [ "${modulename}" == "Starting" ]||[ "${modulename}" == "Update" ]; then
mkdir -pv "${rootdir}/steamcmd"
cd "${rootdir}/steamcmd"
echo -e "downloading steamcmd_linux.tar.gz...\c"
wget -N --no-check-certificate /dev/null http://media.steampowered.com/client/steamcmd_linux.tar.gz 2>&1 | grep -F HTTP | cut -c45-| uniq
wget -N /dev/null http://media.steampowered.com/client/steamcmd_linux.tar.gz 2>&1 | grep -F HTTP | cut -c45-| uniq
tar --verbose -zxf steamcmd_linux.tar.gz
rm -v steamcmd_linux.tar.gz
chmod +x steamcmd.sh

2
functions/fn_check_systemdir

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_check_systemdir function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
if [ ! -e "${systemdir}" ]; then

6
functions/fn_check_tmux

@ -1,12 +1,12 @@
#!/bin/bash
# LGSM fn_check_tmux function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 170415
# Checks if tmux is installed as too many users do not RTFM or know how to use Google.
if [ "$(command -v tmux)" ]||[ "$(which tmux)" ]||[ -f "/usr/bin/tmux" ]||[ -f "/bin/tmux" ]; then
if [ "$(command -v tmux)" ]||[ "$(which tmux >/dev/null 2>&1)" ]||[ -f "/usr/bin/tmux" ]||[ -f "/bin/tmux" ]; then
:
else
fn_printfailnl "Tmux not installed"
@ -15,6 +15,6 @@ else
echo " * Tmux is required to run this server."
# Suitable passive agressive message
echo " * Please see the the following link."
echo " * http://gameservermanagers.com/tmux"
echo " * http://gameservermanagers.com/tmux"
exit
fi

2
functions/fn_check_ts3status

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_check_ts3status function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 070215
# Checks the status of Teamspeak 3.

2
functions/fn_compress_unreal2maps

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_compress_unreal2maps function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
fn_check_root

2
functions/fn_compress_ut99maps

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_compress_ut99maps function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
fn_check_root

2
functions/fn_console

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_console function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
# Description: Gives access to the server tmux console.

2
functions/fn_csgofix

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_csgofix function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
# Description: Resolves various issues with csgo.

2
functions/fn_debug

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_debug function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 160415
# Description: Runs the server without tmux. Runs direct from the terminal.

2
functions/fn_details

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_details function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 190414
# Description: Displays server infomation.

2
functions/fn_details_config

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_details_config function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 160415
# Description: Gets specific details from config files.

2
functions/fn_details_distro

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_details_distro function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 140215
# Description: Variables providing useful info on the Operating System such as disk and performace info.

2
functions/fn_email

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_email function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
# Description: Sends email notification if monitor picks up a failure.

2
functions/fn_email_test

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_email_test function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
# Description: Sends a test email notification.

2
functions/fn_functions

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_functions function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 110415
# Description: Defines all functions to allow download and execution of functions using fn_runfunction.

22
functions/fn_getopt

@ -1,8 +1,8 @@
#!/bin/bash
# LGSM fn_getopt function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 150414
# Website: http://gameservermanagers.com
# Version: 060515
# Description: getopt arguments.
@ -16,6 +16,12 @@ case "$getopt" in
fn_restart;;
update)
fn_update_check;;
force-update)
forceupdate=1;
fn_update_check;;
update-restart)
forceupdate=1;
fn_update_check;;
validate)
fn_validate;;
monitor)
@ -35,7 +41,7 @@ case "$getopt" in
auto-install)
fn_autoinstall;;
*)
echo "Usage: $0 {start|stop|restart|update|validate|monitor|email-test|details|backup|console|debug|install|auto-install} $appendextra"
echo "Usage: $0 {start|stop|restart|update|force-update|validate|monitor|email-test|details|backup|console|debug|install|auto-install} $appendextra"
exit 1;;
esac
exit
@ -60,7 +66,7 @@ case "$getopt" in
backup)
fn_backup;;
*)
echo "Usage: $0 {start|stop|restart|update|monitor|email-test|details|backup} $appendextra"
echo "Usage: $0 {start|stop|restart|update|monitor|email-test|details|backup}"
exit 1;;
esac
exit
@ -91,7 +97,7 @@ case "$getopt" in
map-compressor)
fn_compress_ut99maps;;
*)
echo "Usage: $0 {start|stop|restart|monitor|email-test|details|backup|console|debug|install|map-compressor} $appendextra"
echo "Usage: $0 {start|stop|restart|monitor|email-test|details|backup|console|debug|install|map-compressor}"
exit 1;;
esac
exit
@ -129,7 +135,7 @@ case "$getopt" in
map-compressor)
fn_compress_unreal2maps;;
*)
echo "Usage: $0 {start|stop|restart|update|validate|monitor|email-test|details|backup|console|debug|install|auto-install|map-compressor} $appendextra"
echo "Usage: $0 {start|stop|restart|update|validate|monitor|email-test|details|backup|console|debug|install|auto-install|map-compressor}"
exit 1;;
esac
exit
@ -161,7 +167,7 @@ case "$getopt" in
map-compressor)
fn_compress_unreal2maps;;
*)
echo "Usage: $0 {start|stop|restart|monitor|email-test|details|backup|console|debug|install|map-compressor} $appendextra"
echo "Usage: $0 {start|stop|restart|monitor|email-test|details|backup|console|debug|install|map-compressor}"
exit 1;;
esac
exit
@ -178,4 +184,4 @@ elif [ "${engine}" == "unreal" ]; then
fn_getopt_unreal
else
fn_getopt_generic
fi
fi

2
functions/fn_insfix

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_insfix function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 110415
# Description: Resolves ./srcds_linux: error while loading shared libraries: libtier0.so: cannot open shared object file: No such file or directory

2
functions/fn_install

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_install function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 060315
fn_check_root

2
functions/fn_install_complete

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_install_complete function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
echo "================================="

42
functions/fn_install_config

@ -143,73 +143,73 @@ if [ "${gamename}" == "7 Days To Die" ]; then
fn_unity3dconfig
elif [ "${gamename}" == "ARMA 3" ]; then
echo -e "downloading lgsm-default.server.cfg & lgsm-default.network.cfg...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/Arma3/cfg/lgsm-default.server.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/Arma3/cfg/lgsm-default.network.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/Arma3/cfg/lgsm-default.server.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/Arma3/cfg/lgsm-default.network.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
sleep 1
fn_arma3config
elif [ "${gamename}" == "Blade Symphony" ]; then
echo -e "downloading lgsm-default.cfg...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/BladeSymphony/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/BladeSymphony/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
sleep 1
fn_goldsourceconfig
elif [ "${gamename}" == "Counter Strike 1.6" ]; then
echo -e "downloading lgsm-default.cfg...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/CounterStrike/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/CounterStrike/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
sleep 1
fn_goldsourceconfig
elif [ "${gamename}" == "Counter Strike: Condition Zero" ]; then
echo -e "downloading lgsm-default.cfg...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/CounterStrikeConditionZero/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/CounterStrikeConditionZero/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
sleep 1
fn_goldsourceconfig
elif [ "${gamename}" == "Counter Strike: Global Offensive" ]; then
echo -e "downloading lgsm-default.cfg...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/CounterStrikeGlobalOffensive/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/CounterStrikeGlobalOffensive/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
sleep 1
fn_sourceconfig
elif [ "${gamename}" == "Counter Strike: Source" ]; then
echo -e "downloading lgsm-default.cfg...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/CounterStrikeSource/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/CounterStrikeSource/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
sleep 1
fn_sourceconfig
elif [ "${gamename}" == "Day of Defeat" ]; then
echo -e "downloading lgsm-default.cfg...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/DayOfDefeat/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/DayOfDefeat/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
sleep 1
fn_goldsourceconfig
elif [ "${gamename}" == "Day of Defeat: Source" ]; then
echo -e "downloading lgsm-default.cfg...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/DayOfDefeatSource/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/DayOfDefeatSource/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
sleep 1
fn_sourceconfig
elif [ "${gamename}" == "Double Action: Boogaloo" ]; then
echo -e "downloading lgsm-default.cfg...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/DoubleActionBoogaloo/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/DoubleActionBoogaloo/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
sleep 1
fn_sourceconfig
elif [ "${gamename}" == "Fistful of Frags" ]; then
echo -e "downloading lgsm-default.cfg...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/FistfulOfFrags/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/FistfulOfFrags/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
sleep 1
fn_sourceconfig
elif [ "${gamename}" == "Garry's Mod" ]; then
echo -e "downloading lgsm-default.cfg...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/GarrysMod/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/GarrysMod/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
sleep 1
fn_sourceconfig
elif [ "${gamename}" == "Half Life 2: Deathmatch" ]; then
echo -e "downloading lgsm-default.cfg...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/HalfLife2Deathmatch/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/HalfLife2Deathmatch/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
sleep 1
fn_sourceconfig
elif [ "${gamename}" == "Half Life: Deathmatch Classic" ]; then
echo -e "downloading lgsm-default.cfg...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/HalfLifeDeathmatchClassic/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/HalfLifeDeathmatchClassic/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
sleep 1
fn_goldsourceconfig
elif [ "${gamename}" == "Insurgency" ]; then
echo -e "downloading lgsm-default.cfg...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/Insurgency/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/Insurgency/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
sleep 1
fn_sourceconfig
elif [ "${gamename}" == "Just Cause 2" ]; then
@ -218,17 +218,17 @@ elif [ "${gamename}" == "Killing Floor" ]; then
fn_unreal2config
elif [ "${gamename}" == "Left 4 Dead" ]; then
echo -e "downloading lgsm-default.cfg...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/Left4Dead/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/Left4Dead/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
sleep 1
fn_sourceconfig
elif [ "${gamename}" == "Left 4 Dead 2" ]; then
echo -e "downloading lgsm-default.cfg...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/Left4Dead2/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/Left4Dead2/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
sleep 1
fn_sourceconfig
elif [ "${gamename}" == "No More Room in Hell" ]; then
echo -e "downloading lgsm-default.cfg...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/NoMoreRoomInHell/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/NoMoreRoomInHell/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
sleep 1
fn_sourceconfig
elif [ "${gamename}" == "Natural Selection 2" ]; then
@ -239,17 +239,17 @@ elif [ "${gamename}" == "Red Orchestra: Ostfront 41-45" ]; then
fn_unreal2config
elif [ "${gamename}" == "Serious Sam 3: BFE" ]; then
echo -e "downloading lgsm-default.ini...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/SeriousSam3BFE/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/SeriousSam3BFE/cfg/lgsm-default.ini 2>&1 | grep -F HTTP | cut -c45- | uniq
sleep 1
fn_serious3config
elif [ "${gamename}" == "Team Fortress 2" ]; then
echo -e "downloading lgsm-default.cfg...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/TeamFortress2/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/TeamFortress2/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
sleep 1
fn_sourceconfig
elif [ "${gamename}" == "Team Fortress Classic" ]; then
echo -e "downloading lgsm-default.cfg...\c"
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/TeamFortressClassic/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/TeamFortressClassic/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq
sleep 1
fn_goldsourceconfig
elif [ "${gamename}" == "Unreal Tournament 2004" ]; then

4
functions/fn_install_gsquery

@ -1,13 +1,13 @@
#!/bin/bash
# LGSM fn_install_gsquery function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 100415
fn_dlgsquery(){
cd "${rootdir}"
echo -e "downloading gsquery.py...\c"
wget -N --no-check-certificate /dev/null "http://gameservermanagers.com/dl/gsquery.py" 2>&1 | grep -F "HTTP" | grep -v "Moved Permanently" | cut -c45- | uniq
wget -N /dev/null "http://gameservermanagers.com/dl/gsquery.py" 2>&1 | grep -F "HTTP" | grep -v "Moved Permanently" | cut -c45- | uniq
chmod +x gsquery.py
}

4
functions/fn_install_header

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_install_header function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
clear
@ -14,5 +14,5 @@ if [ "${gamename}" == "ARMA 3" ]; then
elif [ "${gamename}" == "Left 4 Dead" ]; then
echo "contributions by Summit Singh Thakur"
fi
echo "http://danielgibbs.co.uk"
echo "http://gameservermanagers.com"
echo "================================="

2
functions/fn_install_kffix

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_install_kffix function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
echo "Applying ${gamename} Server Fixes"

2
functions/fn_install_logs

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_install_logs function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 160415
echo ""

2
functions/fn_install_retry

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_install_retry function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
while true; do

2
functions/fn_install_rofix

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_install_rofix function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
echo "Applying ${gamename} Server Fixes"

2
functions/fn_install_serverdir

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_install_serverdir function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
echo ""

16
functions/fn_install_serverfiles

@ -1,8 +1,8 @@
#!/bin/bash
# LGSM fn_install_serverfiles function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 210115
# Website: http://gameservermanagers.com
# Version: 050515
fn_steaminstallcommand(){
counter="0"
@ -27,10 +27,16 @@ while [ "${counter}" == "0" ]||[ "$(grep -wc 0x402 .fn_install_serverfiles.tmp)"
rm -rf "${rootdir}/steamcmd"
fn_check_steamcmd
fi
# Detects if unbuffer command is available.
if [ $(command -v unbuffer) ]; then
unbuffer=unbuffer
fi
if [ "${counter}" -le "4" ]; then
./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" +quit |tee .fn_install_serverfiles.tmp
${unbuffer} ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" +quit |tee .fn_install_serverfiles.tmp
elif [ "${counter}" -ge "5" ]; then
./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" -validate +quit |tee .fn_install_serverfiles.tmp
${unbuffer} ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" -validate +quit |tee .fn_install_serverfiles.tmp
fi
elif [ "${counter}" -ge "11" ]; then
fn_printfailurenl "SteamCMD did not complete the download, too many retrys"
@ -45,7 +51,7 @@ if [ "${engine}" == "goldsource" ]; then
counter="0"
while [ "${counter}" -le "4" ]; do
counter=$((counter+1))
./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" -validate +quit |tee .fn_install_serverfiles.tmp
${unbuffer} ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" -validate +quit |tee .fn_install_serverfiles.tmp
done
fi
rm -f .fn_install_serverfiles.tmp

4
functions/fn_install_steamcmd

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_check_steamcmd function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
# Description: Downloads SteamCMD on install and checks if missing before running functions that require SteamCMD
@ -15,7 +15,7 @@ sleep 1
cd "steamcmd"
if [ ! -f steamcmd.sh ]; then
echo -e "downloading steamcmd_linux.tar.gz...\c"
wget -N --no-check-certificate /dev/null http://media.steampowered.com/client/steamcmd_linux.tar.gz 2>&1 | grep -F HTTP | cut -c45-| uniq
wget -N /dev/null http://media.steampowered.com/client/steamcmd_linux.tar.gz 2>&1 | grep -F HTTP | cut -c45-| uniq
tar --verbose -zxf steamcmd_linux.tar.gz
rm -v steamcmd_linux.tar.gz
chmod +x steamcmd.sh

2
functions/fn_install_steamfix

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_install_steamfix function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
fn_steamclientfix(){

2
functions/fn_install_ut2k4

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_install_ut2k4 function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
echo "Installing ${gamename} Server"

6
functions/fn_install_ut2k4filesdl

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_install_ut2k4filesdl function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
echo "Downloading Server Files"
@ -10,7 +10,7 @@ cd "${rootdir}"
mkdir -pv "${filesdir}"
cd "${filesdir}"
if [ ! -f dedicatedserver3339-bonuspack.zip ]; then
wget http://danielgibbs.co.uk/wp-content/uploads/ut2004/dedicatedserver3339-bonuspack.zip
wget http://gameservermanagers.com/files/ut2004/dedicatedserver3339-bonuspack.zip
else
echo "dedicatedserver3339-bonuspack.zip already downloaded!"
fi
@ -31,7 +31,7 @@ else
echo "MD5 checksum: PASSED"
fi
if [ ! -f ut2004-lnxpatch3369-2.tar.bz2 ]; then
wget http://danielgibbs.co.uk/wp-content/uploads/ut2004/ut2004-lnxpatch3369-2.tar.bz2
wget http://gameservermanagers.com/files/ut2004/ut2004-lnxpatch3369-2.tar.bz2
else
echo "ut2004-lnxpatch3369-2.tar.bz2 already downloaded!"
fi

2
functions/fn_install_ut2k4fix

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_install_ut2k4fix function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
echo "Applying ${gamename} Server Fixes"

2
functions/fn_install_ut2k4key

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_install_ut2k4key function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
echo "Enter ${gamename} CD Key"

2
functions/fn_install_ut99

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_install_ut99 function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
echo "Installing ${gamename} Server"

6
functions/fn_install_ut99filesdl

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_install_ut99filesdl function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 210115
echo "Downloading Server Files"
@ -10,7 +10,7 @@ cd "${rootdir}"
mkdir -pv "${filesdir}"
cd "${filesdir}"
if [ ! -f ut-server-436.tar.gz ]; then
wget http://danielgibbs.co.uk/wp-content/uploads/ut-server-436.tar.gz
wget http://gameservermanagers.com/files/ut99/ut-server-436.tar.gz
else
echo "ut-server-436.tar.gz already downloaded!"
fi
@ -31,7 +31,7 @@ else
echo "MD5 checksum: PASSED"
fi
if [ ! -f UTPGPatch451.tar.bz2 ]; then
wget http://danielgibbs.co.uk/wp-content/uploads/UTPGPatch451.tar.bz2
wget http://gameservermanagers.com/files/ut99/UTPGPatch451.tar.bz2
else
echo "UTPGPatch451.tar.bz2 already downloaded!"
fi

2
functions/fn_install_ut99fix

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_install_ut99fix function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 070215
echo "Applying ${gamename} Server Fixes"

34
functions/fn_logs

@ -1,8 +1,8 @@
#!/bin/bash
# LGSM fn_logs function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 080214
# Website: http://gameservermanagers.com
# Version: 260415
# Description: Acts as a log rotater, removing old logs.
@ -14,7 +14,7 @@ if [ -n "${consolelog}" ]; then
fi
fi
# log manager will active if finds logs older than ${logdays}
if [ $(find "${scriptlogdir}"/* -mtime +${logdays}|wc -l) -ne "0" ]; then
if [ $(find "${scriptlogdir}"/ -mtime +${logdays}|wc -l) -ne "0" ]; then
fn_printdots "Starting"
sleep 1
fn_printok "Starting"
@ -25,36 +25,38 @@ if [ $(find "${scriptlogdir}"/* -mtime +${logdays}|wc -l) -ne "0" ]; then
fn_scriptlog "Removing logs older than ${logdays} days"
sleep 1
echo -en "\n"
if [ "${engine}" == "unreal2" ]; then
find "${gamelogdir}"/* -mtime +${logdays}|tee >> "${scriptlog}"
if [ "${engine}" == "unreal2" ]||[ "${engine}" == "source" ]; then
find "${gamelogdir}"/ -mtime +${logdays}|tee >> "${scriptlog}"
fi
find "${scriptlogdir}"/* -mtime +${logdays}|tee >> "${scriptlog}"
find "${scriptlogdir}"/ -mtime +${logdays}|tee >> "${scriptlog}"
if [ -n "${consolelog}" ]; then
find "${consolelogdir}"/* -mtime +${logdays}|tee >> "${scriptlog}"
find "${consolelogdir}"/ -mtime +${logdays}|tee >> "${scriptlog}"
fi
if [ "${engine}" == "unreal2" ]; then
gamecount=$(find "${scriptlogdir}"/* -mtime +${logdays}|wc -l)
if [ "${engine}" == "unreal2" ]||[ "${engine}" == "source" ]; then
gamecount=$(find "${scriptlogdir}"/ -mtime +${logdays}|wc -l)
fi
scriptcount=$(find "${scriptlogdir}"/* -mtime +${logdays}|wc -l)
scriptcount=$(find "${scriptlogdir}"/ -mtime +${logdays}|wc -l)
echo "${consolelog}"
if [ -n "${consolelog}" ]; then
consolecount=$(find "${consolelogdir}"/* -mtime +${logdays}|wc -l)
consolecount=$(find "${consolelogdir}"/ -mtime +${logdays}|wc -l)
else
consolecount=0
fi
count=$((${scriptcount} + ${consolecount}))
if [ "${engine}" == "unreal2" ]; then
if [ "${engine}" == "unreal2" ]||[ "${engine}" == "source" ]; then
count=$((${scriptcount} + ${consolecount} + ${gamecount}))
else
count=$((${scriptcount} + ${consolecount}))
fi
if [ "${engine}" == "unreal2" ]; then
find "${gamelogdir}"/* -mtime +${logdays} -exec rm {} \;
if [ "${engine}" == "unreal2" ]||[ "${engine}" == "source" ]; then
find "${gamelogdir}"/ -mtime +${logdays} -exec rm {} \;
fi
find "${scriptlogdir}"/* -mtime +${logdays} -exec rm {} \;
find "${scriptlogdir}"/ -mtime +${logdays} -exec rm {} \;
if [ -n "${consolelog}" ]; then
find "${consolelogdir}"/* -mtime +${logdays} -exec rm {} \;
find "${consolelogdir}"/ -mtime +${logdays} -exec rm {} \;
fi
fn_printok "Removed ${count} log files"
fn_scriptlog "Removed ${count} log files"

2
functions/fn_messages

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_messages function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 260115
# Description: Defines on-screen messages such as [ OK ] and how script logs look.

2
functions/fn_monitor

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_monitor function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 230315
# Description: Monitors server by checking for running proccesses

36
functions/fn_start

@ -1,8 +1,8 @@
#!/bin/bash
# LGSM fn_start function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 220415
# Website: http://gameservermanagers.com
# Version: 070515
# Description: Starts the server.
@ -119,26 +119,33 @@ else
fi
sleep 1
tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -Ec "^${servicename}:")
# If the server fails to start
if [ "${tmuxwc}" -eq 0 ]; then
fn_printfail "Unable to start ${servername}"
fn_scriptlog "Unable to start ${servername}"
sleep 1
if [ -s "${scriptlogdir}/.${servicename}-tmux-error.tmp" ]; then
fn_printfail "Unable to start ${servername}: Tmux returned the following error:"
fn_scriptlog "tmux returned the following error"
fn_printfail "Unable to start ${servername}: Tmux error:"
fn_scriptlog "Tmux error"
sleep 1
echo -en "\n"
echo ""
echo "Command"
echo "================================="
echo "tmux new-session -d -s ${servicename} "${executable} ${parms}""
echo "tmux new-session -d -s ${servicename} "${executable} ${parms}"" >> "${scriptlog}"
echo ""
echo "Error"
echo "================================="
cat "${scriptlogdir}/.${servicename}-tmux-error.tmp"
cat "${scriptlogdir}/.${servicename}-tmux-error.tmp" >> "${scriptlog}"
sleep 1
echo ""
# Detected error http://gameservermanagers.com/issues
if [ $(grep -c "Operation not permitted" "${scriptlogdir}/.${servicename}-tmux-error.tmp") ];then
echo ""
echo "Fix"
echo "================================="
if [ ! $(grep "tty:" /etc/group|grep "$(whoami)") ];then
echo "================================="
echo "$(whoami) is not part of the tty group."
fn_scriptlog "$(whoami) is not part of the tty group."
group=$(grep tty /etc/group)
@ -152,16 +159,9 @@ if [ "${tmuxwc}" -eq 0 ]; then
echo ""
echo "http://gameservermanagers.com/tmux-op-perm"
fn_scriptlog "http://gameservermanagers.com/tmux-op-perm"
echo "================================="
else
echo "$(whoami) is part of the tty group."
group=$(grep tty /etc/group)
echo ""
echo " ${group}"
fn_scriptlog "${group}"
echo ""
echo "No known fix currently."
fn_scriptlog "No known fix currently."
echo "No known fix currently. Please log an issue."
fn_scriptlog "No known fix currently. Please log an issue."
echo "http://gameservermanagers.com/issues"
fn_scriptlog "http://gameservermanagers.com/issues"
fi
@ -169,7 +169,7 @@ if [ "${tmuxwc}" -eq 0 ]; then
fi
else
fn_printok "${servername}"
fn_scriptlog "Started ${servername}"
fn_scriptlog "Started ${servername}"
fi
#rm "${scriptlogdir}/.${servicename}-tmux-error.tmp"
echo -en "\n"

2
functions/fn_stop

@ -1,7 +1,7 @@
#!/bin/bash
# LGSM fn_stop function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Website: http://gameservermanagers.com
# Version: 080214
# Description: Stops the server.

12
functions/fn_update_check

@ -1,8 +1,8 @@
#!/bin/bash
# LGSM fn_update_check function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 220415
# Website: http://gameservermanagers.com
# Version: 080515
# Description: Checks if a server update is available.
@ -72,7 +72,8 @@ sleep 1
fn_printok "Checking for update: Server logs"
fn_scriptlog "Checking for update: Server logs"
sleep 1
requestrestart=$(grep -sc "MasterRequestRestart" "${consolelog}")
requestrestart=$(grep -Ec "MasterRequestRestart" "${consolelog}")
echo "${requestrestart}"
if [ "${requestrestart}" -ge "1" ]; then
fn_printoknl "Server requesting update"
sleep 1
@ -111,7 +112,7 @@ currentbuild=$(grep buildid "${appmanifestfile}" | tr '[:blank:]"' ' ' | tr -s '
# Gets availablebuild info
cd "${rootdir}/steamcmd"
availablebuild=$(./steamcmd.sh +login "${steamuser}" "${steampass}" +app_info_print "${appid}" +app_info_print "${appid}" +quit | grep -EA 1000 "^\s+\"branches\"$" | grep -EA 5 "^\s+\"public\"$" | grep -m 1 -EB 10 "^\s+}$" | grep -E "^\s+\"buildid\"\s+" | tr '[:blank:]"' ' ' | tr -s ' ' | cut -d\ -f3)
availablebuild=$(./steamcmd.sh +login "${steamuser}" "${steampass}" +app_info_update 1 +app_info_print "${appid}" +app_info_print "${appid}" +quit | grep -EA 1000 "^\s+\"branches\"$" | grep -EA 5 "^\s+\"public\"$" | grep -m 1 -EB 10 "^\s+}$" | grep -E "^\s+\"buildid\"\s+" | tr '[:blank:]"' ' ' | tr -s ' ' | cut -d\ -f3)
if [ -z "${availablebuild}" ]; then
fn_printfail "Checking for update: SteamCMD"
fn_scriptlog "Failure! Checking for update: SteamCMD"
@ -283,8 +284,9 @@ fi
fn_printdots "Checking for update"
if [ "${gamename}" == "Teamspeak 3" ]; then
fn_teamspeak3_check
elif [ "${engine}" == "goldsource" ]; then
elif [ "${engine}" == "goldsource" ]||[ "${forceupdate}" == "1" ]; then
# Goldsource servers bypass checks as fn_steamcmdcheck does not work for appid 90 servers.
# forceupdate bypasses checks
tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -Ec "^${servicename}:")
if [ "${tmuxwc}" -eq 1 ]; then
fn_stop

14
functions/fn_update_dl

@ -1,8 +1,8 @@
#!/bin/bash
# LGSM fn_update_dl function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 150315
# Website: http://gameservermanagers.com
# Version: 050515
# Description: Runs a server update.
@ -20,7 +20,13 @@ fn_scriptlog "Updating ${servername}"
sleep 1
cd "${rootdir}"
cd "steamcmd"
./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" +quit|tee -a "${scriptlog}"
# Detects if unbuffer command is available.
if [ $(command -v unbuffer) ]; then
unbuffer=unbuffer
fi
${unbuffer} ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" +quit|tee -a "${scriptlog}"
}
fn_teamspeak3_dl(){
@ -35,7 +41,7 @@ sleep 1
cd "${rootdir}"
echo -e "downloading teamspeak3-server_linux-${ts3arch}-${availablebuild}.tar.gz...\c"
fn_scriptlog "Downloading teamspeak3-server_linux-${ts3arch}-${availablebuild}.tar.gz"
wget -N --no-check-certificate /dev/null http://dl.4players.de/ts/releases/${ts3_version_number}/teamspeak3-server_linux-${ts3arch}-${ts3_version_number}.tar.gz 2>&1 | grep -F HTTP | cut -c45-| uniq
wget -N /dev/null http://dl.4players.de/ts/releases/${ts3_version_number}/teamspeak3-server_linux-${ts3arch}-${ts3_version_number}.tar.gz 2>&1 | grep -F HTTP | cut -c45-| uniq
sleep 1
echo -e "extracting teamspeak3-server_linux-${ts3arch}-${availablebuild}.tar.gz...\c"
fn_scriptlog "Extracting teamspeak3-server_linux-${ts3arch}-${availablebuild}.tar.gz"

11
functions/fn_validate

@ -1,8 +1,8 @@
#!/bin/bash
# LGSM fn_validate function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 150415
# Website: http://gameservermanagers.com
# Version: 050515
# Description: Runs a server validation.
@ -22,7 +22,12 @@ fn_scriptlog "Checking server files"
sleep 1
cd "${rootdir}"
cd "steamcmd"
./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" validate +quit|tee -a "${scriptlog}"
if [ $(command -v unbuffer) ]; then
unbuffer=unbuffer
fi
${unbuffer} ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" validate +quit|tee -a "${scriptlog}"
fn_scriptlog "Checking complete"
}

Loading…
Cancel
Save