mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 18:32:20 +02:00
Changelog:
==========
[func] Don't try to process DNSSEC-related and ZONEMD records
in catz. [GL #3380]
[func] Add some more dnssec-policy checks to detect weird
policies. [GL #1611]
[test] Add new set of unit test macros and move the unit
tests under single namespace in /tests/. [GL !6243]
[func] Key timing options for 'dnssec-settime' and related
utilities now accept "UNSET" times as printed by
'dnssec-settime -p'. [GL #3361]
[bug] When the fetches-per-server quota was adjusted
because of an authoritative server timing out more
or less frequently, it was incorrectly set to 1
rather than the intended value. This has been
fixed. [GL #3327]
[bug] Only write key files if the dnssec-policy keymgr has
changed the metadata. [GL #3302]
[func] Key timing options for 'dnssec-keygen' and
'dnssec-settime' now accept times as printed by
'dnssec-settime -p'. [GL !2947]
(From OE-Core rev: d5a12d549209f01324d03963db96449ee43452eb)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
43 lines
997 B
Diff
43 lines
997 B
Diff
bind: make "/etc/init.d/bind stop" work
|
|
|
|
Upstream-Status: Inappropriate [configuration]
|
|
|
|
Add some configurations, make rndc command be able to controls
|
|
the named daemon.
|
|
|
|
Signed-off-by: Roy Li <rongqing.li@windriver.com>
|
|
---
|
|
conf/named.conf | 5 +++++
|
|
conf/rndc.conf | 5 +++++
|
|
2 files changed, 10 insertions(+), 0 deletions(-)
|
|
create mode 100644 conf/rndc.conf
|
|
|
|
diff --git a/conf/named.conf b/conf/named.conf
|
|
index 95829cf..c8899e7 100644
|
|
--- a/conf/named.conf
|
|
+++ b/conf/named.conf
|
|
@@ -47,3 +47,8 @@ zone "255.in-addr.arpa" {
|
|
// root-delegation-only exclude { "DE"; "MUSEUM"; };
|
|
|
|
include "/etc/bind/named.conf.local";
|
|
+include "/etc/bind/rndc.key" ;
|
|
+controls {
|
|
+ inet 127.0.0.1 allow { localhost; }
|
|
+ keys { rndc-key; };
|
|
+};
|
|
diff --git a/conf/rndc.conf b/conf/rndc.conf
|
|
new file mode 100644
|
|
index 0000000..a0b481d
|
|
--- /dev/null
|
|
+++ b/conf/rndc.conf
|
|
@@ -0,0 +1,5 @@
|
|
+include "/etc/bind/rndc.key";
|
|
+options {
|
|
+ default-server localhost;
|
|
+ default-key rndc-key;
|
|
+};
|
|
|
|
--
|
|
1.7.5.4
|
|
|