mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 02:42:58 +00:00
Upload log to sprunge.us
This commit is contained in:
parent
024b741552
commit
9b8efe1b27
1 changed files with 10 additions and 2 deletions
|
@ -330,8 +330,16 @@ function dumpPiHoleLog {
|
||||||
|
|
||||||
# Anything to be done after capturing of pihole.log terminates
|
# Anything to be done after capturing of pihole.log terminates
|
||||||
function finalWork {
|
function finalWork {
|
||||||
echo "::: Finshed debugging!"
|
echo "::: Finshed debugging!"
|
||||||
echo "::: Debug log can be found at : /var/log/pihole_debug.log"
|
SPRUNGE=$(cat /var/log/pihole_debug.log | curl --silent --connect-timeout 5 -F 'sprunge=<-' http://sprunge.us)
|
||||||
|
|
||||||
|
# Check if sprunge.us is reachable. When it's not, point to local log instead
|
||||||
|
if [ -n "$SPRUNGE" ]
|
||||||
|
then
|
||||||
|
echo "::: Debug log can be found at : $SPRUNGE"
|
||||||
|
else
|
||||||
|
echo "::: Debug log can be found at : /var/log/pihole_debug.log"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
trap finalWork EXIT
|
trap finalWork EXIT
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue