mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 08:40: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}' {} +
18 lines
210 B
Text
18 lines
210 B
Text
/*
|
|
* inline-signing not allowed at view level.
|
|
*/
|
|
view "a" {
|
|
inline-signing yes;
|
|
|
|
zone "." {
|
|
type primary;
|
|
file "root.db.signed";
|
|
};
|
|
};
|
|
|
|
view "b" {
|
|
zone "." {
|
|
type primary;
|
|
file "root.db";
|
|
};
|
|
};
|