mirror of
https://github.com/samba-team/samba.git
synced 2025-01-25 06:04:04 +03:00
318770a67f
It's use as "%s/samba_kcc", dyn_SCRIPTSBINDIR" similar to samba_spnupdate and samba_dnsupdate. metze
20 lines
590 B
Python
20 lines
590 B
Python
#!/usr/bin/env python
|
|
|
|
from samba_utils import MODE_755
|
|
|
|
sbin_files = None
|
|
if bld.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'):
|
|
sbin_files = 'bin/upgradeprovision bin/samba_dnsupdate bin/samba_spnupdate bin/samba_upgradedns bin/samba_kcc'
|
|
|
|
if sbin_files:
|
|
bld.INSTALL_FILES('${SBINDIR}',
|
|
sbin_files,
|
|
chmod=MODE_755, python_fixup=True, flat=True)
|
|
|
|
if bld.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'):
|
|
bld.INSTALL_FILES('${BINDIR}',
|
|
'bin/samba-tool',
|
|
chmod=MODE_755, python_fixup=True, flat=True)
|
|
|
|
bld.RECURSE('bin')
|