mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-19 07:08:52 -04:00
A "template" statement can contain the same configuration clauses
as a "zone" statement. A "zone" statement can now reference a
template, and all the clauses in that template will be used as
default values for the zone. For example:
template primary {
type primary;
file "$name.db";
initial-file "primary.db";
};
zone example.com {
template primary;
file "different-name.db"; // overrides the template
};
|
||
|---|---|---|
| .. | ||
| .gitignore | ||
| added.db | ||
| default.nzf.in | ||
| hints.db | ||
| inline.db | ||
| named1.conf.in | ||
| named2.conf.in | ||
| named3.conf.in | ||
| normal.db | ||
| previous.db | ||
| redirect.db.1 | ||
| redirect.db.2 | ||