head	1.1;
branch	1.1.1;
access;
symbols
	bind-9-20-24:1.1.1.1
	netbsd-11-0-RC5:1.1.1.1.2.2
	bind-9-20-23:1.1.1.1
	netbsd-11-0-RC4:1.1.1.1.2.2
	netbsd-11:1.1.1.1.0.2
	bind-9-20-22:1.1.1.1
	bind-9-20-18:1.1.1.1
	ISC:1.1.1;
locks; strict;
comment	@# @;


1.1
date	2026.01.29.18.19.41;	author christos;	state Exp;
branches
	1.1.1.1;
next	;
commitid	9MwCVgHxcYj0IjsG;

1.1.1.1
date	2026.01.29.18.19.41;	author christos;	state Exp;
branches
	1.1.1.1.2.1;
next	;
commitid	9MwCVgHxcYj0IjsG;

1.1.1.1.2.1
date	2026.01.29.18.19.41;	author martin;	state dead;
branches;
next	1.1.1.1.2.2;
commitid	6fGm0DkYz64ZRTEG;

1.1.1.1.2.2
date	2026.05.07.16.17.19;	author martin;	state Exp;
branches;
next	;
commitid	6fGm0DkYz64ZRTEG;


desc
@@


1.1
log
@Initial revision
@
text
@; Copyright (C) Internet Systems Consortium, Inc. ("ISC")
;
; SPDX-License-Identifier: MPL-2.0
;
; This Source Code Form is subject to the terms of the Mozilla Public
; License, v. 2.0.  If a copy of the MPL was not distributed with this
; file, you can obtain one at https://mozilla.org/MPL/2.0/.
;
; See the COPYRIGHT file distributed with this work for additional
; information regarding copyright ownership.

$TTL 300
@@fqdn@@		IN	SOA  mname1. . (
			1       ; serial
			20      ; refresh (20 seconds)
			20      ; retry (20 seconds)
			1814400 ; expire (3 weeks)
			3600    ; minimum (1 hour)
			)

			NS	ns3
ns3			A	10.53.0.3

a			A	10.0.0.1
b			A	10.0.0.2
c			A	10.0.0.3

{% for dnskey in dnskeys %}
@@dnskey@@
{% endfor %}

{% for privaterr in privaterrs %}
@@privaterr@@
{% endfor %}
@


1.1.1.1
log
@Import bind-9.20.18 (previous was 9.20.11)


BIND 9.20.18#

Security Fixes#

    [CVE-2025-13878] Fix incorrect length checks for BRID and HHIT
    records. d4c0d61701

    Malformed BRID and HHIT records could trigger an assertion
    failure. This has been fixed.

    ISC would like to thank Vlatko Kosturjak from Marlink Cyber
    for bringing this vulnerability to our attention. [GL #5616]

Feature Changes#

    Support compilation with cmocka 2.0.0+ bb9234c6ce

    The assert_in_range() function was deprecated in favor of
    assert_int_in_range() and assert_uint_in_range(). Add compatibility
    shims for cmocka<2.0.0 and use the new functions. [GL #5699]
    [GL !11437]

    Add more information to the rndc recursing output about fetches.
    9766feb4df

    This adds more information about the active fetches for debugging
    and diagnostic purposes. [GL !11358]

Bug Fixes#

    Make key rollovers more robust. 7a70d05b5d

    A manual rollover when the zone is in an invalid DNSSEC state
    causes predecessor keys to be removed too quickly. Additional
    safeguards to prevent this have been added. DNSSEC records will
    not be removed from the zone until the underlying state machine
    has moved back into a valid DNSSEC state. [GL #5458] [GL !11329]

    Fix a catalog zones issue when a member zone could fail to
    load. 95cbc2c327

    A catalog zone's member zone could fail to load in some rare
    cases, when the internally generated zone configuration string
    was exceeding 512 bytes. That condition only was not enough
    for the issue to arise, but it was a necessary condition. This
    could happen, for example, if the catalog zone's default primary
    servers list contained a large number of items. This has been
    fixed. [GL #5658] [GL !11349]

    Allow glue in delegations with QTYPE=ANY. 441158ac18

    When a query for type ANY triggered a delegation response, all
    additional data was omitted from the response, including
    mandatory glue. This has been corrected. [GL #5659] [GL !11283]

    Adding NSEC3 opt-out records could leave invalid records in
    chain. 1b90296e1f

    When creating an NSEC3 opt-out chain, a node in the chain could
    be removed too soon, causing the previous NSEC3 being unable
    to be found, resulting in invalid NSEC3 records to be left in
    the zone. This has been fixed. [GL #5671] [GL !11340]

    Fix slow speed of NSEC3 optout large delegation zone signing.
    88f915b77b

    BIND 9.20 takes much more time signing a large delegation zone
    with NSEC3 optout compared to version 9.18. This has been
    restored. [GL #5672] [GL !11362]

    Reconfigure NSEC3 opt-out zone to NSEC causes zone to be invalid.
    1d0e19c612

    A zone that is signed with NSEC3, opt-out enabled, and then
    reconfigured to use NSEC, causes the zone to be published with
    missing NSEC records. This has been fixed. [GL #5679] [GL
    !11401]

    Fix a possible catalog zone issue during reconfiguration.
    911b45b2b3

    The named process could terminate unexpectedly during
    reconfiguration when a catalog zone update was taking place at
    the same time. This has been fixed. [GL !11386]

    Fix the charts in the statistics channel. 7c7b01dd65

    The charts in the statistics channel could sometimes fail to
    render in the browser, and were completely disabled for
    Mozilla-based browsers for historical reasons. This has been
    fixed. [GL !11364]

BIND 9.20.17#

New Features#

    Add spatch to detect implicit bool/int/result cast. 02be363d1f

    Detection of implicit cast from a boolean into an int, or an
    isc_result_t into a boolean (either in an assignement or return
    position).

    If such pattern is found, a warning comment is added into the
    code (and the CI will fails) so the error can be spotted and
    manually fixed. [GL !11237]

Feature Changes#

    Use atomics for CMM_{LOAD,STORE}_SHARED with ThreadSanitizer.
    94fa721705

    Upstream has removed the atomics implementation of CMM_LOAD_SHARED
    and CMM_STORE_SHARED as these can be used also with non-stdatomics
    types. As we only use the CMM api with stdatomics types, we
    can restore the previous behaviour to prevent ThreadSanitizer
    warnings. [GL #5660] [GL !11290]

    Provide more information when the memory allocation fails.
    6749725610

    Provide more information about the failure when the memory
    allocation fails. [GL !11304]

    Reduce the number of outgoing queries. 457b470e96

    Reduces the number of outgoing queries when resolving the
    nameservers for delegation points. This helps the DNS resolver
    with cold cache resolve client queries with complex delegation
    chains and redirections. [GL !11258]

Bug Fixes#

    Fix the spurious timeouts while resolving names. d96cf874fb

    Sometimes the loops in the resolving (e.g. to resolve or validate
    ns1.example.com we need to resolve ns1.example.com) were not
    properly detected leading to spurious 10 seconds delay. This
    has been fixed and such loops are properly detected. [GL #3033],
    #5578 [GL !11298]

    Fix bug where zone switches from NSEC3 to NSEC after retransfer.
    3b40ffbf83

    When a zone is re-transferred, but the zone journal on an
    inline-signing secondary is out of sync, the zone could fall
    back to using NSEC records instead of NSEC3. This has been
    fixed. [GL #5527] [GL !11274]

    Attach socket before async streamdns_resume_processing. bb9451c73f

    Call to streamdns_resume_processing is asynchronous but the
    socket passed as argument is not attached when scheduling the
    call.

    While there is no reproducible way (so far) to make the socket
    reference number down to 0 before streamdns_resume_processing
    is called, attach the socket before scheduling the call. This
    guard against an hypothetic case where, for some reasons, the
    socket refcount would reach 0, and be freed from memory when
    streamdns_resume_processing is called. [GL #5620] [GL !11260]

    AMTRELAY type 0 presentation format handling was wrong. adf104a063

    RFC 8777 specifies a placeholder value of "." for the gateway
    field when the gateway type is 0 (no gateway). This was not
    being checked for nor emitted when displaying the record. This
    has been corrected.

    Instances of this record will need the placeholder period added
    to them when upgrading. [GL #5639] [GL !11255]

    Fix parsing bug in remote-servers with key or tls. d9400c5967

    The remote-servers clause enable the following pattern using
    a named server-list:

    remote-servers a { 1.2.3.4; ... }; remote-servers b { a key
    foo; };

    However, such configuration was wrongly rejected, with an
    "unexpected token 'foo'" error. Such configuration is now
    accepted. [GL #5646] [GL !11300]

    Fix TLS contexts cache object usage bug in the resolver.
    13adf94006

    named could terminate unexpectedly when reconfiguring or
    reloading, and if client-side TLS transport was in use (for
    example, when forwarding queries to a DoT server). This has
    been fixed. [GL #5653] [GL !11299]

    Fix unitiailized pointer check on getipandkeylist. 5ed0cf091b

    Function named_config_getipandkeylist could, in case of error
    in the early code attempting to get the port or tls-port, make
    a pointer check on a non-initialized value. This is now fixed.
    [GL !11306]

    Standardize CHECK and RETERR macros. ef714e91ac

    previously, there were over 40 separate definitions of CHECK
    macros, of which most used "goto cleanup", and the rest "goto
    failure" or "goto out". there were another 10 definitions of
    RETERR, of which most were identical to CHECK, but some simply
    returned a result code instead of jumping to a cleanup label.

    this has now been standardized throughout the code base: RETERR
    is for returning an error code in the case of an error, and
    CHECK is for jumping to a cleanup tag, which is now always
    called "cleanup". both macros are defined in isc/util.h. [GL
    !11069]

    Adding NSEC3 opt-out records could leave invalid records in
    chain. 1d83a8ad46

    When creating an NSEC3 opt-out chain, a node in the chain could
    be removed too soon, causing the previous NSEC3 being unable
    to be found, resulting in invalid NSEC3 records to be left in
    the zone. This has been fixed.

    Closes [#5671](#5671)

BIND 9.20.16#

Feature Changes#

    Fix assertion failure from arc4random_uniform with invalid
    limit. 1040282de7e

    When the arc4random_uniform() is called on NetBSD with upper_bound
    that makes no sense statistically (0 or 1), the call crashes
    the calling program. Fix this by returning 0 when upper bound
    is < 2 as does Linux, FreeBSD and NetBSD. (Hint: System CSPRNG
    should never crash.) [GL #5596] [GL !11151]

Bug Fixes#

    Fix dnssec-keygen key collision checking for KEY rrtype keys.
    ac8b23b80bf

    The dnssec-keygen utility program failed to detect possible
    Key ID collisions with the existing keys generated using the
    non-default -T KEY option (e.g. for SIG(0)). This has been
    fixed. [GL #5506] [GL !11128]

    Fix shutdown INSIST in dns_dispatchmgr_getblackhole. f0aaaef166c

    Previously, named could trigger an assertion in
    dns_dispatchmgr_getblackhole while shutting down. This has been
    fixed. [GL #5525] [GL !11162]

    Dnssec-verify now uses exit code 1 when failing due to illegal
    options. 6ead0aa4a2b

    Previously, dnssec-verify exited with code 0 if the options
    could not be parsed. This has been fixed. [GL #5574] [GL !11129]

    Prevent assertion failures of dig when server is specified
    before the -b option. deada63e2b2

    Previously, dig could exit with an assertion failure when the
    server was specified before the dig -b option. This has been
    fixed. [GL #5609] [GL !11204]

    Skip unsupported algorithms when looking for signing key.
    c346fe88a1b

    A mix of supported and unsupported DNSSEC algorithms in the
    same zone could have caused validation failures. Ignore the
    DNSSEC keys with unsupported algorithm when looking for the
    signing keys. [GL #5622] [GL !11210]

    Fix configuration bugs involving global defaults. a85d6fb581c

    The configuration code for the max-cache-size, dnssec-validation,
    and response-padding options were unnecessarily complicated,
    and in the case of max-cache-size, buggy. These have been fixed.
    The optionmaps variable in configure_view() is no longer needed
    and has been removed. [GL !11172]

    Skip buffer allocations if not logging. 4f601175bd0

    Currently, during IXFR we allocate a 2KB buffer for IXFR change
    logging regardless of the log level. This commit introduces an
    early check on the log level in dns_diff_print to avoid this.

    Results in a speedup from 28% in the test case from issue #5442.
    [GL !11192]

BIND 9.20.15#

Security Fixes#

    [CVE-2025-8677] DNSSEC validation fails if matching but invalid
    DNSKEY is found. 0d676bf9f23

    Previously, if a matching but cryptographically invalid key
    was encountered during DNSSEC validation, the key was skipped
    and not counted towards validation failures. named now treats
    such DNSSEC keys as hard failures and the DNSSEC validation
    fails immediately, instead of continuing with the next DNSKEYs
    in the RRset.

    ISC would like to thank Zuyao Xu and Xiang Li from the All-in-One
    Security and Privacy Laboratory at Nankai University for bringing
    this vulnerability to our attention. [GL #5343]

    [CVE-2025-40778] Address various spoofing attacks. 23de94fd236

    Previously, several issues could be exploited to poison a DNS
    cache with spoofed records for zones which were not DNSSEC-signed
    or if the resolver was configured to not do DNSSEC validation.
    These issues were assigned CVE-2025-40778 and have now been
    fixed.

    As an additional layer of protection, named no longer accepts
    DNAME records or extraneous NS records in the AUTHORITY section
    unless these are received via spoofing-resistant transport
    (TCP, UDP with DNS cookies, TSIG, or SIG(0)).

    ISC would like to thank Yuxiao Wu, Yunyi Zhang, Baojun Liu,
    and Haixin Duan from Tsinghua University for bringing this
    vulnerability to our attention. [GL #5414]

    [CVE-2025-40780] Cache-poisoning due to weak pseudo-random
    number generator. 34af35c2df8

    It was discovered during research for an upcoming academic
    paper that a xoshiro128** internal state can be recovered by
    an external 3rd party, allowing the prediction of UDP ports
    and DNS IDs in outgoing queries. This could lead to an attacker
    spoofing the DNS answers with great efficiency and poisoning
    the DNS cache.

    The internal random generator has been changed to a cryptographically
    secure pseudo-random generator.

    ISC would like to thank Prof. Amit Klein and Omer Ben Simhon
    from Hebrew University of Jerusalem for bringing this vulnerability
    to our attention. [GL #5484]

New Features#

    Add dnssec-policy keys configuration check to named-checkconf.
    1f5a0405f72

    A new option -k is added to named-checkconf that allows checking
    the dnssec-policy keys configuration against the configured
    key stores. If the found key files are not in sync with the
    given dnssec-policy, the check will fail.

    This is useful to run before migrating to dnssec-policy. [GL
    #5486] [GL !11011]

Feature Changes#

    Minor refactor of dst code. c6acbaa020b

    Convert the defines to enums. Initialize the tags more explicitly
    and less ugly. [GL !11038]

Bug Fixes#

    Use signer name when disabling DNSSEC algorithms. 986816baa74

    disable-algorithms could cause DNSSEC validation failures when
    the parent zone was signed with the algorithms that were being
    disabled for the child zone. This has been fixed; disable-algorithms
    now works on a whole-of-zone basis.

    If the zone's name is at or below the disable-algorithms name
    the algorithm is disabled for that zone, using deepest match
    when there are multiple disable-algorithms clauses. [GL #5165]
    [GL !11014]

    Rndc sign during ZSK rollover will now replace signatures.
    d2f551140cd

    When performing a ZSK rollover, if the new DNSKEY is omnipresent,
    the rndc sign command now signs the zone completely with the
    successor key, replacing all zone signatures from the predecessor
    key with new ones. [GL #5483] [GL !11017]

    Missing DNSSEC information when CD bit is set in query.
    968a6be41fb

    The RRSIGs for glue records were not being cached correctly
    for CD=1 queries. This has been fixed. [GL #5502] [GL !10956]

    Preserve cache when reload fails and reload the server again.
    975aeda10b4

    Fixes an issue where failing to reconfigure/reload the server
    would prevent to preserved the views caches on the subsequent
    server reconfiguration/reload. [GL #5523] [GL !10988]

    Check plugin config before registering. e2260b80702

    In named_config_parsefile(), when checking the validity of
    named.conf, the checking of plugin correctness was deliberately
    postponed until the plugin is loaded and registered. However,
    the checking was never actually done: the plugin_register()
    implementation was called, but plugin_check() was not.

    ns_plugin_register() (used by named) now calls the check function
    before the register function, and aborts if either one fails.
    ns_plugin_check() (used by named-checkconf) calls only the
    check function. [GL !11032]

BIND 9.20.14#

Note

The BIND 9.20.14 release was withdrawn after the discovery of a
regression in a security fix in it during pre-release testing.
BIND 9.20.13# New Features#

    Add manual mode configuration option to dnsec-policy. 1e435b107f

    Add a new option manual-mode to dnssec-policy. The intended
    use is that if it is enabled, it will not automatically move
    to the next state transition, but instead the transition is
    logged. Only after manual confirmation with rndc dnssec -step
    the transition is made. [GL #4606] [GL !10880]

    Add a new 'servfail-until-ready' configuration option for RPZ.
    925af17d21

    By default, when named is started it may start answering to
    queries before the response policy zones are completely loaded
    and processed. This new feature gives an option to the users
    to tell named that incoming requests should result in SERVFAIL
    answer until all the response policy zones are processed and
    ready. Note that if one or more response policy zones fail to
    load, named starts responding to queries according to those
    zones that did load.

    Note, that enabling this option has no effect when a DNS Response
    Policy Service (DNSRPS) interface is used. [GL #5222] [GL
    !10889]

    Support for parsing HHIT and BRID records has been added.
    1f051af24d

    [GL #5444] [GL !10932]

Removed Features#

    Deprecate the "tkey-gssapi-credential" statement. b239a70cac

    The tkey-gssapi-keytab statement allows GSS-TSIG to be set up
    in a simpler and more reliable way than using the
    tkey-gssapi-credential statement and setting environment
    variables (e.g. KRB5_KTNAME). Therefore, the tkey-gssapi-credential
    statement has been deprecated; tkey-gssapi-keytab should be
    used instead.

    For configurations currently using a combination of both
    tkey-gssapi-keytab and tkey-gssapi-credential, the latter should
    be dropped and the keytab pointed to by tkey-gssapi-keytab
    should now only contain the credential previously specified by
    tkey-gssapi-credential. [GL #4204] [GL !10924]

    Obsolete the "tkey-domain" statement. 9352ae65d7

    Mark the tkey-domain statement as obsolete, since it has not
    had any effect on server behavior since support for TKEY Mode
    2 (Diffie-Hellman) was removed (in BIND 9.20.0). [GL #4204]
    [GL !10926]

Feature Changes#

    Update clang-format style with options added in newer versions.
    0c2c477c31

    Add and apply InsertBraces statement to add missing curly braces
    around one-line statements and use ControlStatementsExceptControlMacros
    for SpaceBeforeParens to remove space between foreach macro
    and the brace, e.g. FOREACH (x) { becomes FOREACH(x) {. [GL
    !10864]

Bug Fixes#

    Ensure file descriptors 0-2 are in use. 35dee6eb90

    libuv expect file descriptors <= STDERR_FILENO are in use.
    otherwise, it may abort when closing a file descriptor it
    opened. [GL #5226] [GL !10908]

    Prevent spurious SERVFAILs for certain 0-TTL resource records.
    6b266b222c

    Under certain circumstances, BIND 9 can return SERVFAIL when
    updating existing entries in the cache with new NS, A, AAAA,
    or DS records with 0-TTL. [GL #5294] [GL !10898]

    Use DNS_RDATACOMMON_INIT to hide branch differences. a64df9729b

    Initialization of the common members of rdata type structures
    varies across branches. Standardize it by using the
    DNS_RDATACOMMON_INIT macro for all types, so that new types
    are more likely to use it, and hence backport more cleanly.
    [GL #5467] [GL !10834]

    RPZ canonical warning displays zone entry incorrectly. d833676515

    When an IPv6 rpz prefix entry is entered incorrectly the log
    message was just displaying the prefix rather than the full
    entry. This has been corrected. [GL #5491] [GL !10930]

    Fix a catalog zone issue when having an unset 'default-primaries'
    configuration clause. 293e75af28

    A catalog zone with an unset default-primaries clause could
    cause an unexpected termination of the named process after two
    reloading or reconfiguration commands. This has been fixed.
    [GL #5494] [GL !10905]

    Add and use __attribute__((nonnull)) in dnssec-signzone.c.
    a8eed36d3e

    Clang 20 was spuriously warning about the possibility of passing
    a NULL file pointer to fprintf(), which uses the 'nonnull'
    attribute. To silence the warning, the functions calling
    fprintf() have been marked with the same attribute to assure
    that NULL can't be passed to them in the first place.

    Close #5487 [GL !10913]

    RPZ 'servfail-until-ready': skip updating SERVFAIL cache.
    af2fb26325

    In order to not pollute the SERVFAIL cache with the configured
    SERVFAIL answers while RPZ is loading, set the NS_CLIENTATTR_NOSETFC
    attribute for the client. [GL !10940]

BIND 9.20.12#

New Features#

    Support for parsing the DSYNC record has been added. f440fe712d

    [GL #5440] [GL !10820]

Feature Changes#

    Adaptive memory allocation strategy for qp-tries. 9a046cbed5

    qp-tries allocate their nodes (twigs) in chunks to reduce
    allocator pressure and improve memory locality. The choice of
    chunk size presents a tradeoff: larger chunks benefit qp-tries
    with many values (as seen in large zones and resolvers) but
    waste memory in smaller use cases.

    Previously, our fixed chunk size of 2^10 twigs meant that even
    an empty qp-trie would consume 12KB of memory, while reducing
    this size would negatively impact resolver performance.

    This MR implements an adaptive chunking strategy that tracks
    the size of the most recently allocated chunk and doubles the
    chunk size for each new allocation until reaching a predefined
    maximum.

    This approach effectively balances memory efficiency for small
    tries while maintaining the performance benefits of larger
    chunk sizes for bigger data structures. [GL #5445] [GL !10804]

    Add deprecation warnings for RSASHA1, RSASHA1-NSEC3SHA1 and DS
    digest type 1. 5aefaa4b97

    RSASHA1 and RSASHA1-NSEC-SHA1 DNSKEY algorithms have been
    deprecated by the IETF and should no longer be used for DNSSEC.
    DS digest type 1 (SHA1) has also been deprecated. Validators
    are now expected to treat these algorithms and digest as unknown,
    resulting in some zones being treated as insecure when they
    were previously treated as secure. Warnings have been added to
    named and tools when these algorithms and this digest are being
    used for signing.

    Zones signed with RSASHA1 or RSASHA1-NSEC-SHA1 should be migrated
    to a different DNSKEY algorithm.

    Zones with DS or CDS records with digest type 1 (SHA1) should
    be updated to use a different digest type (e.g. SHA256) and
    the digest type 1 records should be removed.

    Related to #5358 [GL !10738]

Bug Fixes#

    Stale RRsets in a CNAME chain were not always refreshed.
    ed37c7825e

    With serve-stale enabled, a CNAME chain that contains a stale
    RRset, the refresh query doesn't always properly refresh the
    stale RRsets. This has been fixed. [GL #5243] [GL !10767]

    Add RPZ extended DNS error for zones with a CNAME override
    policy configured. 39ad2016c1

    When the zone is configured with a CNAME override policy, or
    the response policy zone contains a wildcard CNAME, the extended
    DNS error code was not added. This has been fixed. [GL #5342]
    [GL !10819]

    Fix a possible crash when adding a zone while recursing.
    7a3ec8dd94

    A query for a zone that was not yet loaded may yield an unexpected
    result such as a CNAME or DNAME, triggering an assertion failure.
    This has been fixed. [GL #5357] [GL !10718]

    Fix dig issues. 8c50819aa8

    When used with the +keepopen option with a TCP connection,
    iscman:dig could terminate unexpectedly in rare situations.
    Additionally, iscman:dig could hang and fail to shutdown properly
    when interrupted during a query. These have been fixed. [GL
    #5381] [GL !10727]

    Log dropped or slipped responses in the query-errors category.
    47470b586d

    Responses which were dropped or slipped because of RRL (Response
    Rate Limiting) were logged in the rate-limit category instead
    of the query-errors category, as documented in ARM. This has
    been fixed. [GL #5388] [GL !10725]

    Separate out adbname type flags. fc689c6525

    There are three adbname flags that are used to identify different
    types of adbname lookups when hashing rather than using multiple
    hash tables. Separate these to their own structure element as
    these need to be able to be read without locking the adbname
    structure. [GL #5404] [GL !10695]

    Synth-from-dnssec was not working in some scenarios. bc54f059e0

    Aggressive use of DNSSEC-Validated cache with NSEC was not
    working in scenarios when no parent NSEC was not in cache. This
    has been fixed. [GL #5422] [GL !10754]

    Clean enough memory when adding new ADB names/entries under
    memory pressure. b7e7923daa

    The ADB memory cleaning is opportunistic even when we are under
    memory pressure (in the overmem condition). Split the opportunistic
    LRU cleaning and overmem cleaning and make the overmem cleaning
    always cleanup double of the newly allocated adbname/adbentry
    to ensure we never allocate more memory than the assigned limit.
    [GL !10707]

    Prevent spurious validation failures. 3b98c7cc9d

    Under rare circumstances, validation could fail if multiple
    clients simultaneously iterated the same set of signatures.

    References #3014 [GL !10815]

    Rename variable called 'free' to prevent the clash with free()
    7f25d92c5d

    [GL !10757]
@
text
@@


1.1.1.1.2.1
log
@file template.db.j2.manual was added on branch netbsd-11 on 2026-05-07 16:17:19 +0000
@
text
@d1 34
@


1.1.1.1.2.2
log
@Pull up the following, requested by christos in ticket #269:

	external/mpl/bind//dist/bin/tests/convert_trs_to_junit.py up to
	external/mpl/bind//dist/bin/tests/system/acl/ns2/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/acl/ns2/named3.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/acl/ns2/named4.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/acl/ns2/named5.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/acl/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/acl/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/acl/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/requirements.txt up to
	external/mpl/bind//dist/bin/tests/system/re_compile_checker.py up to
	external/mpl/bind//dist/bin/tests/system/ksr/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/multisigner/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/multisigner/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/multisigner/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/multisigner/tests_multisigner.py up to
	external/mpl/bind//dist/bin/tests/system/proxy/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/proxy/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/additional/ns1/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/additional/ns1/named3.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/additional/ns1/named4.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/additional/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/additional/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/additional/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/addzone/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/addzone/ns2/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/addzone/ns2/named3.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/addzone/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/addzone/ns3/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/addzone/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/addzone/tests_rndc_modzone_without_add.py up to
	external/mpl/bind//dist/bin/tests/system/autosign/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/autosign/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/autosign/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/autosign/ns3/nsec-only.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/autosign/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/autosign/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/catz/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/catz/ns2/named1.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/catz/ns2/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/catz/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/catz/ns2/named3.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/catz/ns2/named4.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/catz/ns2/named5.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/catz/ns2/named6.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/catz/ns2/named7.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/catz/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/catz/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/chain/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/chain/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/chain/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/chain/ns7/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkconf/bad-remote-servers-key.conf up to
	external/mpl/bind//dist/bin/tests/system/checkconf/bad-remote-servers-tls.conf up to
	external/mpl/bind//dist/bin/tests/system/checkconf/good-remote-servers-named.conf up to
	external/mpl/bind//dist/bin/tests/system/checkconf/kasp-deprecated-fips.conf up to
	external/mpl/bind//dist/bin/tests/system/checkconf/kasp-deprecated.conf up to
	external/mpl/bind//dist/bin/tests/system/checkconf/good-key-view.conf up to
	external/mpl/bind//dist/bin/tests/system/checkds/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkds/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkds/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkds/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkds/ns10/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkds/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkds/ns6/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkds/ns7/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkds/ns9/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkds/ns8/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkzone/zones/warn.deprecated.cds-sha1.db up to
	external/mpl/bind//dist/bin/tests/system/checkzone/zones/bad-cname-and-amtrelay.db up to
	external/mpl/bind//dist/bin/tests/system/checkzone/zones/bad-tsig.db.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkzone/zones/warn.deprecated.digest-sha1.db up to
	external/mpl/bind//dist/bin/tests/system/checkzone/zones/warn.deprecated.ds-alg.db up to
	external/mpl/bind//dist/bin/tests/system/checkzone/zones/warn.deprecated.key-alg.db up to
	external/mpl/bind//dist/bin/tests/system/checkzone/zones/warn.deprecated.nsec3rsasha1.db up to
	external/mpl/bind//dist/bin/tests/system/checkzone/zones/warn.deprecated.rsasha1.db up to
	external/mpl/bind//dist/bin/tests/system/checkzone/zones/bad-nsec3-length.db up to
	external/mpl/bind//dist/bin/tests/system/cookie/ans10/ans.py up to
	external/mpl/bind//dist/bin/tests/system/cookie/cookie_ans.py up to
	external/mpl/bind//dist/bin/tests/system/_common/trusted.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dns_import_checker.py up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns1/root.db up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/controls.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/generic.db up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named02.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named03.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named04.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named05.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named06.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named07.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named08.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named09.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named10.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named11.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named12.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named21.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named22.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named23.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named24.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named25.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named26.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named27.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named28.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named29.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named30.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named31.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named32.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named33.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named34.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named40.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named53.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named54.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named55.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named56.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named57.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/tests.sh up to
	external/mpl/bind//dist/bin/tests/system/allow_query/tests_sh_allow_query.py up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns3/named.args up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns3/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns3/named3.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/allow_query/ns3/named4.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dialup/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dialup/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dialup/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/digdelv/ans4/ans.py up to
	external/mpl/bind//dist/bin/tests/system/digdelv/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/digdelv/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/digdelv/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/digdelv/ans5/ans.py up to
	external/mpl/bind//dist/bin/tests/system/digdelv/ans6/ans.py up to
	external/mpl/bind//dist/bin/tests/system/digdelv/ans7/ans.py up to
	external/mpl/bind//dist/bin/tests/system/dlzexternal/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dns64/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dns64/ns1/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dns64/ns1/named3.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dns64/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dns64/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dns64/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dnssec/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dnssec/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dnssec/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dnssec/ns3/badalg.secure.example.db.in up to
	external/mpl/bind//dist/bin/tests/system/dnssec/ns3/template.db.in up to
	external/mpl/bind//dist/bin/tests/system/dnssec/ns3/zonecut.ent.secure.example.db.in up to
	external/mpl/bind//dist/bin/tests/system/dnssec/ns4/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dnssec/ns4/named3.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dnssec/ns4/named4.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dnssec/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dnssec/ns5/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dnssec/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dnssec/ns6/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dnssec/ns7/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dnssec/ns8/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dnssec/ns9/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dnssec/ans10/inprogress.db up to
	external/mpl/bind//dist/bin/tests/system/dnssec/ans10/nsec-rrsigs-stripped.db up to
	external/mpl/bind//dist/bin/tests/system/dnstap/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dsdigest/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dsdigest/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dsdigest/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dsdigest/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/ans.py up to
	external/mpl/bind//dist/bin/tests/system/ecdsa/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/ecdsa/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/ecdsa/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/eddsa/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/eddsa/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/eddsa/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/fetchlimit/ans4/ans.py up to
	external/mpl/bind//dist/bin/tests/system/fetchlimit/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/fetchlimit/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/fetchlimit/ns3/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/fetchlimit/ns3/named3.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/fetchlimit/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/fetchlimit/ns5/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/fetchlimit/ns5/named3.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/fetchlimit/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkconf_keys/bad-algorithm.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkconf_keys/bad-default-algorithm.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkconf_keys/bad-default-kz.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkconf_keys/bad-keystore.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkconf_keys/bad-length.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkconf_keys/bad-missing-keyfile.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkconf_keys/bad-role.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkconf_keys/bad-superfluous-keyfile.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkconf_keys/bad-tagrange.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkconf_keys/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/checkconf_keys/setup.sh up to
	external/mpl/bind//dist/bin/tests/system/checkconf_keys/template.db.in up to
	external/mpl/bind//dist/bin/tests/system/checkconf_keys/tests_checkconf_keys.py up to
	external/mpl/bind//dist/bin/tests/system/forward/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/forward/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/forward/ns2/named-tls.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/forward/ns3/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/forward/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/forward/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/forward/ns4/named-tls.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/forward/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/forward/ns7/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/forward/ns8/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/forward/ns10/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/forward/ns9/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/forward/ns9/named3.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/forward/ns9/named4.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/forward/ns9/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/cipher_suites/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/cipher_suites/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/cipher_suites/prereq.sh up to
	external/mpl/bind//dist/bin/tests/system/cipher_suites/self-signed-cert.pem up to
	external/mpl/bind//dist/bin/tests/system/cipher_suites/self-signed-key.pem up to
	external/mpl/bind//dist/bin/tests/system/cipher_suites/setup.sh up to
	external/mpl/bind//dist/bin/tests/system/cipher_suites/tests_cipher_suites.py up to
	external/mpl/bind//dist/bin/tests/system/cipher_suites/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/cipher_suites/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/cipher_suites/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/glue/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named10.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named11.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named12.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named3.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named4.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named5.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named6.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named7.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named8.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named9.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/inline/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/inline/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/inline/ns8/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/inline/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/inline/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/inline/ns5/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/inline/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/inline/ns6/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/inline/ns7/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/ixfr/ans2/ans.py up to
	external/mpl/bind//dist/bin/tests/system/ixfr/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/ixfr/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/ixfr/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/ixfr/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/legacy/ns1/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/legacy/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/legacy/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/legacy/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/legacy/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/legacy/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/legacy/ns6/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/legacy/ns7/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/legacy/ns10/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/legacy/ns8/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/legacy/ns9/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.inc.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.iso8601.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.plain.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.plainlog.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.ts.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.unlimited.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.vers.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.iso8601-utc.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.pipe.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.abspath.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.dir.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.sym.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/masterformat/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/masterformat/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/masterformat/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/masterformat/ns4/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/masterformat/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/mkeys/ns1/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/mkeys/ns1/named3.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/mkeys/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/mkeys/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/mkeys/ns6/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/mkeys/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/mkeys/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/mkeys/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/mkeys/ns7/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/notify/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/notify/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/notify/ns2/named-tls.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/notify/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/notify/ns3/named-tls.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/notify/ns4/named.port.j2 up to
	external/mpl/bind//dist/bin/tests/system/notify/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/notify/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nslookup/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsupdate/ans4/ans.py up to
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns1/tls.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns10/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns6/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns7/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns7/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns8/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns9/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsupdate/verylarge.j2 up to
	external/mpl/bind//dist/bin/tests/system/padding/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/padding/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/padding/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/padding/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/pending/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/pending/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/pending/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/pending/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/bailiwick/ans1/root.db up to
	external/mpl/bind//dist/bin/tests/system/bailiwick/ans1/ans.py up to
	external/mpl/bind//dist/bin/tests/system/bailiwick/bailiwick_ans.py up to
	external/mpl/bind//dist/bin/tests/system/bailiwick/tests_bailiwick.py up to
	external/mpl/bind//dist/bin/tests/system/bailiwick/ans2/victim.db up to
	external/mpl/bind//dist/bin/tests/system/bailiwick/ans2/ans.py up to
	external/mpl/bind//dist/bin/tests/system/bailiwick/ans3/attacker.db up to
	external/mpl/bind//dist/bin/tests/system/bailiwick/ans3/ans.py up to
	external/mpl/bind//dist/bin/tests/system/bailiwick/ans3/victim.db up to
	external/mpl/bind//dist/bin/tests/system/bailiwick/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/reclimit/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named3.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named4.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named5.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named6.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/redirect/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/redirect/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/redirect/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/redirect/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/redirect/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/redirect/ns6/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/resolver/ans2/ans.py up to
	external/mpl/bind//dist/bin/tests/system/resolver/ns11/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/resolver/ans3/ans.py up to
	external/mpl/bind//dist/bin/tests/system/resolver/ans8/ans.py up to
	external/mpl/bind//dist/bin/tests/system/resolver/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/resolver/ns1/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/resolver/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/resolver/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/resolver/ns6/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/resolver/ns7/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/resolver/ns7/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/resolver/ns9/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/resolver/tests_resolver.py up to
	external/mpl/bind//dist/bin/tests/system/resolver/resolver_ans.py up to
	external/mpl/bind//dist/bin/tests/system/rndc/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rndc/ns2/secondkey.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rndc/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rndc/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rndc/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rndc/ns6/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rndc/ns7/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rndc/tests_cve_2023_3341.py up to
	external/mpl/bind//dist/bin/tests/system/rootkeysentinel/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rootkeysentinel/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rootkeysentinel/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rootkeysentinel/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpz/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpz/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpz/ns8/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpz/dnsrps.zones.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpz/test5.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpz/test2.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpz/test3.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpz/test4.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpz/test4a.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpz/test6.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpz/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpz/ns3/evil-cname.db.in up to
	external/mpl/bind//dist/bin/tests/system/rpz/ns3/named1.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpz/ns3/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpz/ns3/slow-rpz.db.in up to
	external/mpl/bind//dist/bin/tests/system/rpz/ns3/wild-cname.db.in up to
	external/mpl/bind//dist/bin/tests/system/rpz/ns3/include-rpz.db.in up to
	external/mpl/bind//dist/bin/tests/system/rpz/ns3/include-rpz.inc-1.in up to
	external/mpl/bind//dist/bin/tests/system/rpz/ns3/include-rpz.inc-2.in up to
	external/mpl/bind//dist/bin/tests/system/rpz/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpz/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpz/ns6/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpz/ns7/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpz/ns9/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpz/ns10/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpz/test1.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpzrecurse/ans5/ans.py up to
	external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns2/named.conf.header.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns3/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns3/named1.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns3/named3.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rsabigexponent/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rsabigexponent/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rsabigexponent/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/runtime/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/runtime/ns2/named1.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/runtime/ns2/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/runtime/ns2/named3.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/runtime/ns2/named4.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/runtime/ns2/named5.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/runtime/ns2/named6.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/runtime/ns2/named7.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/sfcache/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/sfcache/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/sfcache/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/sortlist/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/staticstub/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/staticstub/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/staticstub/ns2/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/staticstub/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/staticstub/ns3/named1.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/staticstub/ns3/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/staticstub/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/statistics/ans4/ans.py up to
	external/mpl/bind//dist/bin/tests/system/statistics/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/statistics/ns2/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/statistics/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/statistics/ns2/named1.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/statistics/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/statschannel/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/statschannel/ns2/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/statschannel/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/statschannel/__init__.py up to
	external/mpl/bind//dist/bin/tests/system/statschannel/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/stress/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/stress/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/stress/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns1/no-apex-covering.db.in up to
	external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns6/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/tsig/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/tsig/ns1/named-md5.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/tsig/ans2/ans.py up to
	external/mpl/bind//dist/bin/tests/system/tsiggss/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/upforwd/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/upforwd/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/upforwd/ns3/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/upforwd/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/views/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/views/ns2/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/views/ns2/named3.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/views/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/views/ns3/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/views/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/views/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/wildcard/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/wildcard/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/wildcard/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/wildcard/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/wildcard/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/xfer/ns1/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/xfer/ns1/ixfr-too-big.db up to
	external/mpl/bind//dist/bin/tests/system/xfer/ns1/named3.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/xfer/ns1/dot-fallback.db up to
	external/mpl/bind//dist/bin/tests/system/xfer/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/xfer/ns2/sec.db up to
	external/mpl/bind//dist/bin/tests/system/xfer/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/xfer/ns2/mapped.db up to
	external/mpl/bind//dist/bin/tests/system/xfer/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/xfer/ns4/root.db.j2 up to
	external/mpl/bind//dist/bin/tests/system/xfer/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/xfer/ns6/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/xfer/ns7/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/xfer/ns8/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/xfer/ns8/large.db.j2 up to
	external/mpl/bind//dist/bin/tests/system/xfer/ns8/small.db.j2 up to
	external/mpl/bind//dist/bin/tests/system/xfer/response1.good up to
	external/mpl/bind//dist/bin/tests/system/xfer/ans10/ans.py up to
	external/mpl/bind//dist/bin/tests/system/xfer/response2.good up to
	external/mpl/bind//dist/bin/tests/system/xfer/tests_xfer.py up to
	external/mpl/bind//dist/bin/tests/system/xfer/response3.good up to
	external/mpl/bind//dist/bin/tests/system/xfer/tests_retransfer_with_force.py up to
	external/mpl/bind//dist/bin/tests/system/xfer/tests_retransfer_with_transferstuck.py up to
	external/mpl/bind//dist/bin/tests/system/xferquota/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/xferquota/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/zero/ans5/ans.py up to
	external/mpl/bind//dist/bin/tests/system/zero/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/zero/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/zero/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/zero/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/zonechecks/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/zonechecks/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/mirror/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/mirror/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/mirror/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/kasp/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/kasp/ns3/policies/autosign.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/kasp/ns3/policies/kasp-fips.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/kasp/ns3/policies/kasp-rsasha1.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/kasp/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/kasp/ns3/named-fips.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/kasp/ns3/named-common.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/kasp/ns3/named-rsasha1.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/kasp/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/kasp/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/kasp/ns6/policies/kasp.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/kasp/ns6/policies/csk1.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/kasp/ns6/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsec3/ns3/named-fips.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsec3/ns3/named-common.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsec3/ns3/named-retransfer.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsec3/ns3/named-rsasha1.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsec3/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsec3/ns3/nsec3-ent.kasp.db.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsec3/common.py up to
	external/mpl/bind//dist/bin/tests/system/nsec3/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsec3/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsec3/ns2/retransfer.kasp.db.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsec3/ans7/ans.py up to
	external/mpl/bind//dist/bin/tests/system/nsec3/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsec3/ns6/Kevil.test.+013+10491.key up to
	external/mpl/bind//dist/bin/tests/system/nsec3/ns6/Kevil.test.+013+10491.private up to
	external/mpl/bind//dist/bin/tests/system/nsec3/ns6/Kevil.test.+013+12713.key up to
	external/mpl/bind//dist/bin/tests/system/nsec3/ns6/Kevil.test.+013+12713.private up to
	external/mpl/bind//dist/bin/tests/system/nsec3/ns6/evil.test.db up to
	external/mpl/bind//dist/bin/tests/system/nsec3/ns6/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsec3/ns6/setup.sh up to
	external/mpl/bind//dist/bin/tests/system/nsec3/tests_nsec3_change.py up to
	external/mpl/bind//dist/bin/tests/system/nsec3/tests_nsec3_initial.py up to
	external/mpl/bind//dist/bin/tests/system/nsec3/tests_nsec3_reconfig.py up to
	external/mpl/bind//dist/bin/tests/system/nsec3/tests_nsec3_reload.py up to
	external/mpl/bind//dist/bin/tests/system/nsec3/tests_nsec3_restart.py up to
	external/mpl/bind//dist/bin/tests/system/nsec3/tests_nsec3_retransfer.py up to
	external/mpl/bind//dist/bin/tests/system/nsec3/tests_nsec3_length.py up to
	external/mpl/bind//dist/bin/tests/system/journal/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/journal/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/timeouts/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover/ns3/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover/ns3/named.common.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover/ns3/trusted.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover/ns1/root.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover/ns2/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover/tests_rollover_manual.py up to
	external/mpl/bind//dist/bin/tests/system/rollover/common.py up to
	external/mpl/bind//dist/bin/tests/system/rollover/setup.py up to
	external/mpl/bind//dist/bin/tests/system/filters/conf/bad1.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/filters/conf/bad2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/filters/conf/bad3.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/filters/conf/bad4.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/filters/conf/bad5.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/filters/conf/good1.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/filters/conf/good2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/filters/conf/good3.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/filters/conf/good4.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/filters/conf/good5.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/filters/common.py up to
	external/mpl/bind//dist/bin/tests/system/filters/setup.sh up to
	external/mpl/bind//dist/bin/tests/system/filters/tests_filter_a_v4.py up to
	external/mpl/bind//dist/bin/tests/system/filters/tests_filter_a_v6.py up to
	external/mpl/bind//dist/bin/tests/system/filters/tests_filter_aaaa_v4.py up to
	external/mpl/bind//dist/bin/tests/system/filters/tests_filter_aaaa_v6.py up to
	external/mpl/bind//dist/bin/tests/system/filters/tests_filter_checkconf.py up to
	external/mpl/bind//dist/bin/tests/system/filters/tests_filter_dns64.py up to
	external/mpl/bind//dist/bin/tests/system/filters/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/filters/ns1/root.db up to
	external/mpl/bind//dist/bin/tests/system/filters/ns1/sign.sh up to
	external/mpl/bind//dist/bin/tests/system/filters/ns1/signed.db.in up to
	external/mpl/bind//dist/bin/tests/system/filters/ns1/unsigned.db up to
	external/mpl/bind//dist/bin/tests/system/filters/ns2/hints up to
	external/mpl/bind//dist/bin/tests/system/filters/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/filters/ns3/hints up to
	external/mpl/bind//dist/bin/tests/system/filters/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/filters/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/filters/ns4/root.db up to
	external/mpl/bind//dist/bin/tests/system/filters/ns4/sign.sh up to
	external/mpl/bind//dist/bin/tests/system/filters/ns4/signed.db.in up to
	external/mpl/bind//dist/bin/tests/system/filters/ns4/unsigned.db up to
	external/mpl/bind//dist/bin/tests/system/filters/ns5/hints up to
	external/mpl/bind//dist/bin/tests/system/filters/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/migrate2kasp/ns3/kasp.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/migrate2kasp/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/migrate2kasp/ns3/setup.sh up to
	external/mpl/bind//dist/bin/tests/system/migrate2kasp/ns3/template.db.in up to
	external/mpl/bind//dist/bin/tests/system/migrate2kasp/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/migrate2kasp/ns4/setup.sh up to
	external/mpl/bind//dist/bin/tests/system/migrate2kasp/ns4/template.ext.db.in up to
	external/mpl/bind//dist/bin/tests/system/migrate2kasp/ns4/template.int.db.in up to
	external/mpl/bind//dist/bin/tests/system/migrate2kasp/setup.sh up to
	external/mpl/bind//dist/bin/tests/system/migrate2kasp/tests_migrate2kasp.py up to
	external/mpl/bind//dist/bin/tests/system/dnssec_malformed_dnskey/ns2/example.db.in up to
	external/mpl/bind//dist/bin/tests/system/dnssec_malformed_dnskey/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dnssec_malformed_dnskey/ns2/truncated.selfsigned.db.signed up to
	external/mpl/bind//dist/bin/tests/system/dnssec_malformed_dnskey/ns2/trusted.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dnssec_malformed_dnskey/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dnssec_malformed_dnskey/ns3/trusted.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dnssec_malformed_dnskey/tests_malformed_dnskey.py up to
	external/mpl/bind//dist/bin/tests/system/doth/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/doth/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/doth/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/doth/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/doth/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/enginepkcs11/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/enginepkcs11/ns1/named.args.j2 up to
	external/mpl/bind//dist/bin/tests/system/enginepkcs11/ns2/named.args.j2 up to
	external/mpl/bind//dist/bin/tests/system/enginepkcs11/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/host/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/isctest/text.py up to
	external/mpl/bind//dist/bin/tests/system/isctest/vars/.ac_vars/JQ.in up to
	external/mpl/bind//dist/bin/tests/system/isctest/vars/.ac_vars/XMLLINT.in up to
	external/mpl/bind//dist/bin/tests/system/isctest/vars/features.py up to
	external/mpl/bind//dist/bin/tests/system/optout/ns2/controls.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/optout/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/optout/ns2/small.test.db up to
	external/mpl/bind//dist/bin/tests/system/optout/ns2/test.db up to
	external/mpl/bind//dist/bin/tests/system/optout/tests_optout.py up to
	external/mpl/bind//dist/bin/tests/system/convert_junit_to_trs.py up to
	external/mpl/bind//dist/bin/tests/system/selftest/tests_zone_analyzer.py up to
	external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/ns1/zones/root.db.in up to
	external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/ns1/sign.sh up to
	external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/ns2/zones/example.db.in up to
	external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/ns2/sign.sh up to
	external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/setup.sh up to
	external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/tests_mixed_ds.py up to
	external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/ns3/zones/child.example.db.in up to
	external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/ns3/sign.sh up to
	external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/expiredglue/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/expiredglue/ns1/root.db up to
	external/mpl/bind//dist/bin/tests/system/expiredglue/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/expiredglue/ns2/tld.db up to
	external/mpl/bind//dist/bin/tests/system/expiredglue/tests_expiredglue.py up to
	external/mpl/bind//dist/bin/tests/system/expiredglue/ns3/dnshoster.tld.db up to
	external/mpl/bind//dist/bin/tests/system/expiredglue/ns3/example.tld.db up to
	external/mpl/bind//dist/bin/tests/system/expiredglue/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/expiredglue/ns4/named.args up to
	external/mpl/bind//dist/bin/tests/system/expiredglue/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/expiredglue/ns4/root.hint up to
	external/mpl/bind//dist/bin/tests/system/include_multiplecfg/ns2/mars.com.db up to
	external/mpl/bind//dist/bin/tests/system/include_multiplecfg/ns2/mars.conf up to
	external/mpl/bind//dist/bin/tests/system/include_multiplecfg/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/include_multiplecfg/ns2/zone1.com.db up to
	external/mpl/bind//dist/bin/tests/system/include_multiplecfg/ns2/zone1.conf up to
	external/mpl/bind//dist/bin/tests/system/include_multiplecfg/ns2/zone2.com.db up to
	external/mpl/bind//dist/bin/tests/system/include_multiplecfg/ns2/zone2.conf up to
	external/mpl/bind//dist/bin/tests/system/include_multiplecfg/tests_include_multiplecfg.py up to
	external/mpl/bind//dist/bin/tests/system/ixfr_nonminimal/ans2/ans.py up to
	external/mpl/bind//dist/bin/tests/system/ixfr_nonminimal/prereq.sh up to
	external/mpl/bind//dist/bin/tests/system/ixfr_nonminimal/setup.sh up to
	external/mpl/bind//dist/bin/tests/system/ixfr_nonminimal/tests.sh up to
	external/mpl/bind//dist/bin/tests/system/ixfr_nonminimal/tests_sh_ixfr_nonminimal.py up to
	external/mpl/bind//dist/bin/tests/system/ixfr_nonminimal/ans4/ans.py up to
	external/mpl/bind//dist/bin/tests/system/ixfr_nonminimal/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/ixfr_nonminimal/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/mirror_root_zone/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/mirror_root_zone/tests_mirror_root_zone.py up to
	external/mpl/bind//dist/bin/tests/system/nsec/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsec/ns1/root.db up to
	external/mpl/bind//dist/bin/tests/system/nsec/ns2/excessive-nsec-rrsigs.db.in up to
	external/mpl/bind//dist/bin/tests/system/nsec/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsec/tests_excessive_rrsigs.py up to
	external/mpl/bind//dist/bin/tests/system/nsec/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsec/ns3/trusted.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsec3_answer/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsec3_answer/ns1/root.db.in up to
	external/mpl/bind//dist/bin/tests/system/nsec3_answer/ns1/sign.sh up to
	external/mpl/bind//dist/bin/tests/system/nsec3_answer/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsec3_answer/setup.sh up to
	external/mpl/bind//dist/bin/tests/system/nsec3_answer/tests_nsec3.py up to
	external/mpl/bind//dist/bin/tests/system/nsec3_delegation/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsec3_delegation/ns1/root.db up to
	external/mpl/bind//dist/bin/tests/system/nsec3_delegation/ns2/iter-too-many.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/nsec3_delegation/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsec3_delegation/ns2/sub.iter-too-many.db up to
	external/mpl/bind//dist/bin/tests/system/nsec3_delegation/tests_excessive_nsec3_iterations.py up to
	external/mpl/bind//dist/bin/tests/system/nsec3_delegation/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsec3_delegation/ns3/trusted.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsprocessinglimit/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsprocessinglimit/ns1/root.db up to
	external/mpl/bind//dist/bin/tests/system/nsprocessinglimit/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsprocessinglimit/ns2/tld.db up to
	external/mpl/bind//dist/bin/tests/system/nsprocessinglimit/tests_nsprocessinglimit.py up to
	external/mpl/bind//dist/bin/tests/system/nsprocessinglimit/ns3/example.tld.db up to
	external/mpl/bind//dist/bin/tests/system/nsprocessinglimit/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsprocessinglimit/ns4/named.args up to
	external/mpl/bind//dist/bin/tests/system/nsprocessinglimit/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nsprocessinglimit/ns4/root.hint up to
	external/mpl/bind//dist/bin/tests/system/nta/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nta/ns1/root.db.in up to
	external/mpl/bind//dist/bin/tests/system/nta/ns1/sign.sh up to
	external/mpl/bind//dist/bin/tests/system/nta/ns2/corp.db up to
	external/mpl/bind//dist/bin/tests/system/nta/ns2/example.db.in up to
	external/mpl/bind//dist/bin/tests/system/nta/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nta/ns2/sign.sh up to
	external/mpl/bind//dist/bin/tests/system/nta/setup.sh up to
	external/mpl/bind//dist/bin/tests/system/nta/tests_nta.py up to
	external/mpl/bind//dist/bin/tests/system/nta/ns3/bogus.example.db.in up to
	external/mpl/bind//dist/bin/tests/system/nta/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nta/ns3/secure.example.db.in up to
	external/mpl/bind//dist/bin/tests/system/nta/ns3/sign.sh up to
	external/mpl/bind//dist/bin/tests/system/nta/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/nta/ns9/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/query_source/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/query_source/ns1/root.db up to
	external/mpl/bind//dist/bin/tests/system/query_source/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/query_source/ns2/root.hint up to
	external/mpl/bind//dist/bin/tests/system/query_source/tests_querysource_none.py up to
	external/mpl/bind//dist/bin/tests/system/query_source/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/query_source/ns3/root.hint up to
	external/mpl/bind//dist/bin/tests/system/query_source/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/query_source/ns4/root.hint up to
	external/mpl/bind//dist/bin/tests/system/query_source/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/query_source/ns5/root.hint up to
	external/mpl/bind//dist/bin/tests/system/randomizens/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/randomizens/ns1/root.db up to
	external/mpl/bind//dist/bin/tests/system/randomizens/README up to
	external/mpl/bind//dist/bin/tests/system/randomizens/ns2/example.db up to
	external/mpl/bind//dist/bin/tests/system/randomizens/ns2/1st.db up to
	external/mpl/bind//dist/bin/tests/system/randomizens/ns2/2nd.db up to
	external/mpl/bind//dist/bin/tests/system/randomizens/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/randomizens/ns2/xxx.db up to
	external/mpl/bind//dist/bin/tests/system/randomizens/ns3/example.db up to
	external/mpl/bind//dist/bin/tests/system/randomizens/ns3/1st.db up to
	external/mpl/bind//dist/bin/tests/system/randomizens/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/randomizens/tests_randomizens.py up to
	external/mpl/bind//dist/bin/tests/system/randomizens/ns4/example.db up to
	external/mpl/bind//dist/bin/tests/system/randomizens/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/randomizens/ns5/example.db up to
	external/mpl/bind//dist/bin/tests/system/randomizens/ns5/1st.db up to
	external/mpl/bind//dist/bin/tests/system/randomizens/ns5/2nd.db up to
	external/mpl/bind//dist/bin/tests/system/randomizens/ns5/3rd.db up to
	external/mpl/bind//dist/bin/tests/system/randomizens/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/randomizens/ns6/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/ns1/root.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/ns2/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/tests_rollover_algo_csk_initial.py up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/tests_rollover_algo_csk_reconfig.py up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/ns3/csk1.conf up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/ns3/csk2.conf up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/ns3/named.common.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/ns3/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/ns3/trusted.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/ns1/root.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/ns2/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/tests_rollover_algo_ksk_zsk_initial.py up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/tests_rollover_algo_ksk_zsk_reconfig.py up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/ns3/kasp.conf up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/ns3/named.common.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/ns3/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/ns3/trusted.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_csk_roll1/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_csk_roll1/ns1/root.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_csk_roll1/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_csk_roll1/ns2/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_csk_roll1/tests_rollover_csk_roll1.py up to
	external/mpl/bind//dist/bin/tests/system/rollover_csk_roll1/ns3/kasp.conf up to
	external/mpl/bind//dist/bin/tests/system/rollover_csk_roll1/ns3/named.common.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_csk_roll1/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_csk_roll1/ns3/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_csk_roll1/ns3/trusted.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_csk_roll2/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_csk_roll2/ns1/root.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_csk_roll2/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_csk_roll2/ns2/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_csk_roll2/tests_rollover_csk_roll2.py up to
	external/mpl/bind//dist/bin/tests/system/rollover_csk_roll2/ns3/kasp.conf up to
	external/mpl/bind//dist/bin/tests/system/rollover_csk_roll2/ns3/named.common.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_csk_roll2/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_csk_roll2/ns3/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_csk_roll2/ns3/trusted.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_dynamic2inline/ns3/dynamic2inline.kasp.db up to
	external/mpl/bind//dist/bin/tests/system/rollover_dynamic2inline/ns3/named.common.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_dynamic2inline/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_dynamic2inline/tests_rollover_dynamic2inline.py up to
	external/mpl/bind//dist/bin/tests/system/rollover_enable_dnssec/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_enable_dnssec/ns1/root.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_enable_dnssec/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_enable_dnssec/ns2/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_enable_dnssec/tests_rollover_enable_dnssec.py up to
	external/mpl/bind//dist/bin/tests/system/rollover_enable_dnssec/ns3/kasp.conf up to
	external/mpl/bind//dist/bin/tests/system/rollover_enable_dnssec/ns3/named.common.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_enable_dnssec/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_enable_dnssec/ns3/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_enable_dnssec/ns3/trusted.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/ns1/root.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/ns2/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/tests_rollover_going_insecure_initial.py up to
	external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/tests_rollover_going_insecure_reconfig.py up to
	external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/ns3/kasp.conf up to
	external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/ns3/named.common.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/ns3/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/ns3/trusted.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_ksk_3crowd/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_ksk_3crowd/ns1/root.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_ksk_3crowd/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_ksk_3crowd/ns2/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_ksk_3crowd/tests_rollover_three_is_a_crowd.py up to
	external/mpl/bind//dist/bin/tests/system/rollover_ksk_3crowd/ns3/kasp.conf up to
	external/mpl/bind//dist/bin/tests/system/rollover_ksk_3crowd/ns3/named.common.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_ksk_3crowd/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_ksk_3crowd/ns3/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_ksk_3crowd/ns3/trusted.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_ksk_doubleksk/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_ksk_doubleksk/ns1/root.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_ksk_doubleksk/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_ksk_doubleksk/ns2/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_ksk_doubleksk/tests_rollover_ksk_doubleksk.py up to
	external/mpl/bind//dist/bin/tests/system/rollover_ksk_doubleksk/ns3/kasp.conf up to
	external/mpl/bind//dist/bin/tests/system/rollover_ksk_doubleksk/ns3/named.common.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_ksk_doubleksk/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_ksk_doubleksk/ns3/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_ksk_doubleksk/ns3/trusted.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_lifetime/ns3/kasp.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_lifetime/ns3/limit-lifetime.db up to
	external/mpl/bind//dist/bin/tests/system/rollover_lifetime/ns3/longer-lifetime.db up to
	external/mpl/bind//dist/bin/tests/system/rollover_lifetime/ns3/named.common.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_lifetime/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_lifetime/ns3/shorter-lifetime.db up to
	external/mpl/bind//dist/bin/tests/system/rollover_lifetime/ns3/template.db.in up to
	external/mpl/bind//dist/bin/tests/system/rollover_lifetime/ns3/unlimit-lifetime.db up to
	external/mpl/bind//dist/bin/tests/system/rollover_lifetime/tests_rollover_lifetime_initial.py up to
	external/mpl/bind//dist/bin/tests/system/rollover_lifetime/tests_rollover_lifetime_reconfig.py up to
	external/mpl/bind//dist/bin/tests/system/rollover_multisigner/ns3/kasp.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_multisigner/ns3/named.common.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_multisigner/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_multisigner/ns3/template.db.in up to
	external/mpl/bind//dist/bin/tests/system/rollover_multisigner/ns3/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_multisigner/tests_rollover_multisigner.py up to
	external/mpl/bind//dist/bin/tests/system/rollover_straight2none/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_straight2none/ns1/root.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_straight2none/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_straight2none/ns2/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_straight2none/tests_rollover_straight2none_initial.py up to
	external/mpl/bind//dist/bin/tests/system/rollover_straight2none/tests_rollover_straight2none_reconfig.py up to
	external/mpl/bind//dist/bin/tests/system/rollover_straight2none/ns3/kasp.conf up to
	external/mpl/bind//dist/bin/tests/system/rollover_straight2none/ns3/named.common.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_straight2none/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_straight2none/ns3/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_straight2none/ns3/trusted.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_zsk_prepub/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_zsk_prepub/ns1/root.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_zsk_prepub/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_zsk_prepub/ns2/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_zsk_prepub/tests_rollover_zsk_prepublication.py up to
	external/mpl/bind//dist/bin/tests/system/rollover_zsk_prepub/ns3/kasp.conf up to
	external/mpl/bind//dist/bin/tests/system/rollover_zsk_prepub/ns3/named.common.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_zsk_prepub/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/rollover_zsk_prepub/ns3/template.db.j2.manual up to
	external/mpl/bind//dist/bin/tests/system/rollover_zsk_prepub/ns3/trusted.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ans2/ans.pl up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/prereq.sh up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/tests.sh up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/tests_sh_serve_stale.py up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ans8/ans.pl up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns1/named1.conf.in up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns1/named2.conf.in up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns1/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns1/named3.conf.in up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns1/named3.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns1/named4.conf.in up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns1/named4.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns1/root.db up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns1/stale.test.db up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/named1.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/named2.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/named3.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/named4.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/named5.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/named6.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/named7.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/named8.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/named9.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/root.db up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/serve.stale.db up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns4/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns5/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns6/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns6/serve.stale.db up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns6/stale.db up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns7/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns7/named1.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns7/root.db up to
	external/mpl/bind//dist/bin/tests/system/serve_stale/ns7/target.stale.db up to
	external/mpl/bind//dist/bin/tests/system/sig0/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/sig0/setup.sh up to
	external/mpl/bind//dist/bin/tests/system/sig0/tests_sig0.py up to
	external/mpl/bind//dist/bin/tests/system/ssumaxtype/ns1/example.db.in up to
	external/mpl/bind//dist/bin/tests/system/ssumaxtype/ns1/maxrrperset.db.in up to
	external/mpl/bind//dist/bin/tests/system/ssumaxtype/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/ssumaxtype/setup.sh up to
	external/mpl/bind//dist/bin/tests/system/ssumaxtype/tests_ssumaxtype.py up to
	external/mpl/bind//dist/bin/tests/system/ssutoctou/ns1/example.db.in up to
	external/mpl/bind//dist/bin/tests/system/ssutoctou/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/ssutoctou/setup.sh up to
	external/mpl/bind//dist/bin/tests/system/ssutoctou/tests_ssutoctou.py up to
	external/mpl/bind//dist/bin/tests/system/tkey/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/tkey/tests_cve_2026_3119.py up to
	external/mpl/bind//dist/bin/tests/system/transport_acl/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/transport_acl/self-signed-cert.pem up to
	external/mpl/bind//dist/bin/tests/system/transport_acl/self-signed-key.pem up to
	external/mpl/bind//dist/bin/tests/system/transport_acl/setup.sh up to
	external/mpl/bind//dist/bin/tests/system/transport_acl/tests.sh up to
	external/mpl/bind//dist/bin/tests/system/transport_acl/tests_sh_transport_acl.py up to
	external/mpl/bind//dist/bin/tests/system/transport_change/ns1/named-http-plain-proxy.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/transport_change/ns1/named-http-plain.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/transport_change/ns1/named-https-proxy-encrypted.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/transport_change/ns1/named-https-proxy-plain.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/transport_change/ns1/named-https.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/transport_change/ns1/named-proxy.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/transport_change/ns1/named-tls-proxy-encrypted.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/transport_change/ns1/named-tls-proxy-plain.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/transport_change/ns1/named-tls.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/transport_change/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/transport_change/prereq.sh up to
	external/mpl/bind//dist/bin/tests/system/transport_change/privkey.pem up to
	external/mpl/bind//dist/bin/tests/system/transport_change/self-signed-cert.pem up to
	external/mpl/bind//dist/bin/tests/system/transport_change/self-signed-key.pem up to
	external/mpl/bind//dist/bin/tests/system/transport_change/setup.sh up to
	external/mpl/bind//dist/bin/tests/system/transport_change/tests.sh up to
	external/mpl/bind//dist/bin/tests/system/transport_change/tests_sh_transport_change.py up to
	external/mpl/bind//dist/bin/tests/system/xfer_servers_list/ns1/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/xfer_servers_list/ns1/test.db.j2 up to
	external/mpl/bind//dist/bin/tests/system/xfer_servers_list/ns2/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/xfer_servers_list/tests_xfer_servers_list.py up to
	external/mpl/bind//dist/bin/tests/system/xfer_servers_list/ns3/named.conf.j2 up to
	external/mpl/bind//dist/bin/tests/system/xfer_servers_list/ns4/named.conf.j2 up to
	external/mpl/bind//dist/doc/notes/notes-9.20.12.rst up to
	external/mpl/bind//dist/doc/notes/notes-9.20.13.rst up to
	external/mpl/bind//dist/doc/notes/notes-9.20.14.rst up to
	external/mpl/bind//dist/doc/notes/notes-9.20.15.rst up to
	external/mpl/bind//dist/doc/notes/notes-9.20.16.rst up to
	external/mpl/bind//dist/doc/notes/notes-9.20.17.rst up to
	external/mpl/bind//dist/doc/notes/notes-9.20.18.rst up to
	external/mpl/bind//dist/doc/notes/notes-9.20.19.rst up to
	external/mpl/bind//dist/doc/notes/notes-9.20.20.rst up to
	external/mpl/bind//dist/doc/notes/notes-9.20.21.rst up to
	external/mpl/bind//dist/doc/notes/notes-9.20.22.rst up to
	external/mpl/bind//dist/doc/changelog/changelog-9.20.12.rst up to
	external/mpl/bind//dist/doc/changelog/changelog-9.20.13.rst up to
	external/mpl/bind//dist/doc/changelog/changelog-9.20.14.rst up to
	external/mpl/bind//dist/doc/changelog/changelog-9.20.15.rst up to
	external/mpl/bind//dist/doc/changelog/changelog-9.20.16.rst up to
	external/mpl/bind//dist/doc/changelog/changelog-9.20.17.rst up to
	external/mpl/bind//dist/doc/changelog/changelog-9.20.18.rst up to
	external/mpl/bind//dist/doc/changelog/changelog-9.20.19.rst up to
	external/mpl/bind//dist/doc/changelog/changelog-9.20.20.rst up to
	external/mpl/bind//dist/doc/changelog/changelog-9.20.21.rst up to
	external/mpl/bind//dist/doc/changelog/changelog-9.20.22.rst up to
	external/mpl/bind//dist/lib/dns/include/dns/dsync.h up to
	external/mpl/bind//dist/lib/dns/rdata/generic/brid_68.c up to
	external/mpl/bind//dist/lib/dns/rdata/generic/brid_68.h up to
	external/mpl/bind//dist/lib/dns/rdata/generic/dsync_66.c up to
	external/mpl/bind//dist/lib/dns/rdata/generic/dsync_66.h up to
	external/mpl/bind//dist/lib/dns/rdata/generic/hhit_67.c up to
	external/mpl/bind//dist/lib/dns/rdata/generic/hhit_67.h up to
	external/mpl/bind//dist/util/check-make-install.sh.in up to
	external/mpl/bind//dist/bin/tests/convert-trs-to-junit.py delete
	external/mpl/bind//dist/bin/tests/system/convert-junit-to-trs.py delete
	external/mpl/bind//dist/bin/tests/system/kasp.sh delete
	external/mpl/bind//dist/bin/tests/system/acl/ns2/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/acl/ns2/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/acl/ns2/named3.conf.in delete
	external/mpl/bind//dist/bin/tests/system/acl/ns2/named4.conf.in delete
	external/mpl/bind//dist/bin/tests/system/acl/ns2/named5.conf.in delete
	external/mpl/bind//dist/bin/tests/system/acl/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/acl/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/additional/ns1/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/additional/ns1/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/additional/ns1/named3.conf.in delete
	external/mpl/bind//dist/bin/tests/system/additional/ns1/named4.conf.in delete
	external/mpl/bind//dist/bin/tests/system/additional/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/additional/setup.sh delete
	external/mpl/bind//dist/bin/tests/system/additional/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/addzone/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/addzone/ns2/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/addzone/ns2/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/addzone/ns2/named3.conf.in delete
	external/mpl/bind//dist/bin/tests/system/addzone/ns3/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/addzone/ns3/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns1/root.db delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/generic.db delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named01.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named02.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named03.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named04.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named05.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named06.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named07.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named08.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named09.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named10.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named11.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named12.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named21.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named22.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named23.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named24.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named25.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named26.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named27.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named28.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named29.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named30.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named31.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named32.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named33.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named34.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named40.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named53.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named54.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named55.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named56.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named57.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/setup.sh delete
	external/mpl/bind//dist/bin/tests/system/allow-query/tests.sh delete
	external/mpl/bind//dist/bin/tests/system/allow-query/tests_sh_allow_query.py delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns3/named.args delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns3/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns3/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns3/named3.conf.in delete
	external/mpl/bind//dist/bin/tests/system/allow-query/ns3/named4.conf.in delete
	external/mpl/bind//dist/bin/tests/system/autosign/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/autosign/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/autosign/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/autosign/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/autosign/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/catz/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/catz/ns2/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/catz/ns2/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/catz/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/catz/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/chain/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/chain/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/chain/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/chain/ns7/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/checkds/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/checkds/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/checkds/ns10/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/checkds/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/checkds/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/checkds/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/checkds/ns6/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/checkds/ns7/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/checkds/ns8/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/checkds/ns9/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/checkzone/zones/bad-cname-and-atmrelay.db delete
	external/mpl/bind//dist/bin/tests/system/checkzone/zones/bad-tsig.db.in delete
	external/mpl/bind//dist/bin/tests/system/cipher-suites/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/cipher-suites/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/cipher-suites/prereq.sh delete
	external/mpl/bind//dist/bin/tests/system/cipher-suites/self-signed-cert.pem delete
	external/mpl/bind//dist/bin/tests/system/cipher-suites/self-signed-key.pem delete
	external/mpl/bind//dist/bin/tests/system/cipher-suites/setup.sh delete
	external/mpl/bind//dist/bin/tests/system/cipher-suites/tests_cipher_suites.py delete
	external/mpl/bind//dist/bin/tests/system/cipher-suites/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/cipher-suites/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/cipher-suites/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/cookie/prereq.sh delete
	external/mpl/bind//dist/bin/tests/system/dialup/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dialup/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dialup/setup.sh delete
	external/mpl/bind//dist/bin/tests/system/dialup/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/digdelv/ans4/startme delete
	external/mpl/bind//dist/bin/tests/system/digdelv/ans5/ans.pl delete
	external/mpl/bind//dist/bin/tests/system/digdelv/ans6/ans.pl delete
	external/mpl/bind//dist/bin/tests/system/digdelv/ans7/ans.pl delete
	external/mpl/bind//dist/bin/tests/system/digdelv/ans8/ans.py delete
	external/mpl/bind//dist/bin/tests/system/digdelv/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/digdelv/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/digdelv/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dlzexternal/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dns64/ns1/named.conf1.in delete
	external/mpl/bind//dist/bin/tests/system/dns64/ns1/named.conf2.in delete
	external/mpl/bind//dist/bin/tests/system/dns64/ns1/named.conf3.in delete
	external/mpl/bind//dist/bin/tests/system/dns64/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dns64/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dns64/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dnssec/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dnssec/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dnssec/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dnssec/ns4/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dnssec/ns4/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dnssec/ns4/named3.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dnssec/ns4/named4.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dnssec/ns5/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dnssec/ns5/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dnssec/ns6/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dnssec/ns7/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dnssec/ns8/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dnssec/ns9/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/doth/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/doth/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/doth/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/doth/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/doth/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dsdigest/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dsdigest/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dsdigest/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/dsdigest/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/ecdsa/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/ecdsa/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/ecdsa/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/eddsa/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/eddsa/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/eddsa/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/enginepkcs11/ns1/named.args.in delete
	external/mpl/bind//dist/bin/tests/system/enginepkcs11/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/enginepkcs11/ns2/named.args.in delete
	external/mpl/bind//dist/bin/tests/system/enginepkcs11/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/fetchlimit/ans4/ans.pl delete
	external/mpl/bind//dist/bin/tests/system/fetchlimit/setup.sh delete
	external/mpl/bind//dist/bin/tests/system/fetchlimit/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/fetchlimit/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/fetchlimit/ns3/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/fetchlimit/ns3/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/fetchlimit/ns3/named3.conf.in delete
	external/mpl/bind//dist/bin/tests/system/fetchlimit/ns5/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/fetchlimit/ns5/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/fetchlimit/ns5/named3.conf.in delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/conf/bad1.conf delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/conf/bad2.conf delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/conf/bad3.conf delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/conf/bad4.conf delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/conf/bad5.conf delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/conf/good1.conf delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/conf/good2.conf delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/conf/good3.conf delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/conf/good4.conf delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/conf/good5.conf delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/setup.sh delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/tests.sh delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/tests_sh_filter_aaaa.py delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns1/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns1/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns1/root.db delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns1/sign.sh delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns1/signed.db.in delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns1/unsigned.db delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns2/hints delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns2/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns2/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns3/hints delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns3/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns3/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns4/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns4/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns4/root.db delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns4/sign.sh delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns4/signed.db.in delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns4/unsigned.db delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns5/hints delete
	external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/forward/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/forward/ns10/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/forward/ns2/named-tls.conf.in delete
	external/mpl/bind//dist/bin/tests/system/forward/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/forward/ns2/options-tls.conf.in delete
	external/mpl/bind//dist/bin/tests/system/forward/ns3/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/forward/ns3/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/forward/ns4/named-tls.conf.in delete
	external/mpl/bind//dist/bin/tests/system/forward/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/forward/ns4/options-tls.conf.in delete
	external/mpl/bind//dist/bin/tests/system/forward/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/forward/ns7/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/forward/ns8/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/forward/ns9/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/forward/ns9/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/forward/ns9/named3.conf.in delete
	external/mpl/bind//dist/bin/tests/system/forward/ns9/named4.conf.in delete
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named10.conf.in delete
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named11.conf.in delete
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named12.conf.in delete
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named3.conf.in delete
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named4.conf.in delete
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named5.conf.in delete
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named6.conf.in delete
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named7.conf.in delete
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named8.conf.in delete
	external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named9.conf.in delete
	external/mpl/bind//dist/bin/tests/system/glue/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/host/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/include-multiplecfg/ns2/mars.com.db delete
	external/mpl/bind//dist/bin/tests/system/include-multiplecfg/ns2/mars.conf delete
	external/mpl/bind//dist/bin/tests/system/include-multiplecfg/ns2/named.conf.j2 delete
	external/mpl/bind//dist/bin/tests/system/include-multiplecfg/ns2/zone1.com.db delete
	external/mpl/bind//dist/bin/tests/system/include-multiplecfg/ns2/zone1.conf delete
	external/mpl/bind//dist/bin/tests/system/include-multiplecfg/ns2/zone2.com.db delete
	external/mpl/bind//dist/bin/tests/system/include-multiplecfg/ns2/zone2.conf delete
	external/mpl/bind//dist/bin/tests/system/include-multiplecfg/tests_include_multiplecfg.py delete
	external/mpl/bind//dist/bin/tests/system/inline/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/inline/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/inline/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/inline/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/inline/ns5/named.conf.post delete
	external/mpl/bind//dist/bin/tests/system/inline/ns5/named.conf.pre delete
	external/mpl/bind//dist/bin/tests/system/inline/ns6/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/inline/ns7/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/inline/ns8/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/isctest/compat.py delete
	external/mpl/bind//dist/bin/tests/system/isctest/rndc.py delete
	external/mpl/bind//dist/bin/tests/system/ixfr/ans2/startme delete
	external/mpl/bind//dist/bin/tests/system/ixfr/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/ixfr/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/ixfr/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/ixfr/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/journal/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/journal/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/kasp/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/kasp/ns3/policies/autosign.conf.in delete
	external/mpl/bind//dist/bin/tests/system/kasp/ns3/policies/kasp-fips.conf.in delete
	external/mpl/bind//dist/bin/tests/system/kasp/ns3/policies/kasp.conf.in delete
	external/mpl/bind//dist/bin/tests/system/kasp/ns3/named-fips.conf.in delete
	external/mpl/bind//dist/bin/tests/system/kasp/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/kasp/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/kasp/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/kasp/ns6/policies/csk1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/kasp/ns6/policies/csk2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/kasp/ns6/policies/kasp-fips.conf.in delete
	external/mpl/bind//dist/bin/tests/system/kasp/ns6/policies/kasp.conf.in delete
	external/mpl/bind//dist/bin/tests/system/kasp/ns6/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/kasp/ns6/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/ksr/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/legacy/ns1/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/legacy/ns1/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/legacy/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/legacy/setup.sh delete
	external/mpl/bind//dist/bin/tests/system/legacy/ns10/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/legacy/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/legacy/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/legacy/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/legacy/ns6/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/legacy/ns7/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/legacy/ns8/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/legacy/ns9/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.abspathconf.in delete
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.dirconf.in delete
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.incconf.in delete
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.iso8601-utc.in delete
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.iso8601.in delete
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.pipeconf.in delete
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.plain.in delete
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.plainconf.in delete
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.symconf.in delete
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.tsconf.in delete
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.unlimited.in delete
	external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.versconf.in delete
	external/mpl/bind//dist/bin/tests/system/logfileconfig/setup.sh delete
	external/mpl/bind//dist/bin/tests/system/masterformat/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/masterformat/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/masterformat/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/masterformat/ns4/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/masterformat/ns4/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/mirror/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/mirror/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/mirror/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rpz/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rpz/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rpz/dnsrps.zones.in delete
	external/mpl/bind//dist/bin/tests/system/rpz/test1 delete
	external/mpl/bind//dist/bin/tests/system/rpz/test2 delete
	external/mpl/bind//dist/bin/tests/system/rpz/test3 delete
	external/mpl/bind//dist/bin/tests/system/rpz/test4 delete
	external/mpl/bind//dist/bin/tests/system/rpz/test4a delete
	external/mpl/bind//dist/bin/tests/system/rpz/test5 delete
	external/mpl/bind//dist/bin/tests/system/rpz/test6 delete
	external/mpl/bind//dist/bin/tests/system/rpz/ns10/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rpz/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rpz/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rpz/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rpz/ns6/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rpz/ns7/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rpz/ns8/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rpz/ns9/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/mirror-root-zone/ns1/named.conf.j2 delete
	external/mpl/bind//dist/bin/tests/system/mirror-root-zone/tests_mirror_root_zone.py delete
	external/mpl/bind//dist/bin/tests/system/mkeys/ns1/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/mkeys/ns1/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/mkeys/ns1/named3.conf.in delete
	external/mpl/bind//dist/bin/tests/system/mkeys/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/mkeys/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/mkeys/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/mkeys/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/mkeys/ns6/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/mkeys/ns7/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/multisigner/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/multisigner/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/multisigner/tests.sh delete
	external/mpl/bind//dist/bin/tests/system/multisigner/tests_sh_multisigner.py delete
	external/mpl/bind//dist/bin/tests/system/multisigner/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/notify/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/notify/ns2/named-tls.conf.in delete
	external/mpl/bind//dist/bin/tests/system/notify/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/notify/ns2/options-tls.conf.in delete
	external/mpl/bind//dist/bin/tests/system/notify/ns3/named-tls.conf.in delete
	external/mpl/bind//dist/bin/tests/system/notify/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/notify/ns3/options-tls.conf.in delete
	external/mpl/bind//dist/bin/tests/system/notify/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/notify/ns4/named.port.in delete
	external/mpl/bind//dist/bin/tests/system/notify/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/nsec3/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/nsec3/ns3/named-fips.conf.in delete
	external/mpl/bind//dist/bin/tests/system/nsec3/ns3/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/nsec3/ns3/named2-fips.conf.in delete
	external/mpl/bind//dist/bin/tests/system/nsec3/ns3/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/nsec3/tests.sh delete
	external/mpl/bind//dist/bin/tests/system/nsec3/tests_sh_nsec3.py delete
	external/mpl/bind//dist/bin/tests/system/nslookup/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/nsupdate/verylarge.in delete
	external/mpl/bind//dist/bin/tests/system/nsupdate/ans4/ans.pl delete
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns1/tls.conf.in delete
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns1/tls.options.in delete
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns10/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns6/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns7/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns7/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns8/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/nsupdate/ns9/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/padding/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/padding/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/padding/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/padding/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/pending/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/pending/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/pending/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/pending/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/proxy/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/proxy/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/qmin/prereq.sh delete
	external/mpl/bind//dist/bin/tests/system/query-source/ns1/named.conf.j2 delete
	external/mpl/bind//dist/bin/tests/system/query-source/ns1/root.db delete
	external/mpl/bind//dist/bin/tests/system/query-source/ns2/named.conf.j2 delete
	external/mpl/bind//dist/bin/tests/system/query-source/ns2/root.hint delete
	external/mpl/bind//dist/bin/tests/system/query-source/tests_querysource_none.py delete
	external/mpl/bind//dist/bin/tests/system/query-source/ns3/named.conf.j2 delete
	external/mpl/bind//dist/bin/tests/system/query-source/ns3/root.hint delete
	external/mpl/bind//dist/bin/tests/system/query-source/ns4/named.conf.j2 delete
	external/mpl/bind//dist/bin/tests/system/query-source/ns4/root.hint delete
	external/mpl/bind//dist/bin/tests/system/query-source/ns5/named.conf.j2 delete
	external/mpl/bind//dist/bin/tests/system/query-source/ns5/root.hint delete
	external/mpl/bind//dist/bin/tests/system/reclimit/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named3.conf.in delete
	external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named4.conf.in delete
	external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named5.conf.in delete
	external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named6.conf.in delete
	external/mpl/bind//dist/bin/tests/system/redirect/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/redirect/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/redirect/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/redirect/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/redirect/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/redirect/ns6/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/resolver/ans2/ans.pl delete
	external/mpl/bind//dist/bin/tests/system/resolver/ans3/ans.pl delete
	external/mpl/bind//dist/bin/tests/system/resolver/ans8/ans.pl delete
	external/mpl/bind//dist/bin/tests/system/resolver/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/resolver/ns11/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/resolver/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/resolver/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/resolver/ns6/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/resolver/ns7/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/resolver/ns7/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/resolver/ns9/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rndc/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rndc/ns2/secondkey.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rndc/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rndc/tests_cve-2023-3341.py delete
	external/mpl/bind//dist/bin/tests/system/rndc/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rndc/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rndc/ns6/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rndc/ns7/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rollover/ns3/setup.sh delete
	external/mpl/bind//dist/bin/tests/system/rollover/ns3/template.db.in delete
	external/mpl/bind//dist/bin/tests/system/rollover/ns6/csk1.conf.j2 delete
	external/mpl/bind//dist/bin/tests/system/rollover/ns6/csk2.conf.j2 delete
	external/mpl/bind//dist/bin/tests/system/rollover/ns6/kasp.conf.j2 delete
	external/mpl/bind//dist/bin/tests/system/rollover/ns6/named.conf.j2 delete
	external/mpl/bind//dist/bin/tests/system/rollover/ns6/named2.conf.j2 delete
	external/mpl/bind//dist/bin/tests/system/rollover/ns6/setup.sh delete
	external/mpl/bind//dist/bin/tests/system/rollover/ns6/template.db.in delete
	external/mpl/bind//dist/bin/tests/system/rollover/setup.sh delete
	external/mpl/bind//dist/bin/tests/system/rollover/tests_rollover.py delete
	external/mpl/bind//dist/bin/tests/system/rootkeysentinel/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rootkeysentinel/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rootkeysentinel/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rootkeysentinel/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rpzrecurse/ans5/ans.pl delete
	external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns2/named.conf.header.in delete
	external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns3/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns3/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns3/named3.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rsabigexponent/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rsabigexponent/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/rsabigexponent/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/runtime/ns2/named-alt1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/runtime/ns2/named-alt2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/runtime/ns2/named-alt3.conf.in delete
	external/mpl/bind//dist/bin/tests/system/runtime/ns2/named-alt4.conf.in delete
	external/mpl/bind//dist/bin/tests/system/runtime/ns2/named-alt5.conf.in delete
	external/mpl/bind//dist/bin/tests/system/runtime/ns2/named-alt9.conf.in delete
	external/mpl/bind//dist/bin/tests/system/runtime/ns2/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ans2/ans.pl delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/prereq.sh delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/setup.sh delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/tests.sh delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/tests_sh_serve_stale.py delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns1/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns1/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns1/named3.conf.in delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns1/named4.conf.in delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns1/root.db delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns1/stale.test.db delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/named3.conf.in delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/named4.conf.in delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/named5.conf.in delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/named6.conf.in delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/named7.conf.in delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/named8.conf.in delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/root.db delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/serve.stale.db delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns6/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns6/serve.stale.db delete
	external/mpl/bind//dist/bin/tests/system/serve-stale/ns6/stale.db delete
	external/mpl/bind//dist/bin/tests/system/sfcache/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/sfcache/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/sfcache/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/sortlist/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/sortlist/setup.sh delete
	external/mpl/bind//dist/bin/tests/system/staticstub/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/staticstub/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/staticstub/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/staticstub/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/statistics/ans4/ans.pl delete
	external/mpl/bind//dist/bin/tests/system/statistics/setup.sh delete
	external/mpl/bind//dist/bin/tests/system/statistics/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/statistics/ns1/statistics-channels.conf.in delete
	external/mpl/bind//dist/bin/tests/system/statistics/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/statistics/ns2/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/statistics/ns2/statistics-channels.conf.in delete
	external/mpl/bind//dist/bin/tests/system/statistics/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/statistics/ns3/statistics-channels.conf.in delete
	external/mpl/bind//dist/bin/tests/system/statschannel/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/statschannel/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/statschannel/ns2/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/statschannel/traffic-json.pl delete
	external/mpl/bind//dist/bin/tests/system/statschannel/traffic-xml.pl delete
	external/mpl/bind//dist/bin/tests/system/statschannel/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/stress/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/stress/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/stress/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns1/statistics-channels.conf.in delete
	external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns2/statistics-channels.conf.in delete
	external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns3/statistics-channels.conf.in delete
	external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns4/statistics-channels.conf.in delete
	external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns5/statistics-channels.conf.in delete
	external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns6/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns6/statistics-channels.conf.in delete
	external/mpl/bind//dist/bin/tests/system/timeouts/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/timeouts/prereq.sh delete
	external/mpl/bind//dist/bin/tests/system/transport-acl/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/transport-acl/self-signed-cert.pem delete
	external/mpl/bind//dist/bin/tests/system/transport-acl/self-signed-key.pem delete
	external/mpl/bind//dist/bin/tests/system/transport-acl/setup.sh delete
	external/mpl/bind//dist/bin/tests/system/transport-acl/tests.sh delete
	external/mpl/bind//dist/bin/tests/system/transport-acl/tests_sh_transport_acl.py delete
	external/mpl/bind//dist/bin/tests/system/transport-change/ns1/named-http-plain-proxy.conf.in delete
	external/mpl/bind//dist/bin/tests/system/transport-change/ns1/named-http-plain.conf.in delete
	external/mpl/bind//dist/bin/tests/system/transport-change/ns1/named-https-proxy-encrypted.conf.in delete
	external/mpl/bind//dist/bin/tests/system/transport-change/ns1/named-https-proxy-plain.conf.in delete
	external/mpl/bind//dist/bin/tests/system/transport-change/ns1/named-https.conf.in delete
	external/mpl/bind//dist/bin/tests/system/transport-change/ns1/named-proxy.conf.in delete
	external/mpl/bind//dist/bin/tests/system/transport-change/ns1/named-tls-proxy-encrypted.conf.in delete
	external/mpl/bind//dist/bin/tests/system/transport-change/ns1/named-tls-proxy-plain.conf.in delete
	external/mpl/bind//dist/bin/tests/system/transport-change/ns1/named-tls.conf.in delete
	external/mpl/bind//dist/bin/tests/system/transport-change/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/transport-change/prereq.sh delete
	external/mpl/bind//dist/bin/tests/system/transport-change/privkey.pem delete
	external/mpl/bind//dist/bin/tests/system/transport-change/self-signed-cert.pem delete
	external/mpl/bind//dist/bin/tests/system/transport-change/self-signed-key.pem delete
	external/mpl/bind//dist/bin/tests/system/transport-change/setup.sh delete
	external/mpl/bind//dist/bin/tests/system/transport-change/tests.sh delete
	external/mpl/bind//dist/bin/tests/system/transport-change/tests_sh_transport_change.py delete
	external/mpl/bind//dist/bin/tests/system/tsig/ans2/ans.pl delete
	external/mpl/bind//dist/bin/tests/system/tsig/setup.sh delete
	external/mpl/bind//dist/bin/tests/system/tsig/ns1/named-fips.conf.in delete
	external/mpl/bind//dist/bin/tests/system/tsig/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/tsiggss/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/upforwd/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/upforwd/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/upforwd/ns3/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/upforwd/ns3/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/views/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/views/ns2/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/views/ns2/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/views/ns2/named3.conf.in delete
	external/mpl/bind//dist/bin/tests/system/views/ns3/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/views/ns3/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/views/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/wildcard/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/wildcard/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/wildcard/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/wildcard/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/wildcard/ns5/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/xfer/axfr-stats.good delete
	external/mpl/bind//dist/bin/tests/system/xfer/dig1.good delete
	external/mpl/bind//dist/bin/tests/system/xfer/dig2.good delete
	external/mpl/bind//dist/bin/tests/system/xfer/dig3.good delete
	external/mpl/bind//dist/bin/tests/system/xfer/tests.sh delete
	external/mpl/bind//dist/bin/tests/system/xfer/tests_sh_xfer.py delete
	external/mpl/bind//dist/bin/tests/system/xfer/ns1/dot-fallback.db.in delete
	external/mpl/bind//dist/bin/tests/system/xfer/ns1/ixfr-too-big.db.in delete
	external/mpl/bind//dist/bin/tests/system/xfer/ns1/named1.conf.in delete
	external/mpl/bind//dist/bin/tests/system/xfer/ns1/named2.conf.in delete
	external/mpl/bind//dist/bin/tests/system/xfer/ns1/named3.conf.in delete
	external/mpl/bind//dist/bin/tests/system/xfer/ns2/mapped.db.in delete
	external/mpl/bind//dist/bin/tests/system/xfer/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/xfer/ns2/sec.db.in delete
	external/mpl/bind//dist/bin/tests/system/xfer/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/xfer/ns4/named.conf.base.in delete
	external/mpl/bind//dist/bin/tests/system/xfer/ns4/root.db.in delete
	external/mpl/bind//dist/bin/tests/system/xfer/ns6/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/xfer/ns7/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/xfer/ns8/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/xferquota/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/xferquota/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/zero/ans5/ans.pl delete
	external/mpl/bind//dist/bin/tests/system/zero/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/zero/ns2/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/zero/ns3/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/zero/ns4/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/zonechecks/ns1/named.conf.in delete
	external/mpl/bind//dist/bin/tests/system/zonechecks/ns2/named.conf.in delete
	external/mpl/bind//dist/lib/isc/entropy.c       delete
	external/mpl/bind//dist/lib/isc/nonce.c         delete
	external/mpl/bind//dist/lib/isc/include/isc/entropy.h delete
	external/mpl/bind//dist/tests/isc/random_test.c delete
	external/mpl/bind//dist/util/check-make-install.in delete
	external/mpl/bind/Makefile.inc                  up to 1.19
	external/mpl/bind/bind2netbsd                   up to 1.12
	external/mpl/bind/bin/named/Makefile            up to 1.7
	external/mpl/bind/dist/CONTRIBUTING.md          up to 1.1.1.10
	external/mpl/bind/dist/Makefile.in              up to 1.15
	external/mpl/bind/dist/NEWS                     up to 1.1.1.7
	external/mpl/bind/dist/aclocal.m4               up to 1.1.1.9
	external/mpl/bind/dist/ar-lib                   up to 1.1.1.2
	external/mpl/bind/dist/compile                  up to 1.1.1.2
	external/mpl/bind/dist/config.guess             up to 1.5
	external/mpl/bind/dist/config.h.in              up to 1.18
	external/mpl/bind/dist/config.sub               up to 1.4
	external/mpl/bind/dist/configure                up to 1.23
	external/mpl/bind/dist/configure.ac             up to 1.1.1.21
	external/mpl/bind/dist/depcomp                  up to 1.1.1.2
	external/mpl/bind/dist/install-sh               up to 1.1.1.4
	external/mpl/bind/dist/ltmain.sh                up to 1.1.1.5
	external/mpl/bind/dist/missing                  up to 1.1.1.2
	external/mpl/bind/dist/srcid                    up to 1.1.1.22
	external/mpl/bind/dist/test-driver              up to 1.1.1.2
	external/mpl/bind/dist/bin/Makefile.in          up to 1.1.1.7
	external/mpl/bind/dist/bin/check/Makefile.in    up to 1.1.1.12
	external/mpl/bind/dist/bin/check/check-tool.c   up to 1.12
	external/mpl/bind/dist/bin/check/named-checkconf.c up to 1.14
	external/mpl/bind/dist/bin/check/named-checkconf.rst up to 1.1.1.6
	external/mpl/bind/dist/bin/check/named-checkzone.c up to 1.13
	external/mpl/bind/dist/bin/confgen/Makefile.in  up to 1.1.1.11
	external/mpl/bind/dist/bin/delv/Makefile.in     up to 1.1.1.11
	external/mpl/bind/dist/bin/delv/delv.c          up to 1.19
	external/mpl/bind/dist/bin/dig/Makefile.in      up to 1.1.1.11
	external/mpl/bind/dist/bin/dig/dig.rst          up to 1.1.1.10
	external/mpl/bind/dist/bin/dig/dighost.c        up to 1.21
	external/mpl/bind/dist/bin/dnssec/Makefile.in   up to 1.1.1.11
	external/mpl/bind/dist/bin/dnssec/dnssec-cds.c  up to 1.13
	external/mpl/bind/dist/bin/dnssec/dnssec-dsfromkey.c up to 1.14
	external/mpl/bind/dist/bin/dnssec/dnssec-dsfromkey.rst up to 1.1.1.5
	external/mpl/bind/dist/bin/dnssec/dnssec-importkey.c up to 1.11
	external/mpl/bind/dist/bin/dnssec/dnssec-importkey.rst up to 1.1.1.5
	external/mpl/bind/dist/bin/dnssec/dnssec-keyfromlabel.c up to 1.13
	external/mpl/bind/dist/bin/dnssec/dnssec-keyfromlabel.rst up to 1.1.1.6
	external/mpl/bind/dist/bin/dnssec/dnssec-keygen.c up to 1.16
	external/mpl/bind/dist/bin/dnssec/dnssec-keygen.rst up to 1.1.1.7
	external/mpl/bind/dist/bin/dnssec/dnssec-ksr.c  up to 1.5
	external/mpl/bind/dist/bin/dnssec/dnssec-revoke.c up to 1.12
	external/mpl/bind/dist/bin/dnssec/dnssec-settime.c up to 1.11
	external/mpl/bind/dist/bin/dnssec/dnssec-signzone.c up to 1.16
	external/mpl/bind/dist/bin/dnssec/dnssec-verify.c up to 1.10
	external/mpl/bind/dist/bin/dnssec/dnssectool.c  up to 1.13
	external/mpl/bind/dist/bin/dnssec/dnssectool.h  up to 1.9
	external/mpl/bind/dist/bin/named/Makefile.in    up to 1.1.1.13
	external/mpl/bind/dist/bin/named/bind9.xsl      up to 1.1.1.12
	external/mpl/bind/dist/bin/named/config.c       up to 1.20
	external/mpl/bind/dist/bin/named/controlconf.c  up to 1.14
	external/mpl/bind/dist/bin/named/logconf.c      up to 1.11
	external/mpl/bind/dist/bin/named/main.c         up to 1.23
	external/mpl/bind/dist/bin/named/server.c       up to 1.27
	external/mpl/bind/dist/bin/named/statschannel.c up to 1.19
	external/mpl/bind/dist/bin/named/tkeyconf.c     up to 1.9
	external/mpl/bind/dist/bin/named/transportconf.c up to 1.4
	external/mpl/bind/dist/bin/named/zoneconf.c     up to 1.20
	external/mpl/bind/dist/bin/nsupdate/Makefile.in up to 1.1.1.11
	external/mpl/bind/dist/bin/nsupdate/nsupdate.c  up to 1.17
	external/mpl/bind/dist/bin/plugins/Makefile.in  up to 1.1.1.11
	external/mpl/bind/dist/bin/plugins/filter-a.c   up to 1.4
	external/mpl/bind/dist/bin/plugins/filter-aaaa.c up to 1.12
	external/mpl/bind/dist/bin/rndc/Makefile.in     up to 1.1.1.11
	external/mpl/bind/dist/bin/rndc/rndc.c          up to 1.15
	external/mpl/bind/dist/bin/rndc/rndc.rst        up to 1.1.1.10
	external/mpl/bind/dist/bin/tests/Makefile.am    up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/Makefile.in    up to 1.1.1.12
	external/mpl/bind/dist/bin/tests/system/Makefile.am up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/Makefile.in up to 1.1.1.15
	external/mpl/bind/dist/bin/tests/system/README.md up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/conf.sh up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/conftest.py up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/custom-test-driver up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/feature-test.c up to 1.14
	external/mpl/bind/dist/bin/tests/system/genzone.sh up to 1.1.1.13
	external/mpl/bind/dist/bin/tests/system/ifconfig.sh.in up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/makejournal.c up to 1.4
	external/mpl/bind/dist/bin/tests/system/pytest.ini up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/start.pl up to 1.1.1.12
	external/mpl/bind/dist/bin/tests/system/vulture_ignore_list.py up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/acl/setup.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/acl/tests.sh up to 1.1.1.10
	external/mpl/bind/dist/bin/tests/system/additional/tests.sh up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/addzone/setup.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/addzone/tests.sh up to 1.1.1.11
	external/mpl/bind/dist/bin/tests/system/addzone/tests_rndc_deadlock.py up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/auth/tests.sh up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/auth/ns1/example.com.db up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/auth/ns1/example.net.db up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/autosign/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/autosign/tests.sh up to 1.1.1.17
	external/mpl/bind/dist/bin/tests/system/autosign/tests_sh_autosign.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/autosign/ns3/keygen.sh up to 1.1.1.11
	external/mpl/bind/dist/bin/tests/system/cacheclean/ns2/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/catz/setup.sh up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/catz/tests.sh up to 1.1.1.13
	external/mpl/bind/dist/bin/tests/system/catz/tests_sh_catz.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/chain/prereq.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/chain/setup.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/chain/ans3/ans.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/chain/ans4/ans.py up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/checkconf/good.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/checkconf/tests.sh up to 1.1.1.13
	external/mpl/bind/dist/bin/tests/system/checkds/setup.sh up to 1.5
	external/mpl/bind/dist/bin/tests/system/checkds/tests_checkds.py up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/checknames/ns2/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/checknames/ns3/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/checknames/ns4/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/checknames/ns5/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/checkzone/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/checkzone/tests.sh up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/checkzone/zones/crashzone.db up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/cookie/ans9/ans.py up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/cookie/ns1/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/cookie/ns3/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/cookie/ns4/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/cookie/ns5/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/cookie/ns6/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/cookie/ns8/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/database/tests_database.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/database/ns1/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/dialup/tests_dialup_zone_transfer.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/digdelv/prereq.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/digdelv/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/digdelv/tests.sh up to 1.1.1.19
	external/mpl/bind/dist/bin/tests/system/digdelv/tests_sh_digdelv.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/digdelv/yamlget.py up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/digdelv/ns2/example.db.in up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/dispatch/tests_connreset.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/dispatch/ans3/ans.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/dlzexternal/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/dlzexternal/driver/Makefile.in up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/dlzexternal/driver/driver.c up to 1.4
	external/mpl/bind/dist/bin/tests/system/dns64/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/dns64/tests.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/dnssec/prereq.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/dnssec/setup.sh up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/dnssec/tests.sh up to 1.1.1.17
	external/mpl/bind/dist/bin/tests/system/dnssec/tests_sh_dnssec.py up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/dnssec/ans10/ans.py up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/dnssec/ns2/example.db.in up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/dnssec/ns2/sign.sh up to 1.1.1.14
	external/mpl/bind/dist/bin/tests/system/dnssec/ns3/secure.example.db.in up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/dnssec/ns3/sign.sh up to 1.1.1.11
	external/mpl/bind/dist/bin/tests/system/dnstap/tests.sh up to 1.1.1.13
	external/mpl/bind/dist/bin/tests/system/dnstap/tests_dnstap.py up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/dnstap/tests_sh_dnstap.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/dnstap/ydump.py up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/dnstap/ns1/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/dnstap/ns2/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/dnstap/ns3/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/dnstap/ns4/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/doth/conftest.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/doth/example.axfr.good up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/doth/example8.axfr.good up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/doth/setup.sh up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/doth/stress_http_quota.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/doth/tests.sh up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/doth/tests_gnutls.py up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/dsdigest/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/dsdigest/tests_dsdigest.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/dyndb/driver/Makefile.in up to 1.1.1.10
	external/mpl/bind/dist/bin/tests/system/dyndb/driver/util.h up to 1.7
	external/mpl/bind/dist/bin/tests/system/dyndb/driver/zone.c up to 1.9
	external/mpl/bind/dist/bin/tests/system/ecdsa/setup.sh up to 1.1.1.10
	external/mpl/bind/dist/bin/tests/system/ecdsa/tests_ecdsa.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/eddsa/setup.sh up to 1.1.1.10
	external/mpl/bind/dist/bin/tests/system/emptyzones/tests_emptyzones.py up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/enginepkcs11/setup.sh up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/enginepkcs11/tests_sh_enginepkcs11.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/fetchlimit/tests.sh up to 1.1.1.11
	external/mpl/bind/dist/bin/tests/system/fetchlimit/tests_sh_fetchlimit.py up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/forward/prereq.sh up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/forward/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/forward/tests.sh up to 1.1.1.13
	external/mpl/bind/dist/bin/tests/system/forward/tests_sh_forward.py up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/forward/ans11/ans.py up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/forward/ans6/ans.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/geoip2/setup.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/geoip2/tests.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/glue/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/glue/tests_glue.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/hooks/tests_async_plugin.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/hooks/driver/Makefile.in up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/hooks/driver/test-async.c up to 1.4
	external/mpl/bind/dist/bin/tests/system/hooks/ns1/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/host/setup.sh up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/inline/setup.sh up to 1.1.1.13
	external/mpl/bind/dist/bin/tests/system/inline/tests.sh up to 1.1.1.12
	external/mpl/bind/dist/bin/tests/system/isctest/__init__.py up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/isctest/__main__.py up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/isctest/asyncserver.py up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/isctest/check.py up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/isctest/instance.py up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/isctest/kasp.py up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/isctest/mark.py up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/isctest/name.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/isctest/query.py up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/isctest/run.py up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/isctest/template.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/isctest/util.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/isctest/hypothesis/__init__.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/isctest/hypothesis/strategies.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/isctest/log/__init__.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/isctest/log/basic.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/isctest/log/watchlog.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/isctest/vars/__init__.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/isctest/vars/algorithms.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/isctest/vars/all.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/isctest/vars/autoconf.py up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/isctest/vars/basic.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/isctest/vars/dirs.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/isctest/vars/openssl.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/ixfr/setup.sh up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/ixfr/tests.sh up to 1.1.1.13
	external/mpl/bind/dist/bin/tests/system/journal/setup.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/kasp/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/kasp/tests_kasp.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/kasp/ns3/setup.sh up to 1.1.1.13
	external/mpl/bind/dist/bin/tests/system/keepalive/tests_keepalive.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/keyfromlabel/tests_keyfromlabel.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/ksr/setup.sh up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/ksr/tests_ksr.py up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/ksr/ns1/setup.sh up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/legacy/tests.sh up to 1.1.1.14
	external/mpl/bind/dist/bin/tests/system/limits/tests_limits.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/logfileconfig/tests.sh up to 1.1.1.11
	external/mpl/bind/dist/bin/tests/system/masterfile/tests_masterfile.py up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/masterfile/ns2/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/masterformat/setup.sh up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/masterformat/tests.sh up to 1.1.1.11
	external/mpl/bind/dist/bin/tests/system/mirror/setup.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/mkeys/setup.sh up to 1.1.1.11
	external/mpl/bind/dist/bin/tests/system/mkeys/tests.sh up to 1.1.1.12
	external/mpl/bind/dist/bin/tests/system/mkeys/tests_sh_mkeys.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/multisigner/setup.sh up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/multisigner/ns3/setup.sh up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/multisigner/ns4/setup.sh up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/names/tests_names.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/notify/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/notify/tests.sh up to 1.1.1.13
	external/mpl/bind/dist/bin/tests/system/notify/tests_sh_notify.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/nsec3/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/nsec3/ns3/setup.sh up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/nslookup/setup.sh up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/nsupdate/setup.sh up to 1.1.1.11
	external/mpl/bind/dist/bin/tests/system/nsupdate/tests.sh up to 1.1.1.17
	external/mpl/bind/dist/bin/tests/system/nsupdate/tests_sh_nsupdate.py up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/nzd2nzf/tests_nzd2nzf.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/padding/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/pending/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/pipelined/pipequeries.c up to 1.11
	external/mpl/bind/dist/bin/tests/system/pipelined/ans5/ans.py up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/pipelined/ns2/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/pipelined/ns3/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/pipelined/ns4/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/proxy/setup.sh up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/qmin/qmin_ans.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/qmin/tests_sh_qmin.py up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/qmin/ans2/ans.py up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/qmin/ans3/ans.py up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/qmin/ans4/ans.py up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/reclimit/setup.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/reclimit/tests.sh up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/reclimit/tests_sh_reclimit.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/redirect/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/resolver/setup.sh up to 1.1.1.10
	external/mpl/bind/dist/bin/tests/system/resolver/tests.sh up to 1.1.1.14
	external/mpl/bind/dist/bin/tests/system/resolver/ans10/ans.py up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/rfc5011/tests_rfc5011.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/rndc/setup.sh up to 1.1.1.11
	external/mpl/bind/dist/bin/tests/system/rndc/tests.sh up to 1.1.1.14
	external/mpl/bind/dist/bin/tests/system/rollover/ns3/kasp.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/rollover/ns3/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/rootkeysentinel/setup.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/rpz/setup.sh up to 1.1.1.14
	external/mpl/bind/dist/bin/tests/system/rpz/tests.sh up to 1.1.1.16
	external/mpl/bind/dist/bin/tests/system/rpz/tests_sh_rpz.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/rpz/tests_sh_rpz_dnsrps.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/rpz/ns2/tld2.db up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/rpz/ns4/tld4.db up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/rpz/testlib/Makefile.in up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/rpzextra/tests_rpzextra.py up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/rpzrecurse/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/rpzrecurse/tests.sh up to 1.1.1.12
	external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.clientip.conf up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.clientip2.conf up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.default.conf up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.log.conf up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.max.conf up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.wildcard1.conf up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.wildcard2.conf up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.wildcard3.conf up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.wildcard4.conf up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/rrchecker/tests_rrchecker.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/rrl/tests_sh_rrl.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/rrl/ns1/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/rrl/ns2/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/rrl/ns3/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/rrl/ns4/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/rrsetorder/ns3/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/rrsetorder/ns4/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/rrsetorder/ns5/named.conf.j2 up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/rsabigexponent/bigkey.c up to 1.12
	external/mpl/bind/dist/bin/tests/system/rsabigexponent/setup.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/runtime/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/runtime/tests.sh up to 1.1.1.12
	external/mpl/bind/dist/bin/tests/system/sfcache/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/shutdown/tests_shutdown.py up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/sortlist/tests_sortlist.py up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/spf/tests_spf_zones.py up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/staticstub/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/staticstub/tests.sh up to 1.1.1.10
	external/mpl/bind/dist/bin/tests/system/statistics/tests.sh up to 1.1.1.11
	external/mpl/bind/dist/bin/tests/system/statschannel/generic.py up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/statschannel/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/statschannel/tests.sh up to 1.1.1.15
	external/mpl/bind/dist/bin/tests/system/statschannel/tests_json.py up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/statschannel/tests_sh_statschannel.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/statschannel/tests_xml.py up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/statschannel/ns2/sign.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/stress/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/stress/tests_stress_update.py up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/stub/tests_stub.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/synthfromdnssec/setup.sh up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/synthfromdnssec/tests.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tests/system/synthfromdnssec/tests_sh_synthfromdnssec.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/synthfromdnssec/ns1/root.db.in up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/synthfromdnssec/ns1/sign.sh up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/tcp/tests_tcp.py up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/tcp/ans6/ans.py up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/timeouts/setup.sh up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/timeouts/tests_tcp_timeouts.py up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/tools/tests_tools_nsec3hash.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/tsig/tests_badtime.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/tsig/tests_tsig_hypothesis.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/tsiggss/setup.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/tsiggss/tests_isc_spnego_flaws.py up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/ttl/tests_cache_ttl.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/upforwd/setup.sh up to 1.1.1.12
	external/mpl/bind/dist/bin/tests/system/upforwd/tests.sh up to 1.1.1.10
	external/mpl/bind/dist/bin/tests/system/upforwd/tests_sh_upforwd.py up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/verify/tests_verify.py up to 1.1.1.4
	external/mpl/bind/dist/bin/tests/system/views/setup.sh up to 1.1.1.10
	external/mpl/bind/dist/bin/tests/system/views/tests.sh up to 1.1.1.11
	external/mpl/bind/dist/bin/tests/system/wildcard/setup.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/wildcard/tests_wildcard.py up to 1.1.1.6
	external/mpl/bind/dist/bin/tests/system/xfer/knowngood.mapped up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/xfer/setup.sh up to 1.1.1.9
	external/mpl/bind/dist/bin/tests/system/xfer/ans9/ans.py up to 1.1.1.3
	external/mpl/bind/dist/bin/tests/system/xferquota/setup.py up to 1.1.1.2
	external/mpl/bind/dist/bin/tests/system/xferquota/setup.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/xferquota/tests_xferquota.py up to 1.1.1.5
	external/mpl/bind/dist/bin/tests/system/zero/setup.sh up to 1.1.1.7
	external/mpl/bind/dist/bin/tests/system/zonechecks/setup.sh up to 1.1.1.8
	external/mpl/bind/dist/bin/tools/Makefile.in    up to 1.1.1.13
	external/mpl/bind/dist/bin/tools/mdig.c         up to 1.16
	external/mpl/bind/dist/contrib/gitchangelog/gitchangelog.py up to 1.1.1.4
	external/mpl/bind/dist/doc/Makefile.in          up to 1.1.1.8
	external/mpl/bind/dist/doc/arm/Makefile.in      up to 1.1.1.12
	external/mpl/bind/dist/doc/arm/advanced.inc.rst up to 1.1.1.3
	external/mpl/bind/dist/doc/arm/changelog.rst    up to 1.1.1.6
	external/mpl/bind/dist/doc/arm/conf.py          up to 1.1.1.10
	external/mpl/bind/dist/doc/arm/index.rst        up to 1.1.1.6
	external/mpl/bind/dist/doc/arm/notes.rst        up to 1.1.1.14
	external/mpl/bind/dist/doc/arm/pkcs11.inc.rst   up to 1.1.1.4
	external/mpl/bind/dist/doc/arm/platforms.inc.rst up to 1.1.1.6
	external/mpl/bind/dist/doc/arm/reference.rst    up to 1.1.1.14
	external/mpl/bind/dist/doc/arm/troubleshooting.inc.rst up to 1.1.1.3
	external/mpl/bind/dist/doc/arm/_ext/iscconf.py  up to 1.1.1.4
	external/mpl/bind/dist/doc/arm/_ext/mergegrammar.py up to 1.1.1.2
	external/mpl/bind/dist/doc/arm/_ext/namedconf.py up to 1.1.1.2
	external/mpl/bind/dist/doc/dnssec-guide/recipes.rst up to 1.1.1.7
	external/mpl/bind/dist/doc/man/Makefile.in      up to 1.1.1.9
	external/mpl/bind/dist/doc/man/arpaname.1in     up to 1.1.1.8
	external/mpl/bind/dist/doc/man/conf.py          up to 1.1.1.8
	external/mpl/bind/dist/doc/man/ddns-confgen.8in up to 1.1.1.11
	external/mpl/bind/dist/doc/man/delv.1in         up to 1.1.1.11
	external/mpl/bind/dist/doc/man/dig.1in          up to 1.1.1.13
	external/mpl/bind/dist/doc/man/dnssec-cds.1in   up to 1.1.1.6
	external/mpl/bind/dist/doc/man/dnssec-dsfromkey.1in up to 1.1.1.6
	external/mpl/bind/dist/doc/man/dnssec-importkey.1in up to 1.1.1.6
	external/mpl/bind/dist/doc/man/dnssec-keyfromlabel.1in up to 1.1.1.6
	external/mpl/bind/dist/doc/man/dnssec-keygen.1in up to 1.1.1.6
	external/mpl/bind/dist/doc/man/dnssec-ksr.1in   up to 1.1.1.4
	external/mpl/bind/dist/doc/man/dnssec-revoke.1in up to 1.1.1.6
	external/mpl/bind/dist/doc/man/dnssec-settime.1in up to 1.1.1.6
	external/mpl/bind/dist/doc/man/dnssec-signzone.1in up to 1.1.1.6
	external/mpl/bind/dist/doc/man/dnssec-verify.1in up to 1.1.1.6
	external/mpl/bind/dist/doc/man/dnstap-read.1in  up to 1.1.1.10
	external/mpl/bind/dist/doc/man/filter-a.8in     up to 1.1.1.6
	external/mpl/bind/dist/doc/man/filter-aaaa.8in  up to 1.1.1.11
	external/mpl/bind/dist/doc/man/host.1in         up to 1.1.1.11
	external/mpl/bind/dist/doc/man/mdig.1in         up to 1.1.1.11
	external/mpl/bind/dist/doc/man/named-checkconf.1in up to 1.1.1.6
	external/mpl/bind/dist/doc/man/named-checkzone.1in up to 1.1.1.6
	external/mpl/bind/dist/doc/man/named-compilezone.1in up to 1.8
	external/mpl/bind/dist/doc/man/named-journalprint.1in up to 1.1.1.6
	external/mpl/bind/dist/doc/man/named-nzd2nzf.1in up to 1.1.1.6
	external/mpl/bind/dist/doc/man/named-rrchecker.1in up to 1.1.1.11
	external/mpl/bind/dist/doc/man/named.8in        up to 1.1.1.10
	external/mpl/bind/dist/doc/man/named.conf.5in   up to 1.1.1.13
	external/mpl/bind/dist/doc/man/nsec3hash.1in    up to 1.1.1.5
	external/mpl/bind/dist/doc/man/nslookup.1in     up to 1.1.1.10
	external/mpl/bind/dist/doc/man/nsupdate.1in     up to 1.1.1.10
	external/mpl/bind/dist/doc/man/rndc-confgen.8in up to 1.1.1.10
	external/mpl/bind/dist/doc/man/rndc.8in         up to 1.1.1.12
	external/mpl/bind/dist/doc/man/rndc.conf.5in    up to 1.1.1.11
	external/mpl/bind/dist/doc/man/tsig-keygen.8in  up to 1.1.1.9
	external/mpl/bind/dist/doc/misc/Makefile.in     up to 1.1.1.12
	external/mpl/bind/dist/doc/misc/checkgrammar.py up to 1.1.1.2
	external/mpl/bind/dist/doc/misc/options         up to 1.1.1.18
	external/mpl/bind/dist/doc/misc/parsegrammar.py up to 1.1.1.2
	external/mpl/bind/dist/fuzz/Makefile.in         up to 1.1.1.10
	external/mpl/bind/dist/fuzz/dns_qpkey_name.c    up to 1.3
	external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.c up to 1.9
	external/mpl/bind/dist/fuzz/fuzz.h              up to 1.9
	external/mpl/bind/dist/fuzz/isc_lex_getmastertoken.c up to 1.4
	external/mpl/bind/dist/fuzz/isc_lex_gettoken.c  up to 1.4
	external/mpl/bind/dist/lib/Makefile.in          up to 1.1.1.8
	external/mpl/bind/dist/lib/dns/Makefile.am      up to 1.1.1.4
	external/mpl/bind/dist/lib/dns/Makefile.in      up to 1.1.1.16
	external/mpl/bind/dist/lib/dns/acl.c            up to 1.11
	external/mpl/bind/dist/lib/dns/adb.c            up to 1.17
	external/mpl/bind/dist/lib/dns/catz.c           up to 1.16
	external/mpl/bind/dist/lib/dns/client.c         up to 1.18
	external/mpl/bind/dist/lib/dns/db.c             up to 1.14
	external/mpl/bind/dist/lib/dns/dbiterator.c     up to 1.8
	external/mpl/bind/dist/lib/dns/diff.c           up to 1.12
	external/mpl/bind/dist/lib/dns/dispatch.c       up to 1.14
	external/mpl/bind/dist/lib/dns/dnssec.c         up to 1.19
	external/mpl/bind/dist/lib/dns/dnstap.c         up to 1.16
	external/mpl/bind/dist/lib/dns/dst_api.c        up to 1.18
	external/mpl/bind/dist/lib/dns/dst_internal.h   up to 1.11
	external/mpl/bind/dist/lib/dns/dst_parse.c      up to 1.14
	external/mpl/bind/dist/lib/dns/dyndb.c          up to 1.13
	external/mpl/bind/dist/lib/dns/gssapictx.c      up to 1.13
	external/mpl/bind/dist/lib/dns/journal.c        up to 1.15
	external/mpl/bind/dist/lib/dns/kasp.c           up to 1.9
	external/mpl/bind/dist/lib/dns/keymgr.c         up to 1.16
	external/mpl/bind/dist/lib/dns/keystore.c       up to 1.4
	external/mpl/bind/dist/lib/dns/keytable.c       up to 1.12
	external/mpl/bind/dist/lib/dns/master.c         up to 1.15
	external/mpl/bind/dist/lib/dns/masterdump.c     up to 1.19
	external/mpl/bind/dist/lib/dns/message.c        up to 1.22
	external/mpl/bind/dist/lib/dns/nsec3.c          up to 1.17
	external/mpl/bind/dist/lib/dns/nta.c            up to 1.14
	external/mpl/bind/dist/lib/dns/openssl_link.c   up to 1.13
	external/mpl/bind/dist/lib/dns/opensslecdsa_link.c up to 1.10
	external/mpl/bind/dist/lib/dns/openssleddsa_link.c up to 1.12
	external/mpl/bind/dist/lib/dns/opensslrsa_link.c up to 1.13
	external/mpl/bind/dist/lib/dns/private.c        up to 1.12
	external/mpl/bind/dist/lib/dns/qp.c             up to 1.5
	external/mpl/bind/dist/lib/dns/qp_p.h           up to 1.3
	external/mpl/bind/dist/lib/dns/qpcache.c        up to 1.6
	external/mpl/bind/dist/lib/dns/qpzone.c         up to 1.5
	external/mpl/bind/dist/lib/dns/rbt-cachedb.c    up to 1.5
	external/mpl/bind/dist/lib/dns/rbt-zonedb.c     up to 1.5
	external/mpl/bind/dist/lib/dns/rbt.c            up to 1.18
	external/mpl/bind/dist/lib/dns/rbtdb.c          up to 1.24
	external/mpl/bind/dist/lib/dns/rcode.c          up to 1.15
	external/mpl/bind/dist/lib/dns/rdata.c          up to 1.19
	external/mpl/bind/dist/lib/dns/rdataset.c       up to 1.13
	external/mpl/bind/dist/lib/dns/rdataslab.c      up to 1.13
	external/mpl/bind/dist/lib/dns/request.c        up to 1.14
	external/mpl/bind/dist/lib/dns/resconf.c        up to 1.4
	external/mpl/bind/dist/lib/dns/resolver.c       up to 1.25
	external/mpl/bind/dist/lib/dns/rpz.c            up to 1.18
	external/mpl/bind/dist/lib/dns/sdlz.c           up to 1.15
	external/mpl/bind/dist/lib/dns/skr.c            up to 1.4
	external/mpl/bind/dist/lib/dns/time.c           up to 1.10
	external/mpl/bind/dist/lib/dns/tkey.c           up to 1.17
	external/mpl/bind/dist/lib/dns/ttl.c            up to 1.13
	external/mpl/bind/dist/lib/dns/update.c         up to 1.16
	external/mpl/bind/dist/lib/dns/validator.c      up to 1.20
	external/mpl/bind/dist/lib/dns/view.c           up to 1.21
	external/mpl/bind/dist/lib/dns/xfrin.c          up to 1.21
	external/mpl/bind/dist/lib/dns/zone.c           up to 1.27
	external/mpl/bind/dist/lib/dns/include/dns/adb.h up to 1.11
	external/mpl/bind/dist/lib/dns/include/dns/callbacks.h up to 1.8
	external/mpl/bind/dist/lib/dns/include/dns/catz.h up to 1.10
	external/mpl/bind/dist/lib/dns/include/dns/db.h up to 1.15
	external/mpl/bind/dist/lib/dns/include/dns/dbiterator.h up to 1.9
	external/mpl/bind/dist/lib/dns/include/dns/diff.h up to 1.9
	external/mpl/bind/dist/lib/dns/include/dns/dnssec.h up to 1.13
	external/mpl/bind/dist/lib/dns/include/dns/dnstap.h up to 1.11
	external/mpl/bind/dist/lib/dns/include/dns/ds.h up to 1.10
	external/mpl/bind/dist/lib/dns/include/dns/kasp.h up to 1.9
	external/mpl/bind/dist/lib/dns/include/dns/keymgr.h up to 1.11
	external/mpl/bind/dist/lib/dns/include/dns/librpz.h up to 1.12
	external/mpl/bind/dist/lib/dns/include/dns/message.h up to 1.18
	external/mpl/bind/dist/lib/dns/include/dns/nsec3.h up to 1.10
	external/mpl/bind/dist/lib/dns/include/dns/qp.h up to 1.4
	external/mpl/bind/dist/lib/dns/include/dns/rdataset.h up to 1.16
	external/mpl/bind/dist/lib/dns/include/dns/resolver.h up to 1.12
	external/mpl/bind/dist/lib/dns/include/dns/rpz.h up to 1.13
	external/mpl/bind/dist/lib/dns/include/dns/rrl.h up to 1.9
	external/mpl/bind/dist/lib/dns/include/dns/sdlz.h up to 1.9
	external/mpl/bind/dist/lib/dns/include/dns/tkey.h up to 1.10
	external/mpl/bind/dist/lib/dns/include/dns/types.h up to 1.12
	external/mpl/bind/dist/lib/dns/include/dns/validator.h up to 1.14
	external/mpl/bind/dist/lib/dns/include/dns/zone.h up to 1.16
	external/mpl/bind/dist/lib/dns/include/dst/dst.h up to 1.14
	external/mpl/bind/dist/lib/dns/rdata/any_255/tsig_250.c up to 1.11
	external/mpl/bind/dist/lib/dns/rdata/ch_3/a_1.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/afsdb_18.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/amtrelay_260.c up to 1.9
	external/mpl/bind/dist/lib/dns/rdata/generic/avc_258.c up to 1.11
	external/mpl/bind/dist/lib/dns/rdata/generic/caa_257.c up to 1.11
	external/mpl/bind/dist/lib/dns/rdata/generic/cdnskey_60.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/cds_59.c up to 1.11
	external/mpl/bind/dist/lib/dns/rdata/generic/cert_37.c up to 1.12
	external/mpl/bind/dist/lib/dns/rdata/generic/cname_5.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/csync_62.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/dlv_32769.c up to 1.11
	external/mpl/bind/dist/lib/dns/rdata/generic/dname_39.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/dnskey_48.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/doa_259.c up to 1.11
	external/mpl/bind/dist/lib/dns/rdata/generic/ds_43.c up to 1.13
	external/mpl/bind/dist/lib/dns/rdata/generic/eui48_108.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/eui64_109.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/gpos_27.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/hinfo_13.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/hip_55.c up to 1.11
	external/mpl/bind/dist/lib/dns/rdata/generic/ipseckey_45.c up to 1.13
	external/mpl/bind/dist/lib/dns/rdata/generic/isdn_20.c up to 1.11
	external/mpl/bind/dist/lib/dns/rdata/generic/key_25.c up to 1.16
	external/mpl/bind/dist/lib/dns/rdata/generic/keydata_65533.c up to 1.13
	external/mpl/bind/dist/lib/dns/rdata/generic/l32_105.c up to 1.11
	external/mpl/bind/dist/lib/dns/rdata/generic/l64_106.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/loc_29.c up to 1.12
	external/mpl/bind/dist/lib/dns/rdata/generic/lp_107.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/mb_7.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/md_3.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/mf_4.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/mg_8.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/minfo_14.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/mr_9.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/mx_15.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/naptr_35.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/nid_104.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/ninfo_56.c up to 1.11
	external/mpl/bind/dist/lib/dns/rdata/generic/ns_2.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/nsec3_50.c up to 1.12
	external/mpl/bind/dist/lib/dns/rdata/generic/nsec3param_51.c up to 1.11
	external/mpl/bind/dist/lib/dns/rdata/generic/nsec_47.c up to 1.11
	external/mpl/bind/dist/lib/dns/rdata/generic/null_10.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/nxt_30.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/openpgpkey_61.c up to 1.12
	external/mpl/bind/dist/lib/dns/rdata/generic/opt_41.c up to 1.15
	external/mpl/bind/dist/lib/dns/rdata/generic/ptr_12.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/resinfo_261.c up to 1.4
	external/mpl/bind/dist/lib/dns/rdata/generic/rkey_57.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/rp_17.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/rrsig_46.c up to 1.13
	external/mpl/bind/dist/lib/dns/rdata/generic/rt_21.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/sig_24.c up to 1.13
	external/mpl/bind/dist/lib/dns/rdata/generic/sink_40.c up to 1.11
	external/mpl/bind/dist/lib/dns/rdata/generic/smimea_53.c up to 1.11
	external/mpl/bind/dist/lib/dns/rdata/generic/soa_6.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/spf_99.c up to 1.11
	external/mpl/bind/dist/lib/dns/rdata/generic/sshfp_44.c up to 1.12
	external/mpl/bind/dist/lib/dns/rdata/generic/ta_32768.c up to 1.11
	external/mpl/bind/dist/lib/dns/rdata/generic/talink_58.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/tkey_249.c up to 1.11
	external/mpl/bind/dist/lib/dns/rdata/generic/tlsa_52.c up to 1.13
	external/mpl/bind/dist/lib/dns/rdata/generic/txt_16.c up to 1.12
	external/mpl/bind/dist/lib/dns/rdata/generic/uri_256.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/generic/wallet_262.c up to 1.3
	external/mpl/bind/dist/lib/dns/rdata/generic/x25_19.c up to 1.11
	external/mpl/bind/dist/lib/dns/rdata/generic/zonemd_63.c up to 1.8
	external/mpl/bind/dist/lib/dns/rdata/hs_4/a_1.c up to 1.11
	external/mpl/bind/dist/lib/dns/rdata/in_1/a6_38.c up to 1.11
	external/mpl/bind/dist/lib/dns/rdata/in_1/a_1.c up to 1.12
	external/mpl/bind/dist/lib/dns/rdata/in_1/aaaa_28.c up to 1.12
	external/mpl/bind/dist/lib/dns/rdata/in_1/apl_42.c up to 1.12
	external/mpl/bind/dist/lib/dns/rdata/in_1/atma_34.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/in_1/dhcid_49.c up to 1.12
	external/mpl/bind/dist/lib/dns/rdata/in_1/eid_31.c up to 1.12
	external/mpl/bind/dist/lib/dns/rdata/in_1/kx_36.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/in_1/nimloc_32.c up to 1.12
	external/mpl/bind/dist/lib/dns/rdata/in_1/nsap-ptr_23.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/in_1/nsap_22.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/in_1/px_26.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/in_1/srv_33.c up to 1.10
	external/mpl/bind/dist/lib/dns/rdata/in_1/svcb_64.c up to 1.7
	external/mpl/bind/dist/lib/dns/rdata/in_1/wks_11.c up to 1.12
	external/mpl/bind/dist/lib/isc/Makefile.am      up to 1.1.1.3
	external/mpl/bind/dist/lib/isc/Makefile.in      up to 1.1.1.15
	external/mpl/bind/dist/lib/isc/base32.c         up to 1.10
	external/mpl/bind/dist/lib/isc/base64.c         up to 1.11
	external/mpl/bind/dist/lib/isc/file.c           up to 1.4
	external/mpl/bind/dist/lib/isc/hash.c           up to 1.10
	external/mpl/bind/dist/lib/isc/hashmap.c        up to 1.3
	external/mpl/bind/dist/lib/isc/hex.c            up to 1.11
	external/mpl/bind/dist/lib/isc/httpd.c          up to 1.12
	external/mpl/bind/dist/lib/isc/jemalloc_shim.h  up to 1.6
	external/mpl/bind/dist/lib/isc/mem.c            up to 1.19
	external/mpl/bind/dist/lib/isc/net.c            up to 1.5
	external/mpl/bind/dist/lib/isc/os.c             up to 1.6
	external/mpl/bind/dist/lib/isc/picohttpparser.c up to 1.6
	external/mpl/bind/dist/lib/isc/radix.c          up to 1.12
	external/mpl/bind/dist/lib/isc/random.c         up to 1.9
	external/mpl/bind/dist/lib/isc/result.c         up to 1.15
	external/mpl/bind/dist/lib/isc/tls.c            up to 1.8
	external/mpl/bind/dist/lib/isc/uv.c             up to 1.3
	external/mpl/bind/dist/lib/isc/work.c           up to 1.4
	external/mpl/bind/dist/lib/isc/include/isc/attributes.h up to 1.5
	external/mpl/bind/dist/lib/isc/include/isc/base64.h up to 1.9
	external/mpl/bind/dist/lib/isc/include/isc/hex.h up to 1.9
	external/mpl/bind/dist/lib/isc/include/isc/iterated_hash.h up to 1.8
	external/mpl/bind/dist/lib/isc/include/isc/log.h up to 1.10
	external/mpl/bind/dist/lib/isc/include/isc/net.h up to 1.4
	external/mpl/bind/dist/lib/isc/include/isc/netmgr.h up to 1.12
	external/mpl/bind/dist/lib/isc/include/isc/nonce.h up to 1.6
	external/mpl/bind/dist/lib/isc/include/isc/os.h up to 1.8
	external/mpl/bind/dist/lib/isc/include/isc/overflow.h up to 1.3
	external/mpl/bind/dist/lib/isc/include/isc/queue.h up to 1.9
	external/mpl/bind/dist/lib/isc/include/isc/quota.h up to 1.12
	external/mpl/bind/dist/lib/isc/include/isc/random.h up to 1.7
	external/mpl/bind/dist/lib/isc/include/isc/refcount.h up to 1.9
	external/mpl/bind/dist/lib/isc/include/isc/result.h up to 1.14
	external/mpl/bind/dist/lib/isc/include/isc/types.h up to 1.15
	external/mpl/bind/dist/lib/isc/include/isc/urcu.h up to 1.3
	external/mpl/bind/dist/lib/isc/include/isc/util.h up to 1.19
	external/mpl/bind/dist/lib/isc/netmgr/http.c    up to 1.7
	external/mpl/bind/dist/lib/isc/netmgr/netmgr-int.h up to 1.15
	external/mpl/bind/dist/lib/isc/netmgr/netmgr.c  up to 1.16
	external/mpl/bind/dist/lib/isc/netmgr/socket.c  up to 1.3
	external/mpl/bind/dist/lib/isc/netmgr/streamdns.c up to 1.4
	external/mpl/bind/dist/lib/isc/netmgr/tcp.c     up to 1.14
	external/mpl/bind/dist/lib/isc/netmgr/tlsstream.c up to 1.6
	external/mpl/bind/dist/lib/isccc/Makefile.in    up to 1.1.1.12
	external/mpl/bind/dist/lib/isccfg/Makefile.in   up to 1.1.1.12
	external/mpl/bind/dist/lib/isccfg/check.c       up to 1.5
	external/mpl/bind/dist/lib/isccfg/kaspconf.c    up to 1.12
	external/mpl/bind/dist/lib/isccfg/namedconf.c   up to 1.20
	external/mpl/bind/dist/lib/isccfg/parser.c      up to 1.17
	external/mpl/bind/dist/lib/isccfg/include/isccfg/check.h up to 1.3
	external/mpl/bind/dist/lib/isccfg/include/isccfg/kaspconf.h up to 1.7
	external/mpl/bind/dist/lib/ns/Makefile.in       up to 1.12
	external/mpl/bind/dist/lib/ns/client.c          up to 1.28
	external/mpl/bind/dist/lib/ns/hooks.c           up to 1.12
	external/mpl/bind/dist/lib/ns/query.c           up to 1.27
	external/mpl/bind/dist/lib/ns/update.c          up to 1.20
	external/mpl/bind/dist/lib/ns/xfrout.c          up to 1.17
	external/mpl/bind/dist/lib/ns/include/ns/client.h up to 1.21
	external/mpl/bind/dist/lib/ns/include/ns/query.h up to 1.11
	external/mpl/bind/dist/lib/ns/include/ns/server.h up to 1.12
	external/mpl/bind/dist/m4/libtool.m4            up to 1.1.1.5
	external/mpl/bind/dist/m4/ltoptions.m4          up to 1.1.1.3
	external/mpl/bind/dist/m4/ltsugar.m4            up to 1.1.1.4
	external/mpl/bind/dist/m4/ltversion.m4          up to 1.1.1.3
	external/mpl/bind/dist/m4/lt~obsolete.m4        up to 1.1.1.4
	external/mpl/bind/dist/tests/Makefile.in        up to 1.1.1.6
	external/mpl/bind/dist/tests/bench/Makefile.in  up to 1.1.1.3
	external/mpl/bind/dist/tests/bench/iterated_hash.c up to 1.3
	external/mpl/bind/dist/tests/bench/load-names.c up to 1.3
	external/mpl/bind/dist/tests/dns/Makefile.in    up to 1.1.1.6
	external/mpl/bind/dist/tests/dns/db_test.c      up to 1.5
	external/mpl/bind/dist/tests/dns/dbiterator_test.c up to 1.5
	external/mpl/bind/dist/tests/dns/diff_test.c    up to 1.3
	external/mpl/bind/dist/tests/dns/dnstap_test.c  up to 1.4
	external/mpl/bind/dist/tests/dns/ede_test.c     up to 1.3
	external/mpl/bind/dist/tests/dns/master_test.c  up to 1.4
	external/mpl/bind/dist/tests/dns/qp_test.c      up to 1.3
	external/mpl/bind/dist/tests/dns/qpdb_test.c    up to 1.3
	external/mpl/bind/dist/tests/dns/qpmulti_test.c up to 1.3
	external/mpl/bind/dist/tests/dns/qpzone_test.c  up to 1.5
	external/mpl/bind/dist/tests/dns/rdata_test.c   up to 1.7
	external/mpl/bind/dist/tests/dns/resolver_test.c up to 1.4
	external/mpl/bind/dist/tests/dns/skr_test.c     up to 1.4
	external/mpl/bind/dist/tests/dns/tsig_test.c    up to 1.7
	external/mpl/bind/dist/tests/dns/update_test.c  up to 1.4
	external/mpl/bind/dist/tests/include/tests/isc.h up to 1.6
	external/mpl/bind/dist/tests/isc/Makefile.am    up to 1.1.1.3
	external/mpl/bind/dist/tests/isc/Makefile.in    up to 1.1.1.5
	external/mpl/bind/dist/tests/isc/file_test.c    up to 1.4
	external/mpl/bind/dist/tests/isc/histo_test.c   up to 1.3
	external/mpl/bind/dist/tests/isc/mem_test.c     up to 1.5
	external/mpl/bind/dist/tests/isc/mutex_test.c   up to 1.3
	external/mpl/bind/dist/tests/isc/regex_test.c   up to 1.4
	external/mpl/bind/dist/tests/isc/rwlock_test.c  up to 1.4
	external/mpl/bind/dist/tests/isc/spinlock_test.c up to 1.3
	external/mpl/bind/dist/tests/isc/work_test.c    up to 1.3
	external/mpl/bind/dist/tests/isccfg/Makefile.in up to 1.1.1.6
	external/mpl/bind/dist/tests/libtest/Makefile.in up to 1.1.1.5
	external/mpl/bind/dist/tests/libtest/qp.c       up to 1.3
	external/mpl/bind/dist/tests/ns/Makefile.in     up to 1.1.1.5
	external/mpl/bind/include/config.h              up to 1.26
	external/mpl/bind/include/dns/code.h            up to 1.12
	external/mpl/bind/include/dns/enumclass.h       up to 1.9
	external/mpl/bind/include/dns/enumtype.h        up to 1.12
	external/mpl/bind/include/dns/probes.h          up to 1.3
	external/mpl/bind/include/dns/rdatastruct.h     up to 1.14
	external/mpl/bind/include/ns/pfilter.h          up to 1.2
	external/mpl/bind/lib/Makefile.inc              up to 1.4
	external/mpl/bind/lib/libdns/dns.common.expsym  up to 1.7
	external/mpl/bind/lib/libdns/shlib_version      up to 1.19
	external/mpl/bind/lib/libisc/Makefile           up to 1.25
	external/mpl/bind/lib/libisccfg/isccfg.expsym   up to 1.3
	external/mpl/bind/lib/libisccfg/shlib_version   up to 1.16

Update bind to version 9.20.22/MPL.
@
text
@a0 34
; Copyright (C) Internet Systems Consortium, Inc. ("ISC")
;
; SPDX-License-Identifier: MPL-2.0
;
; This Source Code Form is subject to the terms of the Mozilla Public
; License, v. 2.0.  If a copy of the MPL was not distributed with this
; file, you can obtain one at https://mozilla.org/MPL/2.0/.
;
; See the COPYRIGHT file distributed with this work for additional
; information regarding copyright ownership.

$TTL 300
@@fqdn@@		IN	SOA  mname1. . (
			1       ; serial
			20      ; refresh (20 seconds)
			20      ; retry (20 seconds)
			1814400 ; expire (3 weeks)
			3600    ; minimum (1 hour)
			)

			NS	ns3
ns3			A	10.53.0.3

a			A	10.0.0.1
b			A	10.0.0.2
c			A	10.0.0.3

{% for dnskey in dnskeys %}
@@dnskey@@
{% endfor %}

{% for privaterr in privaterrs %}
@@privaterr@@
{% endfor %}
@


