mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
faa3423d1a
Signed-off-by: Amitay Isaacs <amitay@gmail.com> Reviewed-by: Matthieu Patou <mat@matws.net> Autobuild-User(master): Amitay Isaacs <amitay@samba.org> Autobuild-Date(master): Sat Oct 25 05:42:19 CEST 2014 on sn-devel-104
23 lines
633 B
Plaintext
23 lines
633 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.x
|
|
${BIND9_8} database "dlopen ${MODULESDIR}/bind9/dlz_bind9.so";
|
|
|
|
# For BIND 9.9.x
|
|
${BIND9_9} database "dlopen ${MODULESDIR}/bind9/dlz_bind9_9.so";
|
|
|
|
# For BIND 9.10.x
|
|
${BIND9_10} database "dlopen ${MODULESDIR}/bind9/dlz_bind9_10.so";
|
|
};
|
|
|