bind9/bin/tests/system/checkconf/inline-good.conf
Nicki Křížek d738b907dc Remove license headers from named.conf test files
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}' {} +
2026-03-31 17:57:58 +02:00

15 lines
424 B
Text

acl "transferees" {};
remote-servers "stealthPrimaries" {127.0.0.1;};
remote-servers "publicSecondaries" {127.0.0.1;};
zone "example.net" {
type secondary;
file "/var/cache/bind/example.net.db";
key-directory "/var/lib/bind/example.net";
dnssec-policy default;
inline-signing yes;
primaries { stealthPrimaries; };
notify explicit;
also-notify { publicSecondaries; };
allow-transfer { localhost; transferees; };
};