Browse Source

Corrected indentation

pull/1551/head
Marvin Lehmann 8 years ago
committed by GitHub
parent
commit
5622a9401e
  1. 236
      lgsm/functions/update_mta.sh

236
lgsm/functions/update_mta.sh

@ -9,64 +9,64 @@ local commandaction="Update"
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
fn_update_mta_dl(){ 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" 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}" mkdir "${tmpdir}/multitheftauto_linux_x64-${fullversion}"
fn_dl_extract "${tmpdir}" "multitheftauto_linux_x64-${fullversion}.tar.gz" "${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" echo -e "copying to ${filesdir}...\c"
fn_script_log "Copying to ${filesdir}" fn_script_log "Copying to ${filesdir}"
cp -R "${tmpdir}/multitheftauto_linux_x64-${fullversion}/multitheftauto_linux_x64-${fullversion}/"* "${filesdir}" cp -R "${tmpdir}/multitheftauto_linux_x64-${fullversion}/multitheftauto_linux_x64-${fullversion}/"* "${filesdir}"
local exitcode=$? local exitcode=$?
if [ "${exitcode}" == "0" ]; then if [ "${exitcode}" == "0" ]; then
fn_print_ok_eol_nl fn_print_ok_eol_nl
else else
fn_print_fail_eol_nl fn_print_fail_eol_nl
fi fi
} }
fn_update_mta_currentbuild(){ fn_update_mta_currentbuild(){
# Gets current build info # Gets current build info
# Checks if current build info is available. If it fails, then a server restart will be forced to generate logs. # Checks if current build info is available. If it fails, then a server restart will be forced to generate logs.
if [ ! -f "${gamelogdir}"/server.log ]; then if [ ! -f "${gamelogdir}"/server.log ]; then
fn_print_error "Checking for update: linux.mtasa.com" fn_print_error "Checking for update: linux.mtasa.com"
sleep 1 sleep 1
fn_print_error_nl "Checking for update: linux.mtasa.com: No logs with server version found" 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" fn_script_log_error "Checking for update: linux.mtasa.com: No logs with server version found"
sleep 1 sleep 1
fn_print_info_nl "Checking for update: linux.mtasa.com: Forcing server restart" 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" fn_script_log_info "Checking for update: linux.mtasa.com: Forcing server restart"
sleep 1 sleep 1
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
sleep 1 sleep 1
# Check again and exit on failure. # Check again and exit on failure.
if [ ! -f "${gamelogdir}"/server.log ]; then if [ ! -f "${gamelogdir}"/server.log ]; then
fn_print_fail_nl "Checking for update: linux.mtasa.com: Still No logs with server version found" 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" fn_script_log_fatal "Checking for update: linux.mtasa.com: Still No logs with server version found"
core_exit.sh core_exit.sh
fi fi
fi fi
# Get current build from logs # Get current build from logs
currentbuild=$(cat "${gamelogdir}"/server.log | grep "= Multi Theft Auto: San Andreas v" | awk '{ print $7 }'| sed -r 's/^.{1}//' | tail -1) currentbuild=$(cat "${gamelogdir}"/server.log | grep "= Multi Theft Auto: San Andreas v" | awk '{ print $7 }'| sed -r 's/^.{1}//' | tail -1)
if [ -z "${currentbuild}" ]; then if [ -z "${currentbuild}" ]; then
fn_print_error_nl "Checking for update: linux.mtasa.com: Current build version not found" 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" fn_script_log_error "Checking for update: linux.mtasa.com: Current build version not found"
sleep 1 sleep 1
fn_print_info_nl "Checking for update: linux.mtasa.com: Forcing server restart" 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" fn_script_log_info "Checking for update: linux.mtasa.com: Forcing server restart"
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
currentbuild=$(cat "${gamelogdir}"/server.log | grep "= Multi Theft Auto: San Andreas v" | awk '{ print $7 }'| sed -r 's/^.{1}//' | tail -1) currentbuild=$(cat "${gamelogdir}"/server.log | grep "= Multi Theft Auto: San Andreas v" | awk '{ print $7 }'| sed -r 's/^.{1}//' | tail -1)
if [ -z "${currentbuild}" ]; then if [ -z "${currentbuild}" ]; then
fn_print_fail_nl "Checking for update: linux.mtasa.com: Current build version still not found" 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" fn_script_log_fatal "Checking for update: linux.mtasa.com: Current build version still not found"
core_exit.sh core_exit.sh
fi fi
fi fi
} }
fn_mta_get_availablebuild(){ fn_mta_get_availablebuild(){
@ -80,75 +80,75 @@ fn_mta_get_availablebuild(){
} }
fn_update_mta_compare(){ fn_update_mta_compare(){
# Removes dots so if can compare version numbers # Removes dots so if can compare version numbers
currentbuilddigit=$(echo "${currentbuild}"|tr -cd '[:digit:]') currentbuilddigit=$(echo "${currentbuild}"|tr -cd '[:digit:]')
if [ "${currentbuilddigit}" -ne "${numversion}" ]||[ "${forceupdate}" == "1" ]; then if [ "${currentbuilddigit}" -ne "${numversion}" ]||[ "${forceupdate}" == "1" ]; then
if [ "${forceupdate}" == "1" ]; then if [ "${forceupdate}" == "1" ]; then
# forceupdate bypasses checks, useful for small build changes # forceupdate bypasses checks, useful for small build changes
mta_update_string="forced" mta_update_string="forced"
else else
mta_update_string="available" mta_update_string="available"
fi fi
echo -e "\n" echo -e "\n"
echo -e "Update ${mta_update_string}:" echo -e "Update ${mta_update_string}:"
sleep 1 sleep 1
echo -e " Current build: ${red}${currentbuild} ${default}" echo -e " Current build: ${red}${currentbuild} ${default}"
echo -e " Available build: ${green}${fullversion} ${default}" echo -e " Available build: ${green}${fullversion} ${default}"
echo -e "" echo -e ""
sleep 1 sleep 1
echo "" echo ""
echo -en "Applying update.\r" echo -en "Applying update.\r"
sleep 1 sleep 1
echo -en "Applying update..\r" echo -en "Applying update..\r"
sleep 1 sleep 1
echo -en "Applying update...\r" echo -en "Applying update...\r"
sleep 1 sleep 1
echo -en "\n" echo -en "\n"
fn_script_log "Update ${mta_update_string}" fn_script_log "Update ${mta_update_string}"
fn_script_log "Current build: ${currentbuild}" fn_script_log "Current build: ${currentbuild}"
fn_script_log "Available build: ${fullversion}" fn_script_log "Available build: ${fullversion}"
fn_script_log "${currentbuild} > ${fullversion}" fn_script_log "${currentbuild} > ${fullversion}"
unset updateonstart unset updateonstart
check_status.sh check_status.sh
if [ "${status}" == "0" ]; then if [ "${status}" == "0" ]; then
fn_update_mta_dl fn_update_mta_dl
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
else else
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_update_mta_dl fn_update_mta_dl
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
fi fi
alert="update" alert="update"
alert.sh alert.sh
else else
echo -e "\n" echo -e "\n"
echo -e "No update available:" echo -e "No update available:"
echo -e " Current version: ${green}${currentbuild}${default}" echo -e " Current version: ${green}${currentbuild}${default}"
echo -e " Available version: ${green}${fullversion}${default}" echo -e " Available version: ${green}${fullversion}${default}"
echo -e "" echo -e ""
fn_print_ok_nl "No update available" fn_print_ok_nl "No update available"
fn_script_log_info "Current build: ${currentbuild}" fn_script_log_info "Current build: ${currentbuild}"
fn_script_log_info "Available build: ${fullversion}" fn_script_log_info "Available build: ${fullversion}"
fi fi
} }
if [ "${installer}" == "1" ]; then if [ "${installer}" == "1" ]; then
fn_mta_get_availablebuild fn_mta_get_availablebuild
fn_update_mta_dl fn_update_mta_dl
else else
# Checks for server update from linux.mtasa.com using the github repo. # Checks for server update from linux.mtasa.com using the github repo.
fn_print_dots "Checking for update: linux.mtasa.com" fn_print_dots "Checking for update: linux.mtasa.com"
fn_script_log_info "Checking for update: linux.mtasa.com" fn_script_log_info "Checking for update: linux.mtasa.com"
sleep 1 sleep 1
fn_update_mta_currentbuild fn_update_mta_currentbuild
fn_mta_get_availablebuild fn_mta_get_availablebuild
fn_update_mta_compare fn_update_mta_compare
fi fi

Loading…
Cancel
Save