From: Michael Tremer Date: Thu, 8 Jan 2026 15:17:22 +0000 (+0000) Subject: lists: Remove the replaced Suricata exporters X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a51129f5d1b54aba44dbcad79b43778b3cedd40f;p=dbl.git lists: Remove the replaced Suricata exporters Signed-off-by: Michael Tremer --- diff --git a/src/dnsbl/lists.py b/src/dnsbl/lists.py index 06c9d80..83c625b 100644 --- a/src/dnsbl/lists.py +++ b/src/dnsbl/lists.py @@ -497,12 +497,7 @@ class List(sqlmodel.SQLModel, database.BackendMixin, table=True): "hosts" : exporters.HostsExporter, "rpz" : exporters.RPZExporter, "squidguard" : exporters.SquidGuardExporter, - - # Suricata - "suricata-dns" : exporters.SuricataDNSExporter, - "suricata-http" : exporters.SuricataHTTPExporter, - "suricata-tls" : exporters.SuricataTLSExporter, - "suricata-quic" : exporters.SuricataQUICExporter, + "suricata" : exporters.SuricataExporter, } # Fetch the exporter diff --git a/src/scripts/dnsbl.in b/src/scripts/dnsbl.in index 78a5bf0..89c4670 100644 --- a/src/scripts/dnsbl.in +++ b/src/scripts/dnsbl.in @@ -111,8 +111,7 @@ class CLI(object): export.add_argument("output", type=argparse.FileType("wb"), help=_("The output file")) export.add_argument("--format", default="domains", - choices=("abp", "domains", "dnsbl", "hosts", "rpz", "squidguard", - "suricata-dns", "suricata-http", "suricata-tls", "suricata-quic"), + choices=("abp", "domains", "dnsbl", "hosts", "rpz", "squidguard", "suricata",), help=_("Output Format")) export.set_defaults(func=self.__export)