1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-11-18 06:08:21 +00:00

exit after displaying white/blacklist

This commit is contained in:
Promofaux 2016-10-23 19:49:51 +01:00
parent 8ee98f0a4a
commit b79392ba2c
2 changed files with 2 additions and 0 deletions

View File

@ -143,6 +143,7 @@ DisplayBlist() {
echo "${count}: ${AD}"
count=$((count+1))
done < "${blacklist}"
exit 0;
}
###################################################

View File

@ -115,6 +115,7 @@ DisplayWlist() {
echo "${count}: ${RD}"
count=$((count+1))
done < "${whitelist}"
exit 0;
}
###################################################