94 changed files with 1621 additions and 205 deletions
@ -0,0 +1,141 @@ |
|||
#!/bin/bash |
|||
# Battlefield: 1942 |
|||
# Server Management Script |
|||
# Author: Daniel Gibbs |
|||
# Website: https://gameservermanagers.com |
|||
if [ -f ".dev-debug" ]; then |
|||
exec 5>dev-debug.log |
|||
BASH_XTRACEFD="5" |
|||
set -x |
|||
fi |
|||
|
|||
version="210516" |
|||
|
|||
#### Variables #### |
|||
|
|||
# Notification Alerts |
|||
# (on|off) |
|||
|
|||
# Email |
|||
emailalert="off" |
|||
email="[email protected]" |
|||
|
|||
# Pushbullet |
|||
# https://www.pushbullet.com/#settings |
|||
pushbulletalert="off" |
|||
pushbullettoken="accesstoken" |
|||
|
|||
# Start Variables |
|||
ip="0.0.0.0" |
|||
|
|||
fn_parms(){ |
|||
parms=" +hostServer 1 +dedicated 1" |
|||
} |
|||
|
|||
#### Advanced Variables #### |
|||
|
|||
# Github Branch Select |
|||
# Allows for the use of different function files |
|||
# from a different repo and/or branch. |
|||
githubuser="dgibbs64" |
|||
githubrepo="linuxgsm" |
|||
githubbranch="master" |
|||
|
|||
# Server Details |
|||
servicename="bf1942-server" |
|||
gamename="Battlefield: 1942" |
|||
engine="refractor" |
|||
|
|||
# Directories |
|||
rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" |
|||
selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" |
|||
lockselfname=".${servicename}.lock" |
|||
lgsmdir="${rootdir}/lgsm" |
|||
functionsdir="${lgsmdir}/functions" |
|||
libdir="${lgsmdir}/lib" |
|||
filesdir="${rootdir}/serverfiles" |
|||
systemdir="${filesdir}" |
|||
executabledir="${systemdir}" |
|||
executable="./start.sh" |
|||
servercfg="serversettings.con" |
|||
servercfgdir="${systemdir}/mods/bf1942/settings" |
|||
servercfgfullpath="${servercfgdir}/${servercfg}" |
|||
backupdir="${rootdir}/backups" |
|||
|
|||
# Logging |
|||
logdays="7" |
|||
gamelogdir="${filesdir}/Logs" |
|||
scriptlogdir="${rootdir}/log/script" |
|||
consolelogdir="${rootdir}/log/console" |
|||
consolelogging="on" |
|||
|
|||
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 |
|||
|
|||
# Fetches core_dl for file downloads |
|||
fn_fetch_core_dl(){ |
|||
github_file_url_dir="lgsm/functions" |
|||
github_file_url_name="${functionfile}" |
|||
filedir="${functionsdir}" |
|||
filename="${github_file_url_name}" |
|||
githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${github_file_url_name}" |
|||
# If the file is missing, then download |
|||
if [ ! -f "${filedir}/${filename}" ]; then |
|||
if [ ! -d "${filedir}" ]; then |
|||
mkdir -p "${filedir}" |
|||
fi |
|||
echo -e " fetching ${filename}...\c" |
|||
# Check curl exists and use available path |
|||
curlpaths="$(command -v curl 2>/dev/null) $(which curl >/dev/null 2>&1) /usr/bin/curl /bin/curl /usr/sbin/curl /sbin/curl)" |
|||
for curlcmd in ${curlpaths} |
|||
do |
|||
if [ -x "${curlcmd}" ]; then |
|||
break |
|||
fi |
|||
done |
|||
# If curl exists download file |
|||
if [ "$(basename ${curlcmd})" == "curl" ]; then |
|||
curlfetch=$(${curlcmd} -s --fail -o "${filedir}/${filename}" "${githuburl}" 2>&1) |
|||
if [ $? -ne 0 ]; then |
|||
echo -e "\e[0;31mFAIL\e[0m\n" |
|||
echo "${curlfetch}" |
|||
echo -e "${githuburl}\n" |
|||
exit 1 |
|||
else |
|||
echo -e "\e[0;32mOK\e[0m" |
|||
fi |
|||
else |
|||
echo -e "\e[0;31mFAIL\e[0m\n" |
|||
echo "Curl is not installed!" |
|||
echo -e "" |
|||
exit 1 |
|||
fi |
|||
chmod +x "${filedir}/${filename}" |
|||
fi |
|||
source "${filedir}/${filename}" |
|||
} |
|||
|
|||
core_dl.sh(){ |
|||
# Functions are defined in core_functions.sh. |
|||
functionfile="${FUNCNAME}" |
|||
fn_fetch_core_dl |
|||
} |
|||
|
|||
core_functions.sh(){ |
|||
# Functions are defined in core_functions.sh. |
|||
functionfile="${FUNCNAME}" |
|||
fn_fetch_core_dl |
|||
} |
|||
|
|||
core_dl.sh |
|||
core_functions.sh |
|||
|
|||
getopt=$1 |
|||
core_getopt.sh |
@ -0,0 +1,125 @@ |
|||
set dedicated "2" // 1: dedicated server for lan 2: dedicated server for internet |
|||
// set net_ip "" // set to override the default IP ET uses |
|||
// set net_port "27960" // set to override the default port ET uses |
|||
|
|||
// PASSWORDS & CLIENTS |
|||
|
|||
set sv_maxclients "20" // number of players including private slots |
|||
set g_password "" // set to password protect the server |
|||
set sv_privateclients "4" // if set > 0, then this number of client slots will be reserved for connections |
|||
set sv_privatepassword "" // that have "password" set to the value of "sv_privatePassword" |
|||
set rconpassword "<rconpassword>" // remote console access password |
|||
set refereePassword "" // referee status password |
|||
|
|||
// DL, RATE |
|||
|
|||
set sv_maxRate "13000" // 10000 standard but poor for ET |
|||
set sv_dl_maxRate "42000" // increase/decerease if you have plenty/little spare bandwidth |
|||
set sv_allowDownload "0" // global toggle for both legacy download and web download |
|||
set sv_wwwDownload "0" // toggle to enable web download |
|||
set sv_wwwBaseURL "" // base URL for redirection |
|||
set sv_wwwDlDisconnected "0" // tell clients to perform their downloads while disconnected from the server |
|||
set sv_wwwFallbackURL "" // URL to send to if an http/ftp fails or is refused client side |
|||
|
|||
// MOTD ETC |
|||
|
|||
set sv_hostname "<hostname>" // name of server here |
|||
set server_motd0 " ^NEnemy Territory ^7MOTD " // message in right corner of join screen here |
|||
set server_motd1 "" |
|||
set server_motd2 "" |
|||
set server_motd3 "" |
|||
set server_motd4 "" |
|||
set server_motd5 "" |
|||
|
|||
// MISC SETTINGS |
|||
|
|||
set g_heavyWeaponRestriction "100" |
|||
set g_antilag "1" |
|||
set g_altStopwatchMode "0" |
|||
set g_autofireteams "1" |
|||
set g_complaintlimit "6" |
|||
set g_ipcomplaintlimit "3" |
|||
set g_fastres "0" |
|||
set g_friendlyFire "1" |
|||
//set g_gametype "4" // Game type should be set from map rotation script |
|||
set g_minGameClients "8" |
|||
set g_maxlives "0" |
|||
set g_alliedmaxlives "0" |
|||
set g_axismaxlives "0" |
|||
set g_teamforcebalance "1" |
|||
set g_noTeamSwitching "0" |
|||
set g_voiceChatsAllowed "4" |
|||
set g_doWarmup "0" |
|||
set g_warmup "30" |
|||
set g_spectatorInactivity "0" |
|||
set sv_floodProtect "1" |
|||
set sv_allowDownload "1" |
|||
set sv_pure "1" |
|||
set sv_minping "0" |
|||
set sv_maxping "0" |
|||
set match_latejoin "1" |
|||
set match_minplayers "4" |
|||
set match_mutespecs "0" |
|||
set match_readypercent "100" |
|||
set match_timeoutcount "0" |
|||
set match_warmupDamage "1" |
|||
set team_maxplayers "0" |
|||
set team_nocontrols "1" |
|||
set pmove_fixed "0" |
|||
set pmove_msec "8" |
|||
|
|||
// LMS ONLY SETTINGS |
|||
|
|||
set g_lms_teamForceBalance "1" |
|||
set g_lms_roundlimit "3" |
|||
set g_lms_matchlimit "2" |
|||
set g_lms_currentMatch "0" |
|||
set g_lms_lockTeams "0" |
|||
set g_lms_followTeamOnly "1" |
|||
|
|||
// VOTING |
|||
|
|||
set g_allowVote "1" |
|||
set vote_limit "5" |
|||
set vote_percent "50" |
|||
set vote_allow_comp "1" |
|||
set vote_allow_gametype "1" |
|||
set vote_allow_kick "1" |
|||
set vote_allow_map "1" |
|||
set vote_allow_matchreset "1" |
|||
set vote_allow_mutespecs "1" |
|||
set vote_allow_nextmap "1" |
|||
set vote_allow_pub "1" |
|||
set vote_allow_referee "0" |
|||
set vote_allow_shuffleteams "1" |
|||
set vote_allow_swapteams "1" |
|||
set vote_allow_friendlyfire "1" |
|||
set vote_allow_timelimit "0" |
|||
set vote_allow_warmupdamage "1" |
|||
set vote_allow_antilag "1" |
|||
set vote_allow_balancedteams "1" |
|||
set vote_allow_muting "1" |
|||
|
|||
// PUNKBUSTER |
|||
|
|||
// sv_punkbuster is a readonly variable. Use +set sv_punkbuster on command line or use the command pb_sv_enable in the console |
|||
//pb_sv_enable |
|||
|
|||
// LOGGING |
|||
|
|||
set g_log "etserver.log" // Game logging |
|||
set g_logsync 0 |
|||
set logfile 0 // Console logging ( 1: enable 2: enable and sync ) |
|||
|
|||
// MAP ROTATION |
|||
|
|||
exec campaigncycle.cfg // Campaign mode |
|||
//exec objectivecycle.cfg // Objective mode |
|||
//exec lmscycle.cfg // Last Man Standing mode |
|||
|
|||
// WATCHDOG |
|||
|
|||
// in case the game dies with an ERR_DROP |
|||
// or any situation leading to server running with no map |
|||
//set com_watchdog 10 // defaults 60 |
|||
set com_watchdog_cmd "exec campaigncycle.cfg" // defaults to quit |
@ -0,0 +1,143 @@ |
|||
#!/bin/bash |
|||
# Enemy Territory |
|||
# Server Management Script |
|||
# Author: Daniel Gibbs |
|||
# Website: https://gameservermanagers.com |
|||
if [ -f ".dev-debug" ]; then |
|||
exec 5>dev-debug.log |
|||
BASH_XTRACEFD="5" |
|||
set -x |
|||
fi |
|||
|
|||
version="210516" |
|||
|
|||
#### Variables #### |
|||
|
|||
# Notification Alerts |
|||
# (on|off) |
|||
|
|||
# Email |
|||
emailalert="off" |
|||
email="[email protected]" |
|||
|
|||
# Pushbullet |
|||
# https://www.pushbullet.com/#settings |
|||
pushbulletalert="off" |
|||
pushbullettoken="accesstoken" |
|||
|
|||
# Start Variables |
|||
ip="0.0.0.0" |
|||
port="27960" |
|||
|
|||
fn_parms(){ |
|||
parms="+set net_strict 1 +set net_ip ${ip} +set net_port ${port} +set fs_homepath ${filesdir} +exec ${servicename}.cfg" |
|||
} |
|||
|
|||
#### Advanced Variables #### |
|||
|
|||
# Github Branch Select |
|||
# Allows for the use of different function files |
|||
# from a different repo and/or branch. |
|||
githubuser="GameServerManagers" |
|||
githubrepo="LinuxGSM" |
|||
githubbranch="master" |
|||
|
|||
# Server Details |
|||
servicename="et-server" |
|||
gamename="Enemy Territory" |
|||
engine="idtech3" |
|||
|
|||
# Directories |
|||
rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" |
|||
selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" |
|||
lockselfname=".${servicename}.lock" |
|||
lgsmdir="${rootdir}/lgsm" |
|||
functionsdir="${lgsmdir}/functions" |
|||
libdir="${lgsmdir}/lib" |
|||
filesdir="${rootdir}/serverfiles" |
|||
systemdir="${filesdir}" |
|||
executabledir="${systemdir}" |
|||
executable="./etded" |
|||
servercfg="${servicename}.cfg" |
|||
servercfgdir="${systemdir}/etmain" |
|||
servercfgfullpath="${servercfgdir}/${servercfg}" |
|||
servercfgdefault="${servercfgdir}/lgsm-default.cfg" |
|||
backupdir="${rootdir}/backups" |
|||
|
|||
# Logging |
|||
logdays="7" |
|||
gamelogdir="${filesdir}/Logs" |
|||
scriptlogdir="${rootdir}/log/script" |
|||
consolelogdir="${rootdir}/log/console" |
|||
consolelogging="on" |
|||
|
|||
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 |
|||
|
|||
# Fetches core_dl for file downloads |
|||
fn_fetch_core_dl(){ |
|||
github_file_url_dir="lgsm/functions" |
|||
github_file_url_name="${functionfile}" |
|||
filedir="${functionsdir}" |
|||
filename="${github_file_url_name}" |
|||
githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${github_file_url_name}" |
|||
# If the file is missing, then download |
|||
if [ ! -f "${filedir}/${filename}" ]; then |
|||
if [ ! -d "${filedir}" ]; then |
|||
mkdir -p "${filedir}" |
|||
fi |
|||
echo -e " fetching ${filename}...\c" |
|||
# Check curl exists and use available path |
|||
curlpaths="$(command -v curl 2>/dev/null) $(which curl >/dev/null 2>&1) /usr/bin/curl /bin/curl /usr/sbin/curl /sbin/curl)" |
|||
for curlcmd in ${curlpaths} |
|||
do |
|||
if [ -x "${curlcmd}" ]; then |
|||
break |
|||
fi |
|||
done |
|||
# If curl exists download file |
|||
if [ "$(basename ${curlcmd})" == "curl" ]; then |
|||
curlfetch=$(${curlcmd} -s --fail -o "${filedir}/${filename}" "${githuburl}" 2>&1) |
|||
if [ $? -ne 0 ]; then |
|||
echo -e "\e[0;31mFAIL\e[0m\n" |
|||
echo "${curlfetch}" |
|||
echo -e "${githuburl}\n" |
|||
exit 1 |
|||
else |
|||
echo -e "\e[0;32mOK\e[0m" |
|||
fi |
|||
else |
|||
echo -e "\e[0;31mFAIL\e[0m\n" |
|||
echo "Curl is not installed!" |
|||
echo -e "" |
|||
exit 1 |
|||
fi |
|||
chmod +x "${filedir}/${filename}" |
|||
fi |
|||
source "${filedir}/${filename}" |
|||
} |
|||
|
|||
core_dl.sh(){ |
|||
# Functions are defined in core_functions.sh. |
|||
functionfile="${FUNCNAME}" |
|||
fn_fetch_core_dl |
|||
} |
|||
|
|||
core_functions.sh(){ |
|||
# Functions are defined in core_functions.sh. |
|||
functionfile="${FUNCNAME}" |
|||
fn_fetch_core_dl |
|||
} |
|||
|
|||
core_dl.sh |
|||
core_functions.sh |
|||
|
|||
getopt=$1 |
|||
core_getopt.sh |
@ -0,0 +1,40 @@ |
|||
#Minecraft server properties (LGSM 210516) |
|||
#Sat Aug 20 17:30:15 CEST 2016 |
|||
allow-flight=false |
|||
allow-nether=true |
|||
announce-player-achievements=true |
|||
difficulty=1 |
|||
enable-command-block=false |
|||
enable-query=false |
|||
enable-rcon=false |
|||
force-gamemode=false |
|||
gamemode=0 |
|||
generate-structures=true |
|||
generator-settings= |
|||
hardcore=false |
|||
level-name=world |
|||
level-seed= |
|||
level-type=DEFAULT |
|||
max-build-height=256 |
|||
max-players=20 |
|||
max-tick-time=60000 |
|||
max-world-size=29999984 |
|||
motd=A Minecraft Server |
|||
network-compression-threshold=256 |
|||
online-mode=true |
|||
op-permission-level=4 |
|||
player-idle-timeout=0 |
|||
pvp=true |
|||
rcon.password= |
|||
rcon.port=25575 |
|||
resource-pack-sha1= |
|||
resource-pack= |
|||
server-ip= |
|||
server-port=25565 |
|||
snooper-enabled=true |
|||
spawn-animals=true |
|||
spawn-monsters=true |
|||
spawn-npcs=true |
|||
use-native-transport=true |
|||
view-distance=10 |
|||
white-list=false |
@ -0,0 +1,142 @@ |
|||
#!/bin/bash |
|||
# Minecraft |
|||
# Server Management Script |
|||
# Author: Daniel Gibbs |
|||
# Website: https://gameservermanagers.com |
|||
if [ -f ".dev-debug" ]; then |
|||
exec 5>dev-debug.log |
|||
BASH_XTRACEFD="5" |
|||
set -x |
|||
fi |
|||
|
|||
version="210816" |
|||
|
|||
#### Variables #### |
|||
|
|||
# Notification Alerts |
|||
# (on|off) |
|||
|
|||
# Email |
|||
emailalert="off" |
|||
email="[email protected]" |
|||
|
|||
# Pushbullet |
|||
# https://www.pushbullet.com/#settings |
|||
pushbulletalert="off" |
|||
pushbullettoken="accesstoken" |
|||
|
|||
# Start Variables |
|||
updateonstart="off" |
|||
javaram="1024" # -Xmx$1024M |
|||
|
|||
fn_parms(){ |
|||
parms="nogui" |
|||
} |
|||
|
|||
#### Advanced Variables #### |
|||
|
|||
# Github Branch Select |
|||
# Allows for the use of different function files |
|||
# from a different repo and/or branch. |
|||
githubuser="GameServerManagers" |
|||
githubrepo="LinuxGSM" |
|||
githubbranch="master" |
|||
|
|||
# Server Details |
|||
servicename="mc-server" |
|||
gamename="Minecraft" |
|||
engine="lwjgl2" |
|||
|
|||
# Directories |
|||
rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" |
|||
selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" |
|||
lockselfname=".${servicename}.lock" |
|||
lgsmdir="${rootdir}/lgsm" |
|||
functionsdir="${lgsmdir}/functions" |
|||
filesdir="${rootdir}/serverfiles" |
|||
systemdir="${filesdir}" |
|||
executabledir="${filesdir}" |
|||
executable="java -Xmx${javaram}M -jar minecraft_server.jar" |
|||
servercfg="server.properties" |
|||
servercfgdir="${filesdir}" |
|||
servercfgfullpath="${servercfgdir}/${servercfg}" |
|||
servercfgdefault="${servercfgdir}/lgsm-default.ini" |
|||
backupdir="${rootdir}/backups" |
|||
|
|||
# Logging |
|||
logdays="7" |
|||
gamelogdir="${systemdir}/logs" |
|||
scriptlogdir="${rootdir}/log/script" |
|||
consolelogdir="${rootdir}/log/console" |
|||
consolelogging="on" |
|||
|
|||
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 |
|||
|
|||
# Fetches core_dl for file downloads |
|||
fn_fetch_core_dl(){ |
|||
github_file_url_dir="lgsm/functions" |
|||
github_file_url_name="${functionfile}" |
|||
filedir="${functionsdir}" |
|||
filename="${github_file_url_name}" |
|||
githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${github_file_url_name}" |
|||
# If the file is missing, then download |
|||
if [ ! -f "${filedir}/${filename}" ]; then |
|||
if [ ! -d "${filedir}" ]; then |
|||
mkdir -p "${filedir}" |
|||
fi |
|||
echo -e " fetching ${filename}...\c" |
|||
# Check curl exists and use available path |
|||
curlpaths="$(command -v curl 2>/dev/null) $(which curl >/dev/null 2>&1) /usr/bin/curl /bin/curl /usr/sbin/curl /sbin/curl)" |
|||
for curlcmd in ${curlpaths} |
|||
do |
|||
if [ -x "${curlcmd}" ]; then |
|||
break |
|||
fi |
|||
done |
|||
# If curl exists download file |
|||
if [ "$(basename ${curlcmd})" == "curl" ]; then |
|||
curlfetch=$(${curlcmd} -s --fail -o "${filedir}/${filename}" "${githuburl}" 2>&1) |
|||
if [ $? -ne 0 ]; then |
|||
echo -e "\e[0;31mFAIL\e[0m\n" |
|||
echo "${curlfetch}" |
|||
echo -e "${githuburl}\n" |
|||
exit 1 |
|||
else |
|||
echo -e "\e[0;32mOK\e[0m" |
|||
fi |
|||
else |
|||
echo -e "\e[0;31mFAIL\e[0m\n" |
|||
echo "Curl is not installed!" |
|||
echo -e "" |
|||
exit 1 |
|||
fi |
|||
chmod +x "${filedir}/${filename}" |
|||
fi |
|||
source "${filedir}/${filename}" |
|||
} |
|||
|
|||
core_dl.sh(){ |
|||
# Functions are defined in core_functions.sh. |
|||
functionfile="${FUNCNAME}" |
|||
fn_fetch_core_dl |
|||
} |
|||
|
|||
core_functions.sh(){ |
|||
# Functions are defined in core_functions.sh. |
|||
functionfile="${FUNCNAME}" |
|||
fn_fetch_core_dl |
|||
} |
|||
|
|||
core_dl.sh |
|||
core_functions.sh |
|||
|
|||
getopt=$1 |
|||
core_getopt.sh |
@ -0,0 +1,3 @@ |
|||
[/Script/UnrealTournament.UTGameEngine] |
|||
bFirstRun=False |
|||
RconPassword="<rconpassword>" |
@ -0,0 +1,4 @@ |
|||
[/Script/UnrealTournament.UTGameState] |
|||
ServerName="<hostname>" |
|||
ServerMOTD=<UT.Font.NormalText.Huge>WELCOME</>\n\n<UT.Font.NormalText.Medium>Headshots for everyone.</> |
|||
ServerDescription=This is my server, have fun |
@ -0,0 +1,147 @@ |
|||
#!/bin/bash |
|||
# Unreal Tournament |
|||
# Server Management Script |
|||
# Author: Daniel Gibbs |
|||
# Website: https://gameservermanagers.com |
|||
if [ -f ".dev-debug" ]; then |
|||
exec 5>dev-debug.log |
|||
BASH_XTRACEFD="5" |
|||
set -x |
|||
fi |
|||
|
|||
version="210516" |
|||
|
|||
#### Variables #### |
|||
|
|||
# Notification Alerts |
|||
# (on|off) |
|||
|
|||
# Email |
|||
emailalert="off" |
|||
email="[email protected]" |
|||
|
|||
# Pushbullet |
|||
# https://www.pushbullet.com/#settings |
|||
pushbulletalert="off" |
|||
pushbullettoken="accesstoken" |
|||
|
|||
# Start Variables |
|||
defaultmap="DM-Underland" |
|||
gametype="DM" |
|||
#defaultmap="CTF-Face" |
|||
#gametype="CTF" |
|||
timelimit="10" |
|||
ip="0.0.0.0" |
|||
port="7777" |
|||
|
|||
fn_parms(){ |
|||
parms="UnrealTournament ${defaultmap}?Game=${gametype}?TimeLimit=${timelimit} -port=${port}" |
|||
} |
|||
|
|||
#### Advanced Variables #### |
|||
|
|||
# Github Branch Select |
|||
# Allows for the use of different function files |
|||
# from a different repo and/or branch. |
|||
githubuser="GameServerManagers" |
|||
githubrepo="LinuxGSM" |
|||
githubbranch="master" |
|||
|
|||
# Server Details |
|||
servicename="ut-server" |
|||
gamename="Unreal Tournament" |
|||
engine="unreal4" |
|||
|
|||
# Directories |
|||
rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" |
|||
selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" |
|||
lockselfname=".${servicename}.lock" |
|||
lgsmdir="${rootdir}/lgsm" |
|||
functionsdir="${lgsmdir}/functions" |
|||
libdir="${lgsmdir}/lib" |
|||
filesdir="${rootdir}/serverfiles" |
|||
systemdir="${filesdir}/LinuxServer" |
|||
executabledir="${systemdir}/Engine/Binaries/Linux" |
|||
executable="./UE4Server-Linux-Shipping" |
|||
servercfg="Game.ini" |
|||
servercfgdir="${systemdir}/UnrealTournament/Saved/Config/LinuxServer" |
|||
servercfgfullpath="${servercfgdir}/${servercfg}" |
|||
backupdir="${rootdir}/backups" |
|||
|
|||
# Logging |
|||
logdays="7" |
|||
gamelogdir="${filesdir}/Logs" |
|||
scriptlogdir="${rootdir}/log/script" |
|||
consolelogdir="${rootdir}/log/console" |
|||
consolelogging="on" |
|||
|
|||
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 |
|||
|
|||
# Fetches core_dl for file downloads |
|||
fn_fetch_core_dl(){ |
|||
github_file_url_dir="lgsm/functions" |
|||
github_file_url_name="${functionfile}" |
|||
filedir="${functionsdir}" |
|||
filename="${github_file_url_name}" |
|||
githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${github_file_url_name}" |
|||
# If the file is missing, then download |
|||
if [ ! -f "${filedir}/${filename}" ]; then |
|||
if [ ! -d "${filedir}" ]; then |
|||
mkdir -p "${filedir}" |
|||
fi |
|||
echo -e " fetching ${filename}...\c" |
|||
# Check curl exists and use available path |
|||
curlpaths="$(command -v curl 2>/dev/null) $(which curl >/dev/null 2>&1) /usr/bin/curl /bin/curl /usr/sbin/curl /sbin/curl)" |
|||
for curlcmd in ${curlpaths} |
|||
do |
|||
if [ -x "${curlcmd}" ]; then |
|||
break |
|||
fi |
|||
done |
|||
# If curl exists download file |
|||
if [ "$(basename ${curlcmd})" == "curl" ]; then |
|||
curlfetch=$(${curlcmd} -s --fail -o "${filedir}/${filename}" "${githuburl}" 2>&1) |
|||
if [ $? -ne 0 ]; then |
|||
echo -e "\e[0;31mFAIL\e[0m\n" |
|||
echo "${curlfetch}" |
|||
echo -e "${githuburl}\n" |
|||
exit 1 |
|||
else |
|||
echo -e "\e[0;32mOK\e[0m" |
|||
fi |
|||
else |
|||
echo -e "\e[0;31mFAIL\e[0m\n" |
|||
echo "Curl is not installed!" |
|||
echo -e "" |
|||
exit 1 |
|||
fi |
|||
chmod +x "${filedir}/${filename}" |
|||
fi |
|||
source "${filedir}/${filename}" |
|||
} |
|||
|
|||
core_dl.sh(){ |
|||
# Functions are defined in core_functions.sh. |
|||
functionfile="${FUNCNAME}" |
|||
fn_fetch_core_dl |
|||
} |
|||
|
|||
core_functions.sh(){ |
|||
# Functions are defined in core_functions.sh. |
|||
functionfile="${FUNCNAME}" |
|||
fn_fetch_core_dl |
|||
} |
|||
|
|||
core_dl.sh |
|||
core_functions.sh |
|||
|
|||
getopt=$1 |
|||
core_getopt.sh |
@ -0,0 +1,155 @@ |
|||
#!/bin/bash |
|||
# Unreal Tournament 3 |
|||
# Server Management Script |
|||
# Author: Daniel Gibbs |
|||
# Website: https://gameservermanagers.com |
|||
if [ -f ".dev-debug" ]; then |
|||
exec 5>dev-debug.log |
|||
BASH_XTRACEFD="5" |
|||
set -x |
|||
fi |
|||
|
|||
version="210516" |
|||
|
|||
#### Variables #### |
|||
|
|||
# Notification Alerts |
|||
# (on|off) |
|||
|
|||
# Email |
|||
emailalert="off" |
|||
email="[email protected]" |
|||
|
|||
# Pushbullet |
|||
# https://www.pushbullet.com/#settings |
|||
pushbulletalert="off" |
|||
pushbullettoken="accesstoken" |
|||
|
|||
# Start Variables |
|||
ip="0.0.0.0" |
|||
port="7777" |
|||
queryport="25300" |
|||
defaultmap="VCTF-Suspense" |
|||
game="UTGameContent.UTVehicleCTFGame_Content" |
|||
mutators="" #"UTGame.UTMutator_Instagib,UTGame.UTMutator_LowGrav" |
|||
isdedicated="true" |
|||
islanmatch="false" |
|||
usesstats="false" |
|||
shouldadvertise="true" |
|||
pureserver="1" |
|||
allowjoininprogress="true" |
|||
maxplayers="32" |
|||
|
|||
#list of game types and mutators : http://wiki.unrealadmin.org/FAQ:UT3 |
|||
fn_parms(){ |
|||
parms="server ${defaultmap}?Game=${game}?bIsDedicated=${isdedicated}?bIsLanMatch=${islanmatch}?bUsesStats=${usesstats}?bShouldAdvertise=${shouldadvertise}?PureServer=${pureserver}?bAllowJoinInProgress=${allowjoininprogress}?MaxPlayers=${maxplayers}?Mutator=${mutators} -port=${port} -queryport=${queryport} -multihome=${ip} -nohomedir -unattended -log=${gamelog}" |
|||
} |
|||
|
|||
# Server Details |
|||
servicename="ut3-server" |
|||
gamename="Unreal Tournament 3" |
|||
engine="unreal3" |
|||
|
|||
# Directories |
|||
rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" |
|||
selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" |
|||
lockselfname=".${servicename}.lock" |
|||
lgsmdir="${rootdir}/lgsm" |
|||
functionsdir="${lgsmdir}/functions" |
|||
libdir="${lgsmdir}/lib" |
|||
filesdir="${rootdir}/serverfiles" |
|||
systemdir="${filesdir}" |
|||
executabledir="${systemdir}/Binaries" |
|||
executable="./ut3" |
|||
servercfg="UTGame.ini" |
|||
servercfgdir="${systemdir}/UTGame/Config" |
|||
servercfgfullpath="${servercfgdir}/${servercfg}" |
|||
backupdir="${rootdir}/backups" |
|||
|
|||
# Logging |
|||
logdays="7" |
|||
gamelogdir="${rootdir}/log/server" |
|||
scriptlogdir="${rootdir}/log/script" |
|||
consolelogdir="${rootdir}/log/console" |
|||
consolelogging="on" |
|||
|
|||
gamelog="${gamelogdir}/${servicename}-game.log" |
|||
scriptlog="${scriptlogdir}/${servicename}-script.log" |
|||
consolelog="${consolelogdir}/${servicename}-console.log" |
|||
emaillog="${scriptlogdir}/${servicename}-email.log" |
|||
|
|||
gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%d-%m-%Y-%H-%M-%S').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" |
|||
|
|||
# Github Branch Select |
|||
# Allows for the use of different function files |
|||
# from a different repo and/or branch. |
|||
githubuser="GameServerManagers" |
|||
githubrepo="LinuxGSM" |
|||
githubbranch="master" |
|||
|
|||
##### Script ##### |
|||
# Do not edit |
|||
|
|||
# Fetches core_dl for file downloads |
|||
fn_fetch_core_dl(){ |
|||
github_file_url_dir="lgsm/functions" |
|||
github_file_url_name="${functionfile}" |
|||
filedir="${functionsdir}" |
|||
filename="${github_file_url_name}" |
|||
githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${github_file_url_name}" |
|||
# If the file is missing, then download |
|||
if [ ! -f "${filedir}/${filename}" ]; then |
|||
if [ ! -d "${filedir}" ]; then |
|||
mkdir -p "${filedir}" |
|||
fi |
|||
echo -e " fetching ${filename}...\c" |
|||
# Check curl exists and use available path |
|||
curlpaths="$(command -v curl 2>/dev/null) $(which curl >/dev/null 2>&1) /usr/bin/curl /bin/curl /usr/sbin/curl /sbin/curl)" |
|||
for curlcmd in ${curlpaths} |
|||
do |
|||
if [ -x "${curlcmd}" ]; then |
|||
break |
|||
fi |
|||
done |
|||
# If curl exists download file |
|||
if [ "$(basename ${curlcmd})" == "curl" ]; then |
|||
curlfetch=$(${curlcmd} -s --fail -o "${filedir}/${filename}" "${githuburl}" 2>&1) |
|||
if [ $? -ne 0 ]; then |
|||
echo -e "\e[0;31mFAIL\e[0m\n" |
|||
echo "${curlfetch}" |
|||
echo -e "${githuburl}\n" |
|||
exit 1 |
|||
else |
|||
echo -e "\e[0;32mOK\e[0m" |
|||
fi |
|||
else |
|||
echo -e "\e[0;31mFAIL\e[0m\n" |
|||
echo "Curl is not installed!" |
|||
echo -e "" |
|||
exit 1 |
|||
fi |
|||
chmod +x "${filedir}/${filename}" |
|||
fi |
|||
source "${filedir}/${filename}" |
|||
} |
|||
|
|||
core_dl.sh(){ |
|||
# Functions are defined in core_functions.sh. |
|||
functionfile="${FUNCNAME}" |
|||
fn_fetch_core_dl |
|||
} |
|||
|
|||
core_functions.sh(){ |
|||
# Functions are defined in core_functions.sh. |
|||
functionfile="${FUNCNAME}" |
|||
fn_fetch_core_dl |
|||
} |
|||
|
|||
core_dl.sh |
|||
core_functions.sh |
|||
|
|||
getopt=$1 |
|||
core_getopt.sh |
|||
|
@ -0,0 +1,14 @@ |
|||
#!/bin/bash |
|||
# LGSM fix_ut.sh function |
|||
# Author: Alexander Hurd |
|||
# Website: https://gameservermanagers.com |
|||
# Description: Resolves various issues with Unreal Tournament. |
|||
|
|||
local commandname="FIX" |
|||
local commandaction="Fix" |
|||
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" |
|||
|
|||
#Set Binary Executable |
|||
echo "chmod +x ${executabledir}/${executable}" |
|||
chmod +x "${executabledir}/${executable}" |
|||
sleep 1 |
@ -0,0 +1,33 @@ |
|||
#!/bin/bash |
|||
# LGSM install_minecraft_eula.sh function |
|||
# Author: Daniel Gibbs |
|||
# Website: https://gameservermanagers.com |
|||
# Description: Gets user to accept the EULA. |
|||
|
|||
echo "" |
|||
echo "Accept ${gamename} EULA" |
|||
echo "=================================" |
|||
sleep 1 |
|||
echo "You are required to accept the EULA:" |
|||
echo "https://account.mojang.com/documents/minecraft_eula" |
|||
|
|||
echo "eula=false" > "${filesdir}/eula.txt" |
|||
|
|||
if [ -z "${autoinstall}" ]; then |
|||
echo "By continuing you are indicating your agreement to the EULA." |
|||
echo "" |
|||
while true; do |
|||
read -e -i "y" -p "Continue [Y/n]" yn |
|||
case $yn in |
|||
[Yy]* ) break;; |
|||
[Nn]* ) core_exit.sh;; |
|||
* ) echo "Please answer yes or no.";; |
|||
esac |
|||
done |
|||
else |
|||
echo "By using auto-install you are indicating your agreement to the EULA." |
|||
echo "" |
|||
sleep 5 |
|||
fi |
|||
|
|||
sed -i "s/eula=false/eula=true/g" "${filesdir}/eula.txt" |
@ -0,0 +1,157 @@ |
|||
#!/bin/bash |
|||
# LGSM update_minecraft.sh function |
|||
# Author: Daniel Gibbs |
|||
# Website: https://gameservermanagers.com |
|||
# Description: Handles updating of Minecraft servers. |
|||
|
|||
local commandname="UPDATE" |
|||
local commandaction="Update" |
|||
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" |
|||
|
|||
fn_update_dl(){ |
|||
fn_fetch_file "https://s3.amazonaws.com/Minecraft.Download/versions/${availablebuild}/minecraft_server.${availablebuild}.jar" "${lgsmdir}/tmp" "minecraft_server.${availablebuild}.jar" |
|||
echo -e "copying to ${filesdir}...\c" |
|||
fn_script_log "Copying to ${filesdir}" |
|||
cp "${lgsmdir}/tmp/minecraft_server.${availablebuild}.jar" "${filesdir}/minecraft_server.jar" |
|||
local exitcode=$? |
|||
if [ ${exitcode} -eq 0 ]; then |
|||
fn_print_ok_eol_nl |
|||
else |
|||
fn_print_fail_eol_nl |
|||
fi |
|||
} |
|||
|
|||
fn_update_currentbuild(){ |
|||
# Gets current build info |
|||
# Checks if current build info is available. If it fails, then a server restart will be forced to generate logs. |
|||
if [ ! -f "${consolelogdir}/${servicename}-console.log" ]; then |
|||
fn_print_error "Checking for update: mojang.com" |
|||
sleep 1 |
|||
fn_print_error_nl "Checking for update: mojang.com: No logs with server version found" |
|||
fn_script_log_error "Checking for update: mojang.com: No logs with server version found" |
|||
sleep 1 |
|||
fn_print_info_nl "Checking for update: mojang.com: Forcing server restart" |
|||
fn_script_log_info "Checking for update: mojang.com: Forcing server restart" |
|||
sleep 1 |
|||
exitbypass=1 |
|||
command_stop.sh |
|||
exitbypass=1 |
|||
command_start.sh |
|||
sleep 1 |
|||
# Check again and exit on failure. |
|||
if [ ! -f "${consolelogdir}/${servicename}-console.log" ]; then |
|||
fn_print_fail_nl "Checking for update: mojang.com: Still No logs with server version found" |
|||
fn_script_log_fatal "Checking for update: mojang.com: Still No logs with server version found" |
|||
core_exit.sh |
|||
fi |
|||
fi |
|||
|
|||
# Get current build from logs |
|||
currentbuild=$(cat "${filesdir}/logs/latest.log" 2> /dev/null | grep version | egrep -o '((\.)?[0-9]{1,3}){1,3}\.[0-9]{1,3}') |
|||
if [ -z "${currentbuild}" ]; then |
|||
fn_print_error_nl "Checking for update: mojang.com: Current build version not found" |
|||
fn_script_log_error "Checking for update: mojang.com: Current build version not found" |
|||
sleep 1 |
|||
fn_print_info_nl "Checking for update: mojang.com: Forcing server restart" |
|||
fn_script_log_info "Checking for update: mojang.com: Forcing server restart" |
|||
exitbypass=1 |
|||
command_stop.sh |
|||
exitbypass=1 |
|||
command_start.sh |
|||
currentbuild=$(cat "${filesdir}/logs/latest.log" 2> /dev/null | grep version | egrep -o '((\.)?[0-9]{1,3}){1,3}\.[0-9]{1,3}') |
|||
if [ -z "${currentbuild}" ]; then |
|||
fn_print_fail_nl "Checking for update: mojang.com: Current build version still not found" |
|||
fn_script_log_fatal "Checking for update: mojang.com: Current build version still not found" |
|||
core_exit.sh |
|||
fi |
|||
fi |
|||
} |
|||
|
|||
fn_update_availablebuild(){ |
|||
# Gets latest build info. |
|||
availablebuild=$(curl -s "https://launchermeta.mojang.com/mc/game/version_manifest.json" | sed -e 's/^.*"release":"\([^"]*\)".*$/\1/') |
|||
sleep 1 |
|||
|
|||
# Checks if availablebuild variable has been set |
|||
if [ -z "${availablebuild}" ]; then |
|||
fn_print_fail "Checking for update: mojang.com" |
|||
sleep 1 |
|||
fn_print_fail "Checking for update: mojang.com: Not returning version info" |
|||
fn_script_log_fatal "Failure! Checking for update: mojang.com: Not returning version info" |
|||
core_exit.sh |
|||
else |
|||
fn_print_ok_nl "Checking for update: mojang.com" |
|||
fn_script_log_pass "Checking for update: mojang.com" |
|||
sleep 1 |
|||
fi |
|||
} |
|||
|
|||
fn_update_compare(){ |
|||
# Removes dots so if can compare version numbers |
|||
currentbuilddigit=$(echo "${currentbuild}"|tr -cd '[:digit:]') |
|||
availablebuilddigit=$(echo "${availablebuild}"|tr -cd '[:digit:]') |
|||
|
|||
if [ "${currentbuilddigit}" -ne "${availablebuilddigit}" ]; then |
|||
echo -e "\n" |
|||
echo -e "Update available:" |
|||
sleep 1 |
|||
echo -e " Current build: ${red}${currentbuild}${default}" |
|||
echo -e " Available build: ${green}${availablebuild}${default}" |
|||
echo -e "" |
|||
sleep 1 |
|||
echo "" |
|||
echo -en "Applying update.\r" |
|||
sleep 1 |
|||
echo -en "Applying update..\r" |
|||
sleep 1 |
|||
echo -en "Applying update...\r" |
|||
sleep 1 |
|||
echo -en "\n" |
|||
fn_script_log "Update available" |
|||
fn_script_log "Current build: ${currentbuild}" |
|||
fn_script_log "Available build: ${availablebuild}" |
|||
fn_script_log "${currentbuild} > ${availablebuild}" |
|||
|
|||
unset updateonstart |
|||
|
|||
check_status.sh |
|||
if [ "${status}" == "0" ]; then |
|||
fn_update_dl |
|||
exitbypass=1 |
|||
command_start.sh |
|||
exitbypass=1 |
|||
command_stop.sh |
|||
else |
|||
exitbypass=1 |
|||
command_stop.sh |
|||
fn_update_dl |
|||
exitbypass=1 |
|||
command_start.sh |
|||
fi |
|||
alert="update" |
|||
alert.sh |
|||
else |
|||
echo -e "\n" |
|||
echo -e "No update available:" |
|||
echo -e " Current version: ${green}${currentbuild}${default}" |
|||
echo -e " Available version: ${green}${availablebuild}${default}" |
|||
echo -e "" |
|||
fn_print_ok_nl "No update available" |
|||
fn_script_log_info "Current build: ${currentbuild}" |
|||
fn_script_log_info "Available build: ${availablebuild}" |
|||
fi |
|||
} |
|||
|
|||
|
|||
if [ "${installer}" == "1" ]; then |
|||
fn_update_availablebuild |
|||
fn_update_dl |
|||
else |
|||
# Checks for server update from mojang.com |
|||
fn_print_dots "Checking for update: mojang.com" |
|||
fn_script_log_info "Checking for update: mojang.com" |
|||
sleep 1 |
|||
fn_update_currentbuild |
|||
fn_update_availablebuild |
|||
fn_update_compare |
|||
fi |
Loading…
Reference in new issue