40 changed files with 88 additions and 170 deletions
@ -4,7 +4,7 @@ |
|||||
# Author: Daniel Gibbs |
# Author: Daniel Gibbs |
||||
# Contributor: Scarsz |
# Contributor: Scarsz |
||||
# Website: http://gameservermanagers.com |
# Website: http://gameservermanagers.com |
||||
# Version: 030515 |
# Version: 090515 |
||||
|
|
||||
#### Variables #### |
#### Variables #### |
||||
|
|
||||
@ -17,8 +17,9 @@ email="[email protected]" |
|||||
steamuser="username" |
steamuser="username" |
||||
steampass="password" |
steampass="password" |
||||
|
|
||||
# Server IP |
# Start Variables |
||||
ip="0.0.0.0" |
ip="0.0.0.0" |
||||
|
updateonstart="no" |
||||
|
|
||||
fn_parms(){ |
fn_parms(){ |
||||
parms="-netlog -ip=${ip} -cfg=${networkcfgfullpath} -config=${servercfgfullpath} -mod=${mods}" |
parms="-netlog -ip=${ip} -cfg=${networkcfgfullpath} -config=${servercfgfullpath} -mod=${mods}" |
||||
|
@ -3,7 +3,7 @@ |
|||||
# Server Management Script |
# Server Management Script |
||||
# Author: Daniel Gibbs |
# Author: Daniel Gibbs |
||||
# Website: http://gameservermanagers.com |
# Website: http://gameservermanagers.com |
||||
# Version: 030515 |
# Version: 090515 |
||||
|
|
||||
#### Variables #### |
#### Variables #### |
||||
|
|
||||
@ -12,6 +12,9 @@ |
|||||
emailnotification="off" |
emailnotification="off" |
||||
email="[email protected]" |
email="[email protected]" |
||||
|
|
||||
|
# Start Variables |
||||
|
updateonstart="no" |
||||
|
|
||||
# Server Details |
# Server Details |
||||
gamename="Teamspeak 3" |
gamename="Teamspeak 3" |
||||
servername="Teamspeak 3 Server" |
servername="Teamspeak 3 Server" |
||||
|
@ -1,84 +0,0 @@ |
|||||
#!/bin/bash |
|
||||
# LGSM fn_select function |
|
||||
# Author: Ilija Matoski ([email protected]) |
|
||||
# Website: https://matoski.com |
|
||||
# Version: 010316 |
|
||||
|
|
||||
# Description: Automatically selects a created server from the available ones defined in the root |
|
||||
# If no server files found <name>.<appid> it will default to the data in the game file |
|
||||
|
|
||||
if [ $usesrvcfg -eq 1 ]; then |
|
||||
|
|
||||
if [ -z "$appid" ]; then |
|
||||
fn_printwarn "appid not found for $gamename, this is not supported.\n\n" |
|
||||
exit |
|
||||
fi |
|
||||
|
|
||||
# get all the available configs for the appid |
|
||||
cfgs=() |
|
||||
filelist=(`find $rootdir -type f -name "*.$appid"`) |
|
||||
for file in "${filelist[@]}"; do |
|
||||
cfg=${file:${#rootdir}+1} |
|
||||
cfg=${cfg:0:${#cfg} - 4} |
|
||||
cfgs+=("$cfg") |
|
||||
done |
|
||||
|
|
||||
# create the append extra list for the options |
|
||||
appendextra=$(printf "|%s" "${cfgs[@]}") |
|
||||
appendextra=${appendextra:1} |
|
||||
loadcfg= |
|
||||
invalidcfg=0 |
|
||||
reinit=0 |
|
||||
|
|
||||
# if we don't have any config files proced as normal so skip the next part |
|
||||
if [ ${#cfgs[@]} -eq 1 ]; then |
|
||||
# we have only one config file so we load that one only unless the user specifies it manually, then we verify |
|
||||
loadcfg="${cfgs[0]}"; |
|
||||
if [ ! -z "$getsrvcfg" ] && [ ! -f "${getsrvcfg}.${appid}" ]; then |
|
||||
invalidcfg=1 |
|
||||
fi |
|
||||
elif [ ${#cfgs[@]} -gt 0 ]; then |
|
||||
# we have more than one files available so we continue on the verification if the file is present |
|
||||
loadcfg="$getsrvcfg"; |
|
||||
if [ -z "$getsrvcfg" ] || [ ! -f "${getsrvcfg}.${appid}" ]; then |
|
||||
invalidcfg=1 |
|
||||
fi |
|
||||
else |
|
||||
# we don't have anything so we need to continue on without touching anything |
|
||||
reinit=0 |
|
||||
loadcfg= |
|
||||
fi |
|
||||
|
|
||||
# it's invalid cfg setting |
|
||||
if [ $invalidcfg -eq 1 ]; then |
|
||||
if [ -z "$getsrvcfg" ]; then |
|
||||
fn_printwarn "configuration file not specified, use one of the available ones ($appendextra)\n" |
|
||||
else |
|
||||
fn_printwarn "$getsrvcfg configuration file does not exist, use one of the available ones ($appendextra)\n" |
|
||||
fi |
|
||||
getopt= |
|
||||
fn_getopt |
|
||||
else |
|
||||
if [ ! -z "$loadcfg" ] && [ -f "${getsrvcfg}.${appid}" ]; then |
|
||||
# everything OK, load the config file and reinit the variables |
|
||||
source "${loadcfg}.${appid}" |
|
||||
reinit=1 |
|
||||
fi |
|
||||
fi |
|
||||
|
|
||||
if [ $reinit -eq 1 ]; then |
|
||||
case "$appid" in |
|
||||
*) |
|
||||
lockselfname=".${servicename}.lock" |
|
||||
servercfg="${servicename}.cfg" |
|
||||
servercfgfullpath="${servercfgdir}/${servercfg}" |
|
||||
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" |
|
||||
;; |
|
||||
esac |
|
||||
fi |
|
||||
|
|
||||
fi |
|
@ -1,33 +0,0 @@ |
|||||
#!/bin/bash |
|
||||
# LGSM fn_sdtd_allocfixes function |
|
||||
# Author: Daniel Gibbs |
|
||||
# Website: http://danielgibbs.co.uk |
|
||||
# Version: 204014 |
|
||||
|
|
||||
# Description: Stops the server. |
|
||||
|
|
||||
if [ "${allocsfixes}" = true ]; then |
|
||||
sleep 5 |
|
||||
fn_scriptlog "Installing Alloc's Server Fixes" |
|
||||
echo -en "\n" |
|
||||
sleep 5 |
|
||||
echo -en "Installing Alloc's Server Fixes\n" |
|
||||
cd "${rootdir}"/serverfiles/ |
|
||||
rm -rf server_fixes.tar.gz |
|
||||
wget http://illy.bz/fi/7dtd/server_fixes.tar.gz |
|
||||
if [ -f "server_fixes.tar.gz" ]; then |
|
||||
tar -xzf server_fixes.tar.gz |
|
||||
rm -rf server_fixes.tar.gz |
|
||||
fn_scriptlog "Server Fixes Installed" |
|
||||
echo -en "Alloc's Server Fixes have been installed.\n" |
|
||||
else |
|
||||
if [ ! -f "server_fixes.tar.gz" ]; then |
|
||||
fn_scriptlog "Error downloading Server Fixes!" |
|
||||
fi |
|
||||
echo -en "There was a problem installing Alloc's Server Fixes!" |
|
||||
fi |
|
||||
|
|
||||
fn_scriptlog "Alloc's Server Fixes installed." |
|
||||
echo -en "FAlloc's Server Fixes installed.\n" |
|
||||
fi |
|
||||
} |
|
Loading…
Reference in new issue