mirror of
https://github.com/samba-team/samba.git
synced 2025-01-10 01:18:15 +03:00
f1a83feb0e
There's no point in trying to support --with-ads, but only use plaintext ldap without sign/seal. Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
15 lines
585 B
Python
15 lines
585 B
Python
#!/usr/bin/env python3
|
|
|
|
if bld.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'):
|
|
for script in ['samba_dnsupdate',
|
|
'samba_spnupdate',
|
|
'samba_kcc',
|
|
'samba_upgradeprovision',
|
|
'samba_upgradedns',
|
|
'gen_output.py',
|
|
'samba_downgrade_db']:
|
|
bld.SAMBA_SCRIPT(script, pattern=script, installdir='.')
|
|
if bld.CONFIG_SET('HAVE_ADS'):
|
|
bld.SAMBA_SCRIPT('samba-tool', pattern='samba-tool', installdir='.')
|
|
bld.SAMBA_SCRIPT('samba-gpupdate', pattern='samba-gpupdate', installdir='.')
|