From 75e1a58cb59f7ce2490145b11d06295dd62e61aa Mon Sep 17 00:00:00 2001 From: Jafner <40403594+Jafner@users.noreply.github.com> Date: Thu, 23 Sep 2021 22:06:41 -0700 Subject: [PATCH] Fixed missing update to status file Fixed a bug where the init script failed to update the status of the service to INIT when the host is not connectable, but a local version is found. --- init.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/init.sh b/init.sh index 4fdb74c..900fae4 100644 --- a/init.sh +++ b/init.sh @@ -77,6 +77,7 @@ else # if get.5e.tools is not accessible then echo " === Version file found: $(cat /usr/local/apache2/htdocs/version)" echo " === Starting!" + echo "INIT" > /status else echo " === No version file found! You must be able to access $HOST to grab the 5eTools files." exit 1