mirror of
https://github.com/pi-hole/docker-pi-hole.git
synced 2025-12-20 02:18:51 +00:00
Exit if FTL did not start
Signed-off-by: yubiuser <github@yubiuser.dev>
This commit is contained in:
@@ -76,8 +76,12 @@ start() {
|
|||||||
done
|
done
|
||||||
|
|
||||||
# Wait until the FTL log contains the "FTL started" message before continuing, timeout after 10 seconds
|
# Wait until the FTL log contains the "FTL started" message before continuing, timeout after 10 seconds
|
||||||
logsize_before=$(stat -c%s /var/log/pihole/FTL.log)
|
# exit if we do not find it
|
||||||
pihole-FTL wait-for '########## FTL started' /var/log/pihole/FTL.log 10 "${logsize_before}" > /dev/null
|
pihole-FTL wait-for '########## FTL started' /var/log/pihole/FTL.log 10 "0 > /dev/null"
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo " [✗] FTL did not start"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
pihole updatechecker
|
pihole updatechecker
|
||||||
local versionsOutput
|
local versionsOutput
|
||||||
|
|||||||
Reference in New Issue
Block a user