]> git.ipfire.org Git - thirdparty/bind9.git/commit
chg: dev: move handle to keystores from the view to zonemgr
authorColin Vidal <colin@isc.org>
Thu, 28 Aug 2025 15:30:57 +0000 (17:30 +0200)
committerColin Vidal <colin@isc.org>
Thu, 28 Aug 2025 15:30:57 +0000 (17:30 +0200)
commitbc5c9cf62bc9096cb0e4d766e4a083e051b64f1e
tree933f688d3af678af655513d0c9c25cf7ec115c3e
parent53cfb2920506c7adf5368d79846f7f7221c7ead5
parent26b397bd0f9bf6a8b0580e3b67b3dd00c7e86a89
chg: dev: move handle to keystores from the view to zonemgr

This is a follow-up of !10895 where the keystore pointer was removed
from the zone (as not specific to the zone) and moved to the view. But
in order to avoid adding extra lifecycle dependencies from the zone to
the view, the keystore pointer is now moved to the zonemgr, which also
makes more sense as this is a global settings, and zonemgr wraps a bunch
of other global settings to be accessibles from the zones.

Because the zonemgr lifecycle is the same of the keystores (which are
both depending on named_g_server) this should be a safe change.

Merge branch 'colin/keystores-zonemgr' into 'main'

See merge request isc-projects/bind9!10901