Merge pull request #1981 from pi-hole/fix/always_repair_pihole-FTL.service

Always replace pihole-FTL.service
pull/1994/head
DL6ER 6 years ago committed by GitHub
commit 40bda4b3d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1754,6 +1754,9 @@ FTLinstall() {
return 1
fi
# Always replace pihole-FTL.service
install -T -m 0755 "${PI_HOLE_LOCAL_REPO}/advanced/pihole-FTL.service" "/etc/init.d/pihole-FTL"
# If the download worked,
if curl -sSL --fail "https://github.com/pi-hole/FTL/releases/download/${latesttag%$'\r'}/${binary}" -o "/tmp/${binary}"; then
# get sha1 of the binary we just downloaded for verification.
@ -1773,7 +1776,6 @@ FTLinstall() {
# Move back into the original directory the user was in
cd "${orig_dir}"
# Install the FTL service
install -T -m 0755 "${PI_HOLE_LOCAL_REPO}/advanced/pihole-FTL.service" "/etc/init.d/pihole-FTL"
echo -e "${OVER} ${TICK} ${str}"
return 0
# Otherise,

Loading…
Cancel
Save