mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 02:42:58 +00:00
Move dnsmasq check into FTLcheckUpdate
Signed-off-by: Adam Warner <adamw@rner.email>
This commit is contained in:
parent
68d7337f98
commit
e946a35b18
1 changed files with 5 additions and 5 deletions
|
@ -1971,6 +1971,11 @@ FTLcheckUpdate()
|
|||
local remoteSha1
|
||||
local localSha1
|
||||
|
||||
# if dnsmasq is running at this point, force reinstall of FTL Binary
|
||||
if check_service_active "dnsmasq";then
|
||||
return 1
|
||||
fi
|
||||
|
||||
if [[ ! "${ftlBranch}" == "master" ]]; then
|
||||
if [[ ${ftlLoc} ]]; then
|
||||
# We already have a pihole-FTL binary downloaded.
|
||||
|
@ -2022,11 +2027,6 @@ FTLdetect() {
|
|||
echo ""
|
||||
echo -e " ${INFO} FTL Checks..."
|
||||
|
||||
# if dnsmasq is running at this point, force reinstall of FTL Binary
|
||||
if check_service_active "dnsmasq";then
|
||||
FTLinstall "${binary}" || return 1
|
||||
fi
|
||||
|
||||
if FTLcheckUpdate ; then
|
||||
FTLinstall "${binary}" || return 1
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue