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

Always replace pihole-FTL.service
This commit is contained in:
DL6ER 2018-02-18 17:26:17 +01:00 committed by GitHub
commit 40bda4b3d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1754,6 +1754,9 @@ FTLinstall() {
return 1 return 1
fi 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 the download worked,
if curl -sSL --fail "https://github.com/pi-hole/FTL/releases/download/${latesttag%$'\r'}/${binary}" -o "/tmp/${binary}"; then 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. # 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 # Move back into the original directory the user was in
cd "${orig_dir}" cd "${orig_dir}"
# Install the FTL service # 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}" echo -e "${OVER} ${TICK} ${str}"
return 0 return 0
# Otherise, # Otherise,