2 from samba_utils
import save_file
9 manpages/idmap_autorid.8
13 manpages/idmap_rfc2307.8
15 manpages/idmap_script.8
18 manpages/libsmbclient.7
30 manpages/samba-dcerpcd.8
31 manpages/samba-regedit.8
35 manpages/samba_downgrade_db.8
45 manpages/smbspool_krb5_wrapper.8
52 manpages/traffic_learner.7
53 manpages/traffic_replay.7
56 manpages/samba-log-parser.1
59 pam_winbind_manpages
= '''
60 manpages/pam_winbind.8
61 manpages/pam_winbind.conf.5
64 krb5_locator_manpages
= 'manpages/winbind_krb5_locator.8'
65 krb5_localauth_manpages
= 'manpages/winbind_krb5_localauth.8'
67 winexe_manpages
= 'manpages/winexe.1'
69 vfs_module_manpages
= ['vfs_acl_tdb',
119 def generate_path_entity_list():
120 entities
= bld
.pathconfig_entities()
122 # We need this if we build with Heimdal as we can't easily make
123 # the whole option go away
125 # The MIT krb5kdc path is set if we build with MIT Kerberos
126 if bld
.CONFIG_SET('MIT_KDC_PATH'):
127 mit_kdc_path
= bld
.CONFIG_GET('MIT_KDC_PATH')
129 t
= "\n".join(entities
) +\
131 "<!ENTITY pathconfig.MITKDCPATH " + mit_kdc_path
+ ">\n" +\
135 def smbdotconf_generate_parameter_list_file(task
):
136 parameter_all
= task
.outputs
[0].bldpath(task
.env
)
137 articles
= task
.inputs
139 t
= "<!DOCTYPE section [\n" +\
140 generate_path_entity_list() + \
143 "".join(art
.read() for art
in articles
) +\
147 save_file(parameter_all
, t
, create_dir
=True)
150 # Since nothing really forces sorting in glob, we have to sort by file name
151 # POSIX file systems aren't required to return sorted content but we want
152 # smb.conf parameters to be sorted alphabetically
153 parameter_all
= 'smbdotconf/parameters.all.xml'
154 sources
= bld
.path
.ant_glob("smbdotconf/**/*.xml", flat
=False, excl
=parameter_all
)
155 articles
= " ".join(sorted([x
.path_from(bld
.path
) for x
in sources
],
156 key
=lambda m
: m
.split(os
.sep
)[-1]))
158 bld
.SAMBA_GENERATOR(parameter_all
,
160 target
=parameter_all
,
161 rule
=smbdotconf_generate_parameter_list_file
)
163 def generate_path_entity_file(task
):
164 path_entities_file
= task
.outputs
[0].bldpath(task
.env
)
166 save_file(path_entities_file
,
167 generate_path_entity_list(),
171 path_entities
= 'build/DTD/samba.build.pathconfig'
173 bld
.SAMBA_GENERATOR(path_entities
,
175 target
=path_entities
,
176 rule
=generate_path_entity_file
,
177 dep_vars
=bld
.dynconfig_varnames())
180 def SMBDOTCONF_MANPAGE(bld
, target
):
181 ''' assemble and build smb.conf.5 manual page'''
182 bld
.SAMBAMANPAGES(target
, parameter_all
)
184 if ('XSLTPROC_MANPAGES' in bld
.env
and bld
.env
['XSLTPROC_MANPAGES']):
186 SMBDOTCONF_MANPAGE(bld
, 'manpages/smb.conf.5')
187 bld
.SAMBAMANPAGES(manpages
)
189 if bld
.CONFIG_SET('WITH_PAM_MODULES') and bld
.CONFIG_SET('HAVE_PAM_START'):
190 bld
.SAMBAMANPAGES(pam_winbind_manpages
)
192 if bld
.CONFIG_SET('HAVE_KRB5_LOCATE_PLUGIN_H'):
193 bld
.SAMBAMANPAGES(krb5_locator_manpages
)
195 if bld
.CONFIG_SET('HAVE_KRB5_LOCALAUTH_PLUGIN_H'):
196 bld
.SAMBAMANPAGES(krb5_localauth_manpages
)
198 if conf
.env
.build_winexe
== True:
199 bld
.SAMBAMANPAGES(winexe_manpages
)
201 if bld
.CONFIG_SET('ENABLE_SELFTEST'):
202 bld
.SAMBAMANPAGES('manpages/vfstest.1')
204 for manpage
in vfs_module_manpages
:
205 if bld
.SAMBA3_IS_ENABLED_MODULE(manpage
):
206 bld
.SAMBAMANPAGES('manpages/%s.8' % manpage
)