Merge pull request #2343 from pi-hole/tweak/audit_log

Add facility to add multiple audit list entries at once and to nuke audit list
pull/2353/merge
Mark Drobnak 6 years ago committed by GitHub
commit afdc4219d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -525,9 +525,19 @@ Teleporter() {
php /var/www/html/admin/scripts/pi-hole/php/teleporter.php > "pi-hole-teleporter_${datetimestamp}.zip"
}
audit()
addAudit()
{
echo "${args[2]}" >> /etc/pihole/auditlog.list
shift # skip "-a"
shift # skip "audit"
for var in "$@"
do
echo "${var}" >> /etc/pihole/auditlog.list
done
}
clearAudit()
{
echo -n "" > /etc/pihole/auditlog.list
}
SetPrivacyLevel() {
@ -565,7 +575,8 @@ main() {
"-i" | "interface" ) SetListeningMode "$@";;
"-t" | "teleporter" ) Teleporter;;
"adlist" ) CustomizeAdLists;;
"audit" ) audit;;
"audit" ) addAudit "$@";;
"clearaudit" ) clearAudit;;
"-l" | "privacylevel" ) SetPrivacyLevel;;
* ) helpFunc;;
esac

Loading…
Cancel
Save