19 changed files with 656 additions and 28 deletions
@ -0,0 +1,180 @@ |
|||
#!/bin/bash |
|||
# Multi Theft Auto |
|||
# 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="170103" |
|||
|
|||
########################## |
|||
######## Settings ######## |
|||
########################## |
|||
|
|||
#### Server Settings #### |
|||
|
|||
## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters |
|||
# None Available |
|||
|
|||
## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters |
|||
# Edit with care |
|||
fn_parms(){ |
|||
parms=" " |
|||
} |
|||
|
|||
#### LinuxGSM Settings #### |
|||
|
|||
## Notification Alerts |
|||
# (on|off) |
|||
# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email |
|||
emailalert="off" |
|||
email="[email protected]" |
|||
emailfrom="" |
|||
|
|||
# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet |
|||
pushbulletalert="off" |
|||
pushbullettoken="accesstoken" |
|||
channeltag="" |
|||
|
|||
## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup |
|||
maxbackups="4" |
|||
maxbackupdays="30" |
|||
stoponbackup="on" |
|||
|
|||
## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging |
|||
consolelogging="on" |
|||
logdays="7" |
|||
|
|||
#### LinuxGSM Advanced Settings #### |
|||
|
|||
# Github Branch Select |
|||
# Allows for the use of different function files |
|||
# from a different repo and/or branch. |
|||
githubuser="dgibbs64" |
|||
githubrepo="linuxgsm" |
|||
githubbranch="master" |
|||
|
|||
## LinuxGSM Server Details |
|||
# Do not edit |
|||
gamename="Multi Theft Auto" |
|||
engine="renderware" |
|||
|
|||
## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers |
|||
servicename="mta-server" |
|||
|
|||
#### Directories #### |
|||
# Edit with care |
|||
|
|||
## Work 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 Directories |
|||
systemdir="${filesdir}" |
|||
resourcesdir="${systemdir}/mods/deathmatch/resources" |
|||
executabledir="${systemdir}" |
|||
executable="./mta-server64" |
|||
servercfg="mtaserver.conf" |
|||
servercfgdir="${systemdir}/mods/deathmatch" |
|||
servercfgfullpath="${servercfgdir}/${servercfg}" |
|||
|
|||
## Backup Directory |
|||
backupdir="${rootdir}/backups" |
|||
|
|||
## Logging Directories |
|||
gamelogdir="${filesdir}/mods/deathmatch/logs" |
|||
scriptlogdir="${rootdir}/log/script" |
|||
consolelogdir="${rootdir}/log/console" |
|||
scriptlog="${scriptlogdir}/${servicename}-script.log" |
|||
consolelog="${consolelogdir}/${servicename}-console.log" |
|||
emaillog="${scriptlogdir}/${servicename}-email.log" |
|||
|
|||
## Logs Naming |
|||
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,31 @@ |
|||
#!/bin/bash |
|||
# LGSM command_install_resources_mta.sh function |
|||
# Author: Daniel Gibbs |
|||
# Website: https://gameservermanagers.com |
|||
# Description: Installs the default resources for Multi Theft Auto. |
|||
|
|||
local commandname="DEFAULT_RESOURCES" |
|||
local commandaction="Default Resources" |
|||
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" |
|||
|
|||
fn_install_resources(){ |
|||
echo "" |
|||
echo "Installing Default Resources" |
|||
echo "=================================" |
|||
fileurl="http://mirror.mtasa.com/mtasa/resources/mtasa-resources-latest.zip"; filedir="${tmpdir}"; filename="multitheftauto_resources.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="nomd5" |
|||
fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" |
|||
fn_dl_extract "${filedir}" "${filename}" "${resourcesdir}" |
|||
echo "Default Resources Installed." |
|||
} |
|||
|
|||
fn_print_header |
|||
|
|||
fn_print_warning_nl "Installing the default resources with existing resources may cause issues." |
|||
while true; do |
|||
read -e -i "y" -p "Do you want to install MTA default resources? [Y/n]" yn |
|||
case $yn in |
|||
[Yy]* ) fn_install_resources && break;; |
|||
[Nn]* ) break;; |
|||
* ) echo "Please answer yes or no.";; |
|||
esac |
|||
done |
@ -0,0 +1,20 @@ |
|||
#!/bin/bash |
|||
# LGSM fix_mta.sh function |
|||
# Author: Daniel Gibbs |
|||
# Contributor: ChaosMTA |
|||
# Website: https://gameservermanagers.com |
|||
# Description: Installs the libmysqlclient for database functions on the server |
|||
local commandname="FIX" |
|||
local commandaction="Fix" |
|||
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" |
|||
|
|||
if [ ! -f "${lgsmdir}/lib/libmysqlclient.so.16" ]; then |
|||
fixname="libmysqlclient16" |
|||
fn_fix_msg_start_nl |
|||
sleep 1 |
|||
fileurl="https://nightly.mtasa.com/files/modules/64/libmysqlclient.so.16"; filedir="${lgsmdir}/lib"; filename="libmysqlclient.so.16"; executecmd="executecmd" run="norun"; force="noforce"; md5="6c188e0f8fb5d7a29f4bc413b9fed6c2" |
|||
fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" |
|||
fn_fix_msg_end |
|||
fi |
|||
|
|||
export LD_LIBRARY_PATH=:"${libdir}" |
@ -0,0 +1,37 @@ |
|||
#!/bin/bash |
|||
# LGSM install_mta_resources.sh function |
|||
# Author: Daniel Gibbs |
|||
# Contributor: ChaosMTA |
|||
# 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 |
|||
if [ ! -f /usr/lib/libmysqlclient.so.16 ]; then |
|||
fn_print_warn_nl "libmysqlclient16 not installed. Installing.." |
|||
sleep 1 |
|||
sudo -v > /dev/null 2>&1 |
|||
if [ $? -eq 0 ]; then |
|||
fileurl="https://nightly.mtasa.com/files/modules/64/libmysqlclient.so.16"; filedir="${tmpdir}"; filename="libmysqlclient.so.16"; executecmd="executecmd" run="norun"; force="noforce"; md5="6c188e0f8fb5d7a29f4bc413b9fed6c2" |
|||
fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" |
|||
sudo mv ${tmpdir}/${filename} /usr/lib/${filename} |
|||
else |
|||
fn_print_fail_nl "Failed to install libmysqlclient16, $(whoami) does not have sudo access. Download it manually and place it in /usr/lib" |
|||
sleep 1 |
|||
fi |
|||
else |
|||
echo "libmysqlclient16 already installed." |
|||
fi |
|||
} |
|||
|
|||
fn_install_libmysqlclient16 |
|||
|
|||
fn_print_information_nl "Server is inoperable by default without resources, you can install default ones by running the command install-default-resources" |
|||
echo "" |
@ -0,0 +1,155 @@ |
|||
#!/bin/bash |
|||
# LGSM update_mta.sh function |
|||
# Author: Daniel Gibbs |
|||
# Website: https://gameservermanagers.com |
|||
# Description: Handles updating of Multi Theft Auto servers. |
|||
|
|||
local commandname="UPDATE" |
|||
local commandaction="Update" |
|||
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" |
|||
|
|||
fn_update_mta_dl(){ |
|||
fn_fetch_file "http://linux.mtasa.com/dl/${numversion}/multitheftauto_linux_x64-${fullversion}.tar.gz" "${tmpdir}" "multitheftauto_linux_x64-${fullversion}.tar.gz" |
|||
mkdir "${tmpdir}/multitheftauto_linux_x64-${fullversion}" |
|||
fn_dl_extract "${tmpdir}" "multitheftauto_linux_x64-${fullversion}.tar.gz" "${tmpdir}/multitheftauto_linux_x64-${fullversion}" |
|||
echo -e "copying to ${filesdir}...\c" |
|||
fn_script_log "Copying to ${filesdir}" |
|||
cp -R "${tmpdir}/multitheftauto_linux_x64-${fullversion}/multitheftauto_linux_x64-${fullversion}/"* "${filesdir}" |
|||
local exitcode=$? |
|||
if [ "${exitcode}" == "0" ]; then |
|||
fn_print_ok_eol_nl |
|||
else |
|||
fn_print_fail_eol_nl |
|||
fi |
|||
} |
|||
|
|||
fn_update_mta_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: linux.mtasa.com" |
|||
sleep 1 |
|||
fn_print_error_nl "Checking for update: linux.mtasa.com: No logs with server version found" |
|||
fn_script_log_error "Checking for update: linux.mtasa.com: No logs with server version found" |
|||
sleep 1 |
|||
fn_print_info_nl "Checking for update: linux.mtasa.com: Forcing server restart" |
|||
fn_script_log_info "Checking for update: linux.mtasa.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: linux.mtasa.com: Still No logs with server version found" |
|||
fn_script_log_fatal "Checking for update: linux.mtasa.com: Still No logs with server version found" |
|||
core_exit.sh |
|||
fi |
|||
fi |
|||
|
|||
# Get current build from logs |
|||
currentbuild=$(awk -F"= Multi Theft Auto: San Andreas v" '{print $2}' "${consolelogdir}"/"${servicename}"-console.log | awk '{print $1}') |
|||
if [ -z "${currentbuild}" ]; then |
|||
fn_print_error_nl "Checking for update: linux.mtasa.com: Current build version not found" |
|||
fn_script_log_error "Checking for update: linux.mtasa.com: Current build version not found" |
|||
sleep 1 |
|||
fn_print_info_nl "Checking for update: linux.mtasa.com: Forcing server restart" |
|||
fn_script_log_info "Checking for update: linux.mtasa.com: Forcing server restart" |
|||
exitbypass=1 |
|||
command_stop.sh |
|||
exitbypass=1 |
|||
command_start.sh |
|||
currentbuild=$(awk -F"= Multi Theft Auto: San Andreas v" '{print $2}' "${consolelogdir}"/"${servicename}"-console.log | awk '{print $1}') |
|||
if [ -z "${currentbuild}" ]; then |
|||
fn_print_fail_nl "Checking for update: linux.mtasa.com: Current build version still not found" |
|||
fn_script_log_fatal "Checking for update: linux.mtasa.com: Current build version still not found" |
|||
core_exit.sh |
|||
fi |
|||
fi |
|||
} |
|||
|
|||
fn_mta_get_availablebuild() |
|||
{ |
|||
fn_fetch_file "https://raw.githubusercontent.com/multitheftauto/mtasa-blue/master/Server/version.h" "${tmpdir}" "version.h" # we need to find latest stable version here |
|||
local majorversion="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MAJOR" | awk '{ print $3 }' | sed 's/\r//g')" |
|||
local minorversion="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MINOR" | awk '{ print $3 }' | sed 's/\r//g')" |
|||
local maintenanceversion="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MAINTENANCE" | awk '{ print $3 }' | sed 's/\r//g')" |
|||
numversion="${majorversion}${minorversion}${maintenanceversion}" |
|||
fullversion="${majorversion}.${minorversion}.${maintenanceversion}" |
|||
rm -f "${tmpdir}/version.h" |
|||
} |
|||
|
|||
fn_update_mta_compare(){ |
|||
# Removes dots so if can compare version numbers |
|||
currentbuilddigit=$(echo "${currentbuild}"|tr -cd '[:digit:]') |
|||
if [ "${currentbuilddigit}" -ne "${numversion}" ]||[ "${forceupdate}" == "1" ]; then |
|||
if [ "${forceupdate}" == "1" ]; then |
|||
# forceupdate bypasses checks, useful for small build changes |
|||
mta_update_string="forced" |
|||
else |
|||
mta_update_string="available" |
|||
fi |
|||
echo -e "\n" |
|||
echo -e "Update ${mta_update_string}:" |
|||
sleep 1 |
|||
echo -e " Current build: ${red}${currentbuild} ${default}" |
|||
echo -e " Available build: ${green}${fullversion} ${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 ${mta_update_string}" |
|||
fn_script_log "Current build: ${currentbuild}" |
|||
fn_script_log "Available build: ${fullversion}" |
|||
fn_script_log "${currentbuild} > ${fullversion}" |
|||
|
|||
unset updateonstart |
|||
|
|||
check_status.sh |
|||
if [ "${status}" == "0" ]; then |
|||
fn_update_mta_dl |
|||
exitbypass=1 |
|||
command_start.sh |
|||
exitbypass=1 |
|||
command_stop.sh |
|||
else |
|||
exitbypass=1 |
|||
command_stop.sh |
|||
fn_update_mta_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}${fullversion}${default}" |
|||
echo -e "" |
|||
fn_print_ok_nl "No update available" |
|||
fn_script_log_info "Current build: ${currentbuild}" |
|||
fn_script_log_info "Available build: ${fullversion}" |
|||
fi |
|||
} |
|||
|
|||
|
|||
if [ "${installer}" == "1" ]; then |
|||
fn_mta_get_availablebuild |
|||
fn_update_mta_dl |
|||
else |
|||
# Checks for server update from linux.mtasa.com using the github repo. |
|||
fn_print_dots "Checking for update: linux.mtasa.com" |
|||
fn_script_log_info "Checking for update: linux.mtasa.com" |
|||
sleep 1 |
|||
fn_update_mta_currentbuild |
|||
fn_mta_get_availablebuild |
|||
fn_update_mta_compare |
|||
fi |
Loading…
Reference in new issue