Browse Source

Updated ut99 to use new download system

pull/743/head
Daniel Gibbs 9 years ago
parent
commit
bc254d39a8
  1. 91
      UnrealTournament99/ut99server

91
UnrealTournament99/ut99server

@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then
set -x set -x
fi fi
version="121215" version="200216"
#### Variables #### #### Variables ####
@ -28,6 +28,13 @@ parms="server ${defaultmap}.unr ini=${servercfgfullpath}"
#### Advanced Variables #### #### 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 # Server Details
servicename="ut99-server" servicename="ut99-server"
gamename="Unreal Tournament 99" gamename="Unreal Tournament 99"
@ -38,6 +45,8 @@ rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))"
selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
lockselfname=".${servicename}.lock" lockselfname=".${servicename}.lock"
filesdir="${rootdir}/serverfiles" filesdir="${rootdir}/serverfiles"
lgsmdir="${rootdir}/lgsm"
functionsdir="${lgsmdir}/functions"
systemdir="${filesdir}/System" systemdir="${filesdir}/System"
executabledir="${systemdir}" executabledir="${systemdir}"
executable="./ucc-bin" executable="./ucc-bin"
@ -60,66 +69,66 @@ emaillog="${scriptlogdir}/${servicename}-email.log"
scriptlogdate="${scriptlogdir}/${servicename}-script-$(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" 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="dgibbs64"
githubrepo="linuxgsm"
githubbranch="master"
##### Script ##### ##### Script #####
# Do not edit # Do not edit
fn_getgithubfile(){ # Fetches core_dl for file downloads
filename=$1 fn_fetch_core_dl(){
exec=$2 github_file_url_dir="functions"
fileurl=${3:-$filename} github_file_url_name="${functionfile}"
filepath="${rootdir}/${filename}" filedir="${functionsdir}"
filedir=$(dirname "${filepath}") filename="${github_file_url_name}"
# If the function file is missing, then download githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${github_file_url_name}"
if [ ! -f "${filepath}" ]; then # If the file is missing, then download
if [ ! -f "${filedir}/${filename}" ]; then
if [ ! -d "${filedir}" ]; then if [ ! -d "${filedir}" ]; then
mkdir "${filedir}" mkdir -p "${filedir}"
fi fi
githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}"
echo -e " fetching ${filename}...\c" echo -e " fetching ${filename}...\c"
if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then # 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 $(echo $PATH | sed "s/\([:]\|\$\)/\/curl /g")"
else 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 -e "\e[0;31mFAIL\e[0m\n"
echo "Curl is not installed!" echo "Curl is not installed!"
echo -e "" echo -e ""
exit exit 1
fi
curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1)
if [ $? -ne 0 ]; then
echo -e "\e[0;31mFAIL\e[0m\n"
echo "${curl}"
echo -e "${githuburl}\n"
exit
else
echo -e "\e[0;32mOK\e[0m"
fi
if [ "${exec}" ]; then
chmod +x "${filepath}"
fi fi
chmod +x "${filedir}/${filename}"
fi fi
if [ "${exec}" ]; then source "${filedir}/${filename}"
source "${filepath}"
fi
} }
fn_runfunction(){ core_dl.sh(){
fn_getgithubfile "functions/${functionfile}" 1 # Functions are defined in core_functions.sh.
functionfile="${FUNCNAME}"
fn_fetch_core_dl
} }
core_functions.sh(){ core_functions.sh(){
# Functions are defined in core_functions.sh. # Functions are defined in core_functions.sh.
functionfile="${FUNCNAME}" functionfile="${FUNCNAME}"
fn_runfunction fn_fetch_core_dl
} }
core_dl.sh
core_functions.sh core_functions.sh
getopt=$1 getopt=$1
core_getopt.sh core_getopt.sh
Loading…
Cancel
Save