Browse Source

Merge pull request #1422 from Digital-Storm/#1418-factorio-experimental

#1418 factorio experimental
pull/1442/head
Daniel Gibbs 8 years ago
committed by GitHub
parent
commit
0e4e926efb
  1. 3
      Factorio/fctrserver
  2. 2
      lgsm/functions/core_dl.sh
  3. 6
      lgsm/functions/update_factorio.sh

3
Factorio/fctrserver

@ -49,6 +49,7 @@ channeltag=""
## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update
updateonstart="off" updateonstart="off"
updatebranch="stable"
## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup
maxbackups="4" maxbackups="4"
@ -187,4 +188,4 @@ fi
core_dl.sh core_dl.sh
core_functions.sh core_functions.sh
getopt=$1 getopt=$1
core_getopt.sh core_getopt.sh

2
lgsm/functions/core_dl.sh

@ -60,6 +60,8 @@ fn_dl_extract(){
tarcmd=$(tar -zxf "${filedir}/${filename}" -C "${extractdir}") tarcmd=$(tar -zxf "${filedir}/${filename}" -C "${extractdir}")
elif [ "${mime}" == "application/x-bzip2" ]; then elif [ "${mime}" == "application/x-bzip2" ]; then
tarcmd=$(tar -jxf "${filedir}/${filename}" -C "${extractdir}") tarcmd=$(tar -jxf "${filedir}/${filename}" -C "${extractdir}")
elif [ "${mime}" == "application/x-xz" ]; then
tarcmd=$(tar -xf "${filedir}/${filename}" -C "${extractdir}")
elif [ "${mime}" == "application/zip" ]; then elif [ "${mime}" == "application/zip" ]; then
tarcmd=$(unzip -d "${extractdir}" "${filedir}/${filename}") tarcmd=$(unzip -d "${extractdir}" "${filedir}/${filename}")
fi fi

6
lgsm/functions/update_factorio.sh

@ -49,7 +49,7 @@ fn_update_factorio_currentbuild(){
fi fi
# Get current build from logs # Get current build from logs
currentbuild=$(grep "Loading mod base" "${consolelogdir}"/"${servicename}"-console.log 2> /dev/null|awk '{print $5}') currentbuild=$(grep "Loading mod base" "${consolelogdir}"/"${servicename}"-console.log 2> /dev/null|awk '{print $5}'|tail -1)
if [ -z "${currentbuild}" ]; then if [ -z "${currentbuild}" ]; then
fn_print_error_nl "Checking for update: factorio.com: Current build version not found" 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" fn_script_log_error "Checking for update: factorio.com: Current build version not found"
@ -60,7 +60,7 @@ fn_update_factorio_currentbuild(){
command_stop.sh command_stop.sh
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
currentbuild=$(grep "Loading mod base" "${consolelogdir}"/"${servicename}"-console.log 2> /dev/null|awk '{print $5}') currentbuild=$(grep "Loading mod base" "${consolelogdir}"/"${servicename}"-console.log 2> /dev/null|awk '{print $5}'|tail -1)
if [ -z "${currentbuild}" ]; then if [ -z "${currentbuild}" ]; then
fn_print_fail_nl "Checking for update: factorio.com: Current build version still not found" 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" fn_script_log_fatal "Checking for update: factorio.com: Current build version still not found"
@ -76,7 +76,7 @@ fn_update_factorio_arch(){
fn_update_factorio_availablebuild(){ fn_update_factorio_availablebuild(){
# Gets latest build info. # Gets latest build info.
availablebuild=$(curl -s https://www.factorio.com/download-headless/stable | grep 'headless/linux64' | head -n 1 | grep -oP '(?<=get-download/).*?(?=/)') availablebuild=$(curl -s https://www.factorio.com/download-headless/"${updatebranch}" | grep 'headless/linux64' | head -n 1 | grep -oP '(?<=get-download/).*?(?=/)')
sleep 1 sleep 1
# Checks if availablebuild variable has been set # Checks if availablebuild variable has been set

Loading…
Cancel
Save