mirror of
https://github.com/samba-team/samba.git
synced 2025-03-01 04:58:35 +03:00
Installing downgrade script so people don't need the source tree for it. Exception added in usage test because running the script without arguments is valid. (This avoids the need to knownfail it). BUG: https://bugzilla.samba.org/show_bug.cgi?id=14059 Signed-off-by: Aaron Haslett <aaronhaslett@catalyst.net.nz> Signed-off-by: Tim Beale <timbeale@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Garming Sam <garming@catalyst.net.nz>
14 lines
514 B
Python
14 lines
514 B
Python
#!/usr/bin/env python3
|
|
|
|
if bld.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'):
|
|
for script in ['samba-tool',
|
|
'samba_dnsupdate',
|
|
'samba_spnupdate',
|
|
'samba_kcc',
|
|
'samba_upgradeprovision',
|
|
'samba_upgradedns',
|
|
'gen_output.py',
|
|
'samba_downgrade_db']:
|
|
bld.SAMBA_SCRIPT(script, pattern=script, installdir='.')
|
|
bld.SAMBA_SCRIPT('samba-gpupdate', pattern='samba-gpupdate', installdir='.')
|