mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
7cc1dfec8c
This is sourced from the WindowsServerDocs repository on Github under an MIT/CC 4.0 attribution license. A huge thanks is required for these being provided and the work done in the process, as they mean a lot less work for us to repeat. Signed-off-by: Garming Sam <garming@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
18 lines
776 B
Python
18 lines
776 B
Python
#!/usr/bin/env python
|
|
|
|
bld.INSTALL_WILDCARD('${SETUPDIR}', 'ad-schema/*.txt')
|
|
bld.INSTALL_WILDCARD('${SETUPDIR}', 'ad-schema/*.ldf')
|
|
bld.INSTALL_WILDCARD('${SETUPDIR}', 'display-specifiers/*.txt')
|
|
bld.INSTALL_WILDCARD('${SETUPDIR}', 'adprep/*.ldf')
|
|
bld.INSTALL_WILDCARD('${SETUPDIR}', 'adprep/WindowsServerDocs/Schema-Updates.md')
|
|
bld.INSTALL_WILDCARD('${SETUPDIR}', 'adprep/WindowsServerDocs/Forest-Wide-Updates.md')
|
|
bld.INSTALL_WILDCARD('${SETUPDIR}', 'adprep/WindowsServerDocs/*.diff')
|
|
|
|
bld.INSTALL_FILES('${SETUPDIR}', 'dns_update_list')
|
|
bld.INSTALL_FILES('${SETUPDIR}', 'spn_update_list')
|
|
|
|
for p in '''schema-map-* DB_CONFIG *.inf *.ldif *.reg *.zone *.conf *.php *.txt
|
|
named.conf.update named.conf.dlz'''.split():
|
|
bld.INSTALL_WILDCARD('${SETUPDIR}', p)
|
|
|