5 changed files with 223 additions and 2 deletions
@ -0,0 +1,161 @@ |
|||||
|
#!/bin/bash |
||||
|
# San Andreas Multiplayer |
||||
|
# 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]" |
||||
|
#emailfrom="[email protected]" |
||||
|
|
||||
|
# Pushbullet |
||||
|
# https://www.pushbullet.com/#settings |
||||
|
pushbulletalert="off" |
||||
|
pushbullettoken="accesstoken" |
||||
|
|
||||
|
# Start Variables |
||||
|
ip="0.0.0.0" |
||||
|
port="22003" |
||||
|
|
||||
|
fn_parms(){ |
||||
|
parms=" " |
||||
|
} |
||||
|
|
||||
|
#### 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="mta" |
||||
|
|
||||
|
# Server Details |
||||
|
servicename="mta-server" |
||||
|
gamename="Multi Theft Auto" |
||||
|
engine="RenderWare" |
||||
|
|
||||
|
# 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" |
||||
|
tmpdir="${lgsmdir}/tmp" |
||||
|
filesdir="${rootdir}/serverfiles" |
||||
|
|
||||
|
# Server Specific |
||||
|
systemdir="${filesdir}" |
||||
|
resourcesdir="${systemdir}/mods/deathmatch/resources" |
||||
|
executabledir="${systemdir}" |
||||
|
executable="./mta-server64" |
||||
|
servercfg="mtaserver.conf" |
||||
|
servercfgdir="${systemdir}/mods/deathmatch" |
||||
|
servercfgfullpath="${servercfgdir}/${servercfg}" |
||||
|
|
||||
|
# Backups |
||||
|
backupdir="${rootdir}/backups" |
||||
|
|
||||
|
# Logging |
||||
|
logdays="7" |
||||
|
gamelogdir="${filesdir}/mods/deathmatch/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 |
||||
|
} |
||||
|
|
||||
|
# Prevent from running this script as root. |
||||
|
if [ "$(whoami)" = "root" ]; then |
||||
|
if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then |
||||
|
echo "[ FAIL ] Do NOT run this script as root!" |
||||
|
exit 1 |
||||
|
else |
||||
|
core_functions.sh |
||||
|
check_root.sh |
||||
|
fi |
||||
|
fi |
||||
|
|
||||
|
core_dl.sh |
||||
|
core_functions.sh |
||||
|
getopt=$1 |
||||
|
core_getopt.sh |
@ -0,0 +1,50 @@ |
|||||
|
#!/bin/bash |
||||
|
# LGSM install_ts3db.sh function |
||||
|
# Author: Daniel Gibbs |
||||
|
# Contributor: PhilPhonic |
||||
|
# Website: https://gameservermanagers.com |
||||
|
# Description: Installs the libmysqlclient for database functions on the server and optionally installs default resources required to run the server |
||||
|
|
||||
|
local commandname="INSTALL" |
||||
|
local commandaction="Install" |
||||
|
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" |
||||
|
|
||||
|
fn_install_libmysqlclient16(){ |
||||
|
echo "" |
||||
|
echo "checking if libmysqlclient16 is installed" |
||||
|
echo "=================================" |
||||
|
sleep 1 |
||||
|
ldd /usr/lib/libmysqlclient.so.16 | grep "libmysqlclient.so.16 => not found" |
||||
|
if [ $? -eq 0 ]; then |
||||
|
echo "libmysqlclient16 not installed. Installing.." |
||||
|
fileurl="https://nightly.mtasa.com/files/modules/64/libmysqlclient.so.16"; filedir="/usr/lib/"; filename="libmysqlclient.so.16"; executecmd="noexecute" run="norun"; force="noforce"; md5="6c188e0f8fb5d7a29f4bc413b9fed6c2" |
||||
|
fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" |
||||
|
fi |
||||
|
echo "libmysqlclient16 installed." |
||||
|
} |
||||
|
|
||||
|
fn_install_resources(){ |
||||
|
echo "" |
||||
|
echo "installing default resources" |
||||
|
echo "=================================" |
||||
|
fileurl="http://mirror.mtasa.com/mtasa/resources/mtasa-resources-latest.zip"; filedir="${tempdir}"; filename="multitheftauto_resources.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="97a587509698f7f010bcd6e5c6dd9c31" |
||||
|
fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" |
||||
|
fn_dl_extract "${filedir}" "${filename}" "${resourcesdir}" |
||||
|
echo "default resources installed." |
||||
|
} |
||||
|
|
||||
|
fn_install_libmysqlclient16 |
||||
|
|
||||
|
if [ -z "${autoinstall}" ]; then |
||||
|
echo "" |
||||
|
while true; do |
||||
|
read -e -i "n" -p "Do you want to have the default resources downloaded? (Server is inoperable without resources!) [y/N]" yn |
||||
|
case $yn in |
||||
|
[Yy]* ) fn_install_resources && break;; |
||||
|
[Nn]* ) break;; |
||||
|
* ) echo "Please answer yes or no.";; |
||||
|
esac |
||||
|
done |
||||
|
else |
||||
|
fn_print_warning_nl "./${selfname} auto-install does not download the default resources. If you require them use ./${selfname} install" |
||||
|
fi |
Loading…
Reference in new issue