From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4gVCLz75BSz2xQT for ; Tue, 02 Jun 2026 14:07:07 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4gVCLz6f7Tz2xLt for ; Tue, 02 Jun 2026 14:07:07 +0000 (UTC) Received: from people01.haj.ipfire.org (people01.haj.ipfire.org [IPv6:2001:678:b28::161]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "people01.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4gVCLy5WzFzTl for ; Tue, 02 Jun 2026 14:07:06 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1780409226; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=OA8GntLu1LQfBBR03siXq7/9EUZetJh3RaXzUbpIYe8=; b=l/lT95uUALRxI4klSEFfjG0QPB6vU7n0jgjC0Msl+yIfce3Q0t56NR7BqxNnJS+5rO/6TO P2+hC9zF/ujgzhDw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1780409226; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=OA8GntLu1LQfBBR03siXq7/9EUZetJh3RaXzUbpIYe8=; b=QHkQmv3PavVavoNv82E4iDBCqgv7ZKGauib3M/0SHRoFlvrekyUm8/cvt6x8p41W4U2mlz 2Sp8+FyK6HXxrKe/pbhZIjPnptgEYUgqjMVUJvhBCfTtvfR7MEqGt+EbpFv44q5v2wTJLV CnIb4/VPIsyus2DQtFZFC6uu/Q0uEOf29zVZ5RcmGBCThVeJjF8a2/0fFJd9nzBt1JZHsd bYmmWyuTk4rb7o+jAPIxt7BzxVKG58yE/v58UF3cdjHQRsm/JraHM4hQnZz64B3yjFE/6O bdh9J998XCRr6bSzuBGXXeejdSTrLhNqMtpsoLyOEfQZMRc7pdQg+gj9GK2sdA== Received: by people01.haj.ipfire.org (Postfix, from userid 1000) id 4gVCLx2kDTz2xHq; Tue, 02 Jun 2026 14:07:05 +0000 (UTC) To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] IPFire 2.x development tree branch, next, updated. bc12c6119d3ef4050b2efc66f49cdcaec052079f X-Git-Refname: refs/heads/next X-Git-Reftype: branch X-Git-Oldrev: 6df18afecf9751c5ac731aec01d5dec93b02546b X-Git-Newrev: bc12c6119d3ef4050b2efc66f49cdcaec052079f Message-Id: <4gVCLx2kDTz2xHq@people01.haj.ipfire.org> Date: Tue, 02 Jun 2026 14:07:05 +0000 (UTC) From: Michael Tremer Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree". The branch, next has been updated via bc12c6119d3ef4050b2efc66f49cdcaec052079f (commit) from 6df18afecf9751c5ac731aec01d5dec93b02546b (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit bc12c6119d3ef4050b2efc66f49cdcaec052079f Author: Daniel Weismüller Date: Tue Jun 2 16:06:37 2026 +0200 knot resolver: Fix Lua check for empty string Signed-off-by: Daniel Weismüller ----------------------------------------------------------------------- Summary of changes: config/knot-resolver/config.lua | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) Difference in files: diff --git a/config/knot-resolver/config.lua b/config/knot-resolver/config.lua index 46cfac5e9..c382434c2 100644 --- a/config/knot-resolver/config.lua +++ b/config/knot-resolver/config.lua @@ -484,6 +484,15 @@ function config.load_rpzs() if status == "on" then local path = string.format("/var/lib/knot-resolver/zones/%s.zone", name) + -- Fix buggy Perl CSV generator + if not enabled_zones then + enabled_zones = "" + end + + if not custom_acl then + custom_acl = "" + end + -- Ensure the zone exists if io.open(path) then -- Make the tag @@ -534,7 +543,7 @@ function config.load_rpzs() end -- Load it globally if no ACLs have been defined - if not enabled_zones and not custom_acl then + if enabled_zones == "" and custom_acl == "" then add_tag(views, "0.0.0.0/0", tag) end end hooks/post-receive -- IPFire 2.x development tree