diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2022-12-05 10:24:50 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-12-23 23:05:49 +0000 |
| commit | c5cdf68773a7d2517bd73071cfddaf60a718942e (patch) | |
| tree | 6e3c4e2909cb04073126ba60a7748b4df7e63bb6 /meta/recipes-connectivity/bind/bind-9.18.9/make-etc-initd-bind-stop-work.patch | |
| parent | 8c4aa01b45792eff0f88fbd6467f215511e0d566 (diff) | |
| download | poky-c5cdf68773a7d2517bd73071cfddaf60a718942e.tar.gz | |
bind: upgrade 9.18.8 -> 9.18.9
Changelog:
===========
Fix a crash that could happen when you change
a dnssec-policy zone with NSEC3 to start using
inline-signing. [GL #3591]
Don't trust a placeholder KEYDATA from the managed-keys
zone by adding it into secroots. [GL #2895]
Fixed a race condition that could cause a crash
in dns_zone_synckeyzone(). [GL #3617]
Don't enforce the jemalloc use on NetBSD. [GL #3634]
Fix an inheritance bug when setting the port on
remote servers in configuration. [GL #3627]
Fix a resolver prefetch bug when the record's TTL value
is equal to the configured prefetch eligibility value,
but the record was erroneously not treated as eligible
for prefetching. [GL #3603]
Always call dns_adb_endudpfetch() after calling
dns_adb_beginudpfetch() for UDP queries in resolver.c,
in order to adjust back the quota. [GL #3598]
Fix a startup issue on Solaris systems with many
(reportedly > 510) CPUs. Thanks to Stacey Marshall from
Oracle for deep investigation of the problem. [GL #3563]
rpz-ip rules could be ineffective in some scenarios
with CD=1 queries. [GL #3247]
The RecursClients statistics counter could overflow
in certain resolution scenarios. [GL #3584]
Less ceremonial UNEXPECTED_ERROR() and FATAL_ERROR()
reporting macros. [GL !6914]
Fix a couple of bugs in cfg_print_duration(), which
could result in generating incomplete duration values
when printing the configuration using named-checkconf.
[GL !6880]
Refactor the isc_httpd implementation used in the
statistics channel. [GL !6879]
(From OE-Core rev: 38219ac0617eac1969e4535a7dd22bf4c1fa1463)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit e57fe26b3f85ebfabdc8b574caa5c97602e4d771)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/bind/bind-9.18.9/make-etc-initd-bind-stop-work.patch')
| -rw-r--r-- | meta/recipes-connectivity/bind/bind-9.18.9/make-etc-initd-bind-stop-work.patch | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/bind/bind-9.18.9/make-etc-initd-bind-stop-work.patch b/meta/recipes-connectivity/bind/bind-9.18.9/make-etc-initd-bind-stop-work.patch new file mode 100644 index 0000000000..146f3e35db --- /dev/null +++ b/meta/recipes-connectivity/bind/bind-9.18.9/make-etc-initd-bind-stop-work.patch | |||
| @@ -0,0 +1,42 @@ | |||
| 1 | bind: make "/etc/init.d/bind stop" work | ||
| 2 | |||
| 3 | Upstream-Status: Inappropriate [configuration] | ||
| 4 | |||
| 5 | Add some configurations, make rndc command be able to controls | ||
| 6 | the named daemon. | ||
| 7 | |||
| 8 | Signed-off-by: Roy Li <rongqing.li@windriver.com> | ||
| 9 | --- | ||
| 10 | conf/named.conf | 5 +++++ | ||
| 11 | conf/rndc.conf | 5 +++++ | ||
| 12 | 2 files changed, 10 insertions(+), 0 deletions(-) | ||
| 13 | create mode 100644 conf/rndc.conf | ||
| 14 | |||
| 15 | diff --git a/conf/named.conf b/conf/named.conf | ||
| 16 | index 95829cf..c8899e7 100644 | ||
| 17 | --- a/conf/named.conf | ||
| 18 | +++ b/conf/named.conf | ||
| 19 | @@ -47,3 +47,8 @@ zone "255.in-addr.arpa" { | ||
| 20 | // root-delegation-only exclude { "DE"; "MUSEUM"; }; | ||
| 21 | |||
| 22 | include "/etc/bind/named.conf.local"; | ||
| 23 | +include "/etc/bind/rndc.key" ; | ||
| 24 | +controls { | ||
| 25 | + inet 127.0.0.1 allow { localhost; } | ||
| 26 | + keys { rndc-key; }; | ||
| 27 | +}; | ||
| 28 | diff --git a/conf/rndc.conf b/conf/rndc.conf | ||
| 29 | new file mode 100644 | ||
| 30 | index 0000000..a0b481d | ||
| 31 | --- /dev/null | ||
| 32 | +++ b/conf/rndc.conf | ||
| 33 | @@ -0,0 +1,5 @@ | ||
| 34 | +include "/etc/bind/rndc.key"; | ||
| 35 | +options { | ||
| 36 | + default-server localhost; | ||
| 37 | + default-key rndc-key; | ||
| 38 | +}; | ||
| 39 | |||
| 40 | -- | ||
| 41 | 1.7.5.4 | ||
| 42 | |||
