public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] log.dat: Fix an error with 'unbound' logging too much data.
@ 2023-02-17 17:53 Jon Murphy
  0 siblings, 0 replies; only message in thread
From: Jon Murphy @ 2023-02-17 17:53 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 845 bytes --]

- Make regex "non-greedy"
- grab data up to first occurance of "]" and not last occurance of "]"

Signed-off-by: Jon Murphy <jon.murphy(a)ipfire.org>
---
 html/cgi-bin/logs.cgi/log.dat | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/html/cgi-bin/logs.cgi/log.dat b/html/cgi-bin/logs.cgi/log.dat
index 5fb1fcd5d..17dacbbf5 100644
--- a/html/cgi-bin/logs.cgi/log.dat
+++ b/html/cgi-bin/logs.cgi/log.dat
@@ -74,7 +74,7 @@ my %sections = (
         'suricata' => '(suricata: )',
         'squid' => '(squid\[.*\]: |squid: )',
         'ssh' => '(sshd(?:\(.*\))?\[.*\]: )',
-        'unbound' => '(unbound: \[.*:.*\])(.*:.*$)',
+        'unbound' => '(unbound: \[.*?\])(.*:.*$)',
         'urlfilter bl' => '(installpackage\[urlfilter\]: )',
         'wireless' => '(hostapd:|kernel: ath.*:|kernel: wifi[0-9]:)'
 	 );
-- 
2.30.2


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-02-17 17:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-17 17:53 [PATCH] log.dat: Fix an error with 'unbound' logging too much data Jon Murphy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox