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.
26 lines
947 B
26 lines
947 B
#!/bin/bash
|
|
# LinuxGSM check_last_update.sh module
|
|
# Author: Daniel Gibbs
|
|
# Contributors: http://linuxgsm.com/contrib
|
|
# Website: https://linuxgsm.com
|
|
# Description: Checks lock file to see when last update happened.
|
|
# Will reboot server if instance not rebooted since update.
|
|
|
|
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
|
|
|
|
if [ -f "${lockdir}/${selfname}-laststart.lock" ]; then
|
|
laststart=$(cat "${lockdir}/${selfname}-laststart.lock")
|
|
fi
|
|
if [ -f "${lockdir}/lastupdate.lock" ]; then
|
|
lastupdate=$(cat "${lockdir}/lastupdate.lock")
|
|
fi
|
|
|
|
check_status.sh
|
|
if [ -f "${lockdir}/lastupdate.lock" ] && [ "${status}" != "0" ]; then
|
|
if [ ! -f "${lockdir}/${selfname}-laststart.lock" ] || [ "${laststart}" -lt "${lastupdate}" ]; then
|
|
fn_print_info "${selfname} has not been restarted since last update"
|
|
fn_script_log_info "${selfname} has not been restarted since last update"
|
|
command_restart.sh
|
|
fn_firstcommand_reset
|
|
fi
|
|
fi
|
|
|