mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
2064833643
Signed-off-by: Christof Schmitt <cs@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org>
13 lines
430 B
Python
13 lines
430 B
Python
#!/usr/bin/env python
|
|
|
|
from samba_utils import MODE_755
|
|
|
|
bld.INSTALL_FILES('${BINDIR}',
|
|
'smbtar',
|
|
chmod=MODE_755, flat=True)
|
|
|
|
# Callout scripts for use in selftest environment
|
|
bld.SAMBA_SCRIPT('smbaddshare', pattern='smbaddshare', installdir='.')
|
|
bld.SAMBA_SCRIPT('smbchangeshare', pattern='smbchangeshare', installdir='.')
|
|
bld.SAMBA_SCRIPT('smbdeleteshare', pattern='smbdeleteshare', installdir='.')
|