mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 00: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}' {} +
16 lines
210 B
Text
16 lines
210 B
Text
/*
|
|
* key-directory defined but doesn't exist.
|
|
*/
|
|
options {
|
|
directory ".";
|
|
};
|
|
|
|
key-store "test" {
|
|
directory "test.keystoredir";
|
|
};
|
|
|
|
zone dummy {
|
|
type primary;
|
|
file "xxxx";
|
|
key-directory "test.keydir";
|
|
};
|