mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
b9f4febd40
To specify debug level, use -d <level> in named.conf. To specify sam db, use -H <path/to/sam.ldb> in named.conf. The default log level is set to 0. The log level specified in smb.conf is not used. To set log level, use -d option.
20 lines
725 B
Python
20 lines
725 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_MODULE('service_dns',
|
|
source='dns_server.c dns_query.c dns_update.c dns_utils.c',
|
|
subsystem='service',
|
|
init_function='server_service_dns_init',
|
|
deps='samba-hostconfig LIBTSOCKET LIBSAMBA_TSOCKET ldbsamba',
|
|
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',
|
|
realname='dlz_bind9.so',
|
|
install_path='${MODULESDIR}/bind9',
|
|
deps='samba-hostconfig samdb gensec popt')
|