Skip to content

Commit 4162725

Browse files
authored
Merge pull request #1930 from pi-hole/development
Dev -> master for tagging
2 parents 8756dfc + 1ada882 commit 4162725

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,4 +304,4 @@ Pi-hole is an integral part of your network, don't let it fall over because of a
304304
305305
# User Feedback
306306
307-
Please report issues on the [GitHub project](https://github.com/pi-hole/docker-pi-hole) when you suspect something docker related. Pi-hole or general docker questions are best answered on our [user forums](https://discourse.pi-hole.net/c/bugs-problems-issues/docker/30).
307+
Please report issues on the [GitHub project](https://github.com/pi-hole/docker-pi-hole) when you suspect something docker related. Pi-hole or general docker questions are best answered on our [user forums](https://discourse.pi-hole.net/c/bugs-problems-issues/docker/30)

src/start.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ start() {
9393
if [ "${TAIL_FTL_LOG:-1}" -eq 1 ]; then
9494
# Start tailing the FTL log from the most recent "FTL Started" message
9595
# Get the line number
96-
startFrom=$(grep -n '########## FTL started' /var/log/pihole/FTL.log | tail -1 | cut -d: -f1)
96+
startFrom=$(grep -n '########## FTL started' "${FTLlogFile}" | tail -1 | cut -d: -f1)
9797
# Start the tail from the line number and background it
98-
tail --follow=name -n +"${startFrom}" /var/log/pihole/FTL.log &
98+
tail --follow=name -n +"${startFrom}" "${FTLlogFile}" &
9999
else
100100
echo " [i] FTL log output is disabled. Remove the Environment variable TAIL_FTL_LOG, or set it to 1 to enable FTL log output."
101101
fi

0 commit comments

Comments
 (0)