mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-10 13:10:00 -04:00
45 lines
1.4 KiB
Bash
45 lines
1.4 KiB
Bash
#!/bin/sh
|
|
|
|
# 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.
|
|
|
|
. ../conf.sh
|
|
|
|
dnspython_genzone() (
|
|
servers="$@"
|
|
# Drop unusual RR sets and RR types (AMTRELAY, GPOS, URI, apl02) dnspython
|
|
# can't handle. For more information see
|
|
# https://github.com/rthalley/dnspython/issues/1034#issuecomment-1896541899.
|
|
# - BRID and HHIT are not supported by dnspython at all.
|
|
# - dnspython v2.8.0 adds support for DSYNC RR type
|
|
# - dnspython v2.7.0 adds support for RESINFO and WALLET RR types
|
|
$SHELL "${TOP_SRCDIR}/bin/tests/system/genzone.sh" $servers \
|
|
| sed \
|
|
-e '/AMTRELAY.*\# 2 0004/d' \
|
|
-e '/BRID/d' \
|
|
-e '/DSYNC/d' \
|
|
-e '/GPOS.*"" "" ""/d' \
|
|
-e '/HHIT/d' \
|
|
-e '/RESINFO/d' \
|
|
-e '/URI.*30 40 ""/d' \
|
|
-e '/WALLET/d' \
|
|
-e '/apl02/d' \
|
|
| tr "\t" " "
|
|
)
|
|
|
|
dnspython_genzone 1 6 7 >ns1/sec.db
|
|
dnspython_genzone 1 6 7 >ns1/edns-expire.db
|
|
dnspython_genzone 2 3 >ns2/example.db
|
|
dnspython_genzone 2 3 >ns2/tsigzone.db
|
|
dnspython_genzone 6 3 >ns6/primary.db
|
|
dnspython_genzone 7 >ns7/primary2.db
|
|
|
|
touch -t 200101010000 ns2/sec.db
|