2 Commits

Author SHA1 Message Date
Jan Hák
d4321095cd knot: update to version 3.5.2
Release notes: https://www.knot-dns.cz/2025-11-28-version-352.html

Signed-off-by: Jan Hák <jan.hak@nic.cz>
2025-12-02 21:52:31 +01:00
Philip Prindeville
27f55cdbda isc-dhcp: use modzone not addzone so in-addr.arpa works
Updates to in-addr.arpa are being rejected with:

update failed: REFUSED

because we create an empty zone, and then try to add it again
when it already exists.  So use modzone instead to update it.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
2025-12-02 10:03:24 -07:00
4 changed files with 8 additions and 8 deletions

View File

@@ -11,7 +11,7 @@ PKG_NAME:=isc-dhcp
UPSTREAM_NAME:=dhcp
PKG_REALVERSION:=4.4.3-P1
PKG_VERSION:=4.4.3_p1
PKG_RELEASE:=12
PKG_RELEASE:=13
PKG_LICENSE:=BSD-3-Clause
PKG_LICENSE_FILES:=LICENSE

View File

@@ -137,11 +137,11 @@ write_empty_zone() {
local zpath
zpath="$1"
cat > "$zpath" <<\EOF
cat > "$zpath" <<EOF
;
; BIND empty zone created by isc-dhcp-server
; BIND empty zone created by isc-dhcp-server at $(date)
;
$TTL 604800
\$TTL 604800
@ IN SOA localhost. root.localhost. (
1 ; Serial
604800 ; Refresh
@@ -167,7 +167,7 @@ create_empty_zone() {
chown bind:bind "$zpath" || return 1
chmod 0664 "$zpath" || return 1
if ! error=$(rndc addzone $zone "{
if ! error=$(rndc modzone $zone "{
type primary;
file \"$zpath\";
update-policy {

View File

@@ -8,12 +8,12 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=knot
PKG_VERSION:=3.5.1
PKG_VERSION:=3.5.2
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=https://secure.nic.cz/files/knot-dns/
PKG_HASH:=a614d5226ceed4b4cdd4a3badbb0297ea0f987f65948e4eb828119a3b5ac0a4b
PKG_HASH:=6f577c247ef870a55fe3377246bc1c2d643c673cd32de6c26231ff51d3fc7093
PKG_MAINTAINER:=Daniel Salzman <daniel.salzman@nic.cz>
PKG_LICENSE:=GPL-2.0-or-later LGPL-2.0-or-later MIT ISC BSD-3-Clause

View File

@@ -20,5 +20,5 @@
-ZSCANNER_TOOL="$BUILD"/zscanner-tool
+ZSCANNER_TOOL="$SOURCE"/zscanner-tool
plan 87
plan 88