Browse Source

Merge branch 'release/170803' into develop

pull/1639/head
Daniel Gibbs 8 years ago
parent
commit
27430cd666
  1. 2
      lgsm/functions/alert.sh
  2. 4
      lgsm/functions/update_factorio.sh
  3. 2
      linuxgsm.sh

2
lgsm/functions/alert.sh

@ -71,8 +71,6 @@ fn_alert_permissions(){
alertbody="${servicename} has permissions issues" alertbody="${servicename} has permissions issues"
} }
if [ "${alert}" == "permissions" ]; then if [ "${alert}" == "permissions" ]; then
fn_alert_permissions fn_alert_permissions
elif [ "${alert}" == "restart" ]; then elif [ "${alert}" == "restart" ]; then

4
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" "${logdir}"/server/factorio-current.log 2> /dev/null|awk '{print $5}'|tail -1) currentbuild=$(grep "Loading mod base" "${logdir}/server/factorio-current.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" "${logdir}"/server/factorio-current.log 2> /dev/null|awk '{print $5}'|tail -1) currentbuild=$(grep "Loading mod base" "${logdir}/server/factorio-current.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"

2
linuxgsm.sh

@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
set -x set -x
fi fi
version="170710" version="170803"
shortname="core" shortname="core"
gameservername="core" gameservername="core"
rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))"

Loading…
Cancel
Save