1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-12-23 07:18:07 +00:00

Merge pull request #558 from dan019/easy-log

Upload log to sprunge.us
This commit is contained in:
Mcat12 2016-07-03 22:08:25 -04:00 committed by GitHub
commit 325a41c598

View File

@ -331,7 +331,15 @@ function dumpPiHoleLog {
# Anything to be done after capturing of pihole.log terminates
function finalWork {
echo "::: Finshed debugging!"
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