mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
c8621948f6
On a Windows client, this command is called 'gpupdate' Signed-off-by: David Mulder <dmulder@suse.com> Reviewed-by: Andreas Schneider <asn@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
13 lines
472 B
Python
13 lines
472 B
Python
#!/usr/bin/env python
|
|
|
|
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']:
|
|
bld.SAMBA_SCRIPT(script, pattern=script, installdir='.')
|
|
bld.SAMBA_SCRIPT('samba-gpupdate', pattern='samba-gpupdate', installdir='.')
|