mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 00: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}' {} +
7 lines
91 B
Text
7 lines
91 B
Text
acl a { 127.0.0.1; ::1; };
|
|
acl b { a; };
|
|
acl c { !b; };
|
|
|
|
options {
|
|
allow-query { c; };
|
|
};
|