mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-19 16:08:53 -04:00
there were some duplicated syntax checks in named_zone_configure() that are no longer needed, now that we perform those same checks using isccfg_check_zoneconf(). there were also some syntax checks that were *only* in named_zone_configure(), which have now been moved to isccfg_check_zoneconf(). test cases for them have been added to the checkconf system test.
19 lines
549 B
Text
19 lines
549 B
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.
|
|
*/
|
|
|
|
zone "clone" {
|
|
type secondary;
|
|
primaries { ::1; };
|
|
file "xxx";
|
|
max-journal-size 3g;
|
|
};
|