From 9f6f1b009866b8f697bcfad8b1451395732b78c1 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 6 Dec 2010 14:12:07 +1100 Subject: 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 Autobuild-Date: Mon Dec 6 05:48:30 CET 2010 on sn-devel-104 --- source4/dns_server/wscript_build | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'source4/dns_server/wscript_build') 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') -- cgit