mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-12-24 13:50:17 +00:00
Added 01-pihole.conf from /etc/dnsmasq.d/ to log
Write 01-pihole.conf to debug log
This commit is contained in:
parent
b0dd231018
commit
04638c9065
1 changed files with 13 additions and 1 deletions
|
@ -138,13 +138,25 @@ function dumpPiHoleLog {
|
||||||
}
|
}
|
||||||
|
|
||||||
function finalWrites {
|
function finalWrites {
|
||||||
|
# Write the 01-pihole.conf from /etc/dnsmasq.d/ to the debug log
|
||||||
|
echo "Writing 01-pihole.conf to debug log..."
|
||||||
|
echo "############### 01-pihole.conf ###############" >> $DEBUG_LOG
|
||||||
|
PIHOLECONFFILE="/etc/dnsmasq.d/01-pihole.conf"
|
||||||
|
if [ -e "$PIHOLECONFFILE" ]
|
||||||
|
then
|
||||||
|
cat "$PIHOLECONFFILE" >> $DEBUG_LOG
|
||||||
|
echo >> $DEBUG_LOG
|
||||||
|
else
|
||||||
|
echo "No 01-pihole.conf file found!" >> $DEBUG_LOG
|
||||||
|
echo "No 01-pihole.conf file found"
|
||||||
|
fi
|
||||||
# Write the gravity.list after the user is finished capturing the pihole.log output
|
# Write the gravity.list after the user is finished capturing the pihole.log output
|
||||||
echo "Writing gravity.list to debug log..."
|
echo "Writing gravity.list to debug log..."
|
||||||
echo "############### gravity.list ###############" >> $DEBUG_LOG
|
echo "############### gravity.list ###############" >> $DEBUG_LOG
|
||||||
GRAVITYFILE="/etc/pihole/gravity.list"
|
GRAVITYFILE="/etc/pihole/gravity.list"
|
||||||
if [ -e "$GRAVITYFILE" ]
|
if [ -e "$GRAVITYFILE" ]
|
||||||
then
|
then
|
||||||
cat /etc/pihole/gravity.list >> $DEBUG_LOG
|
cat "$GRAVITYFILE" >> $DEBUG_LOG
|
||||||
echo >> $DEBUG_LOG
|
echo >> $DEBUG_LOG
|
||||||
else
|
else
|
||||||
echo "No gravity.list file found!" >> $DEBUG_LOG
|
echo "No gravity.list file found!" >> $DEBUG_LOG
|
||||||
|
|
Loading…
Reference in a new issue