mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 03:50:00 -04:00
The removal was done with the following commands:
find bin/tests/system/ -type f -name "*.conf" -exec sed -i '1,12d; 13{/^$/d}' {} +
find bin/tests/system/ -type f -name "*.conf.*" -exec sed -i '1,12d; 13{/^$/d}' {} +
20 lines
251 B
Text
20 lines
251 B
Text
view "first" {
|
|
match-clients {
|
|
"none";
|
|
};
|
|
zone "clone" {
|
|
type primary;
|
|
file "xxx";
|
|
};
|
|
};
|
|
view "second" {
|
|
match-clients {
|
|
"any";
|
|
};
|
|
zone "clone" {
|
|
in-view "first";
|
|
forward only;
|
|
forwarders { 10.0.0.100; };
|
|
type secondary;
|
|
};
|
|
};
|