mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
68ebb09193
As netlogon is handled by the samdb now, the corresponding functions should live there as well. Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Nadezhda Ivanova <nivanova@symas.com>
18 lines
318 B
Python
18 lines
318 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_MODULE('service_cldap',
|
|
source='cldap_server.c',
|
|
subsystem='service',
|
|
init_function='server_service_cldapd_init',
|
|
internal_module=False,
|
|
deps='CLDAPD process_model netif'
|
|
)
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('CLDAPD',
|
|
source='rootdse.c',
|
|
autoproto='proto.h',
|
|
deps='cli_cldap ldbsamba'
|
|
)
|
|
|