gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
170 lines
5.9 KiB
170 lines
5.9 KiB
#!/bin/bash
|
|
# LinuxGSM update_factorio.sh function
|
|
# Author: Daniel Gibbs
|
|
# Contributor: Kristian Polso
|
|
# Website: https://gameservermanagers.com
|
|
# Description: Handles updating of Factorio servers.
|
|
|
|
local commandname="UPDATE"
|
|
local commandaction="Update"
|
|
local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
|
|
|
|
fn_update_factorio_dl(){
|
|
fn_fetch_file "https://www.factorio.com/get-download/${availablebuild}/headless/${factorioarch}" "${tmpdir}" "factorio_headless_${factorioarch}-${availablebuild}.tar.gz"
|
|
fn_dl_extract "${tmpdir}" "factorio_headless_${factorioarch}-${availablebuild}.tar.gz" "${tmpdir}"
|
|
echo -e "copying to ${serverfiles}...\c"
|
|
fn_script_log "Copying to ${serverfiles}"
|
|
cp -R "${tmpdir}/factorio/"* "${serverfiles}"
|
|
local exitcode=$?
|
|
if [ "${exitcode}" == "0" ]; then
|
|
fn_print_ok_eol_nl
|
|
else
|
|
fn_print_fail_eol_nl
|
|
fi
|
|
}
|
|
|
|
fn_update_factorio_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 "${logdir}/server/factorio-current.log" ]; then
|
|
fn_print_error "Checking for update: factorio.com"
|
|
sleep 1
|
|
fn_print_error_nl "Checking for update: factorio.com: No logs with server version found"
|
|
fn_script_log_error "Checking for update: factorio.com: No logs with server version found"
|
|
sleep 1
|
|
fn_print_info_nl "Checking for update: factorio.com: Forcing server restart"
|
|
fn_script_log_info "Checking for update: factorio.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 "${logdir}/server/factorio-current.log" ]; then
|
|
fn_print_fail_nl "Checking for update: factorio.com: Still No logs with server version found"
|
|
fn_script_log_fatal "Checking for update: factorio.com: Still No logs with server version found"
|
|
core_exit.sh
|
|
fi
|
|
fi
|
|
|
|
# Get current build from logs
|
|
currentbuild=$(grep "Loading mod base" "${logdir}/server/factorio-current.log" 2> /dev/null|awk '{print $5}'|tail -1)
|
|
if [ -z "${currentbuild}" ]; then
|
|
fn_print_error_nl "Checking for update: factorio.com: Current build version not found"
|
|
fn_script_log_error "Checking for update: factorio.com: Current build version not found"
|
|
sleep 1
|
|
fn_print_info_nl "Checking for update: factorio.com: Forcing server restart"
|
|
fn_script_log_info "Checking for update: factorio.com: Forcing server restart"
|
|
exitbypass=1
|
|
command_stop.sh
|
|
exitbypass=1
|
|
command_start.sh
|
|
currentbuild=$(grep "Loading mod base" "${logdir}/server/factorio-current.log" 2> /dev/null|awk '{print $5}'|tail -1)
|
|
if [ -z "${currentbuild}" ]; then
|
|
fn_print_fail_nl "Checking for update: factorio.com: Current build version still not found"
|
|
fn_script_log_fatal "Checking for update: factorio.com: Current build version still not found"
|
|
core_exit.sh
|
|
fi
|
|
fi
|
|
}
|
|
|
|
fn_update_factorio_arch(){
|
|
# Factorio is linux64 only for now
|
|
factorioarch="linux64"
|
|
}
|
|
|
|
fn_update_factorio_availablebuild(){
|
|
# Gets latest build info.
|
|
if [ "${branch}" != "stable" ]; then
|
|
availablebuild=$(${curlpath} -s https://www.factorio.com/download-headless/"${branch}" | grep 'headless/linux64' | head -n 1 | grep -oP '(?<=get-download/).*?(?=/)')
|
|
else
|
|
availablebuild=$(${curlpath} -s https://www.factorio.com/download-headless | grep 'headless/linux64' | head -n 1 | grep -oP '(?<=get-download/).*?(?=/)')
|
|
fi
|
|
sleep 1
|
|
|
|
# Checks if availablebuild variable has been set
|
|
if [ -z "${availablebuild}" ]; then
|
|
fn_print_fail "Checking for update: factorio.com"
|
|
sleep 1
|
|
fn_print_fail "Checking for update: factorio.com: Not returning version info"
|
|
fn_script_log_fatal "Failure! Checking for update: factorio.com: Not returning version info"
|
|
core_exit.sh
|
|
elif [ "${installer}" == "1" ]; then
|
|
:
|
|
else
|
|
fn_print_ok "Checking for update: factorio.com"
|
|
fn_script_log_pass "Checking for update: factorio.com"
|
|
sleep 1
|
|
fi
|
|
}
|
|
|
|
fn_update_factorio_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} ${factorioarch} ${branch} ${default}"
|
|
echo -e " Available build: ${green}${availablebuild} ${factorioarch} ${branch}${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} ${factorioarch}${branch}"
|
|
fn_script_log "Available build: ${availablebuild} ${factorioarch}${branch}"
|
|
fn_script_log "${currentbuild} > ${availablebuild}"
|
|
|
|
unset updateonstart
|
|
|
|
check_status.sh
|
|
if [ "${status}" == "0" ]; then
|
|
fn_update_factorio_dl
|
|
exitbypass=1
|
|
command_start.sh
|
|
exitbypass=1
|
|
command_stop.sh
|
|
else
|
|
exitbypass=1
|
|
command_stop.sh
|
|
fn_update_factorio_dl
|
|
exitbypass=1
|
|
command_start.sh
|
|
fi
|
|
alert="update"
|
|
alert.sh
|
|
else
|
|
echo -e "\n"
|
|
echo -e "No update available:"
|
|
echo -e " Current build: ${green}${currentbuild} ${factorioarch} ${branch}${default}"
|
|
echo -e " Available build: ${green}${availablebuild} ${factorioarch} ${branch}${default}"
|
|
echo -e ""
|
|
fn_print_ok_nl "No update available"
|
|
fn_script_log_info "Current build: ${currentbuild} ${factorioarch} ${branch}"
|
|
fn_script_log_info "Available build: ${availablebuild} ${factorioarch} ${branch}"
|
|
fi
|
|
}
|
|
|
|
fn_update_factorio_arch
|
|
if [ "${installer}" == "1" ]; then
|
|
fn_update_factorio_availablebuild
|
|
fn_update_factorio_dl
|
|
else
|
|
# Checks for server update from factorio.com
|
|
fn_print_dots "Checking for update: factorio.com"
|
|
fn_script_log_info "Checking for update: factorio.com"
|
|
sleep 1
|
|
fn_update_factorio_currentbuild
|
|
fn_update_factorio_availablebuild
|
|
fn_update_factorio_compare
|
|
fi
|
|
|