1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-11-13 19:28:59 +00:00

Merge pull request #1517 from pi-hole/tweak/update_core_and_FTL

Don't update FTL when there is a core update
This commit is contained in:
Mcat12 2017-06-04 08:42:59 -04:00 committed by GitHub
commit c47f3e3307

View File

@ -117,7 +117,10 @@ main() {
echo "::: FTL: up to date"
fi
if ${FTL_update}; then
# Logic: Don't update FTL when there is a core update available
# since the core update will run the installer which will itself
# re-install (i.e. update) FTL
if ${FTL_update} && ! ${core_update}; then
echo ":::"
echo "::: FTL out of date"
FTLdetect