mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
cff0f8e75f
(small corrections and TODO added following Jelmer's review by abartlet) Signed-off-by: Garming Sam <garming@catalyst.net.nz> Change-Id: Iba9a709641dad9f2ae05df0b26ac4cd2ebfc84f0 Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Jelmer Vernooij <jelmer@samba.org> Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Sun Mar 9 02:52:50 CET 2014 on sn-devel-104
20 lines
537 B
Plaintext
20 lines
537 B
Plaintext
# This DNS configuration is for BIND 9.8.0 or later with dlz_dlopen support.
|
|
#
|
|
# This file should be included in your main BIND configuration file
|
|
#
|
|
# For example with
|
|
# include "${NAMED_CONF}";
|
|
|
|
#
|
|
# This configures dynamically loadable zones (DLZ) from AD schema
|
|
# Uncomment only single database line, depending on your BIND version
|
|
#
|
|
dlz "AD DNS Zone" {
|
|
# For BIND 9.8.0
|
|
${BIND98} database "dlopen ${MODULESDIR}/bind9/dlz_bind9.so";
|
|
|
|
# For BIND 9.9.0
|
|
${BIND99} database "dlopen ${MODULESDIR}/bind9/dlz_bind9_9.so";
|
|
};
|
|
|