summaryrefslogtreecommitdiff
path: root/source4/dns_server/wscript_build
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-12-06 14:12:07 +1100
committerAndrew Tridgell <tridge@samba.org>2010-12-06 05:48:30 +0100
commit9f6f1b009866b8f697bcfad8b1451395732b78c1 (patch)
treef815444e650f33e61fa85d8e4b242771973b93eb /source4/dns_server/wscript_build
parent521e96ca751df072e5c71d3844ed5708b79ac69d (diff)
downloadsamba-9f6f1b009866b8f697bcfad8b1451395732b78c1.tar.gz
samba-9f6f1b009866b8f697bcfad8b1451395732b78c1.tar.bz2
samba-9f6f1b009866b8f697bcfad8b1451395732b78c1.zip
s4-dns: a dlz module for bind9
this module can be loaded into bind9 if bind9 has been built with the --with-dlz-dlopen option. It provides access bind9 access to the DNS records in SAMDB. You can then start bind9 with this in named.conf: dlz "Samba zone" { database "dlopen /usr/lib/samba/modules/bind9/dlz_bind9.so"; }; See http://git.samba.org/tridge/bind9.git for a bind9 tree with the dlz_dlopen driver. See also the discussion on the bind-workers mailing list Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Mon Dec 6 05:48:30 CET 2010 on sn-devel-104
Diffstat (limited to 'source4/dns_server/wscript_build')
-rw-r--r--source4/dns_server/wscript_build7
1 files changed, 7 insertions, 0 deletions
diff --git a/source4/dns_server/wscript_build b/source4/dns_server/wscript_build
index f19a5a2eda..a543b12a06 100644
--- a/source4/dns_server/wscript_build
+++ b/source4/dns_server/wscript_build
@@ -8,3 +8,10 @@ bld.SAMBA_MODULE('service_dns',
local_include=False,
internal_module=False,
)
+
+# a bind9 dlz module giving access to the Samba DNS SAM
+bld.SAMBA_LIBRARY('dlz_bind9',
+ source='dlz_bind9.c',
+ private_library=True,
+ link_name='modules/bind9/dlz_bind9.so',
+ deps='samba-hostconfig ldbsamba samba-util')