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
60 pam_winbind_manpages
= '''
61 manpages/pam_winbind.8
62 manpages/pam_winbind.conf.5
65 krb5_locator_manpages
= 'manpages/winbind_krb5_locator.8'
66 krb5_localauth_manpages
= 'manpages/winbind_krb5_localauth.8'
68 winexe_manpages
= 'manpages/winexe.1'
70 vfs_module_manpages
= ['vfs_acl_tdb',
121 def generate_path_entity_list():
122 entities
= bld
.pathconfig_entities()
124 # We need this if we build with Heimdal as we can't easily make
125 # the whole option go away
127 # The MIT krb5kdc path is set if we build with MIT Kerberos
128 if bld
.CONFIG_SET('MIT_KDC_PATH'):
129 mit_kdc_path
= bld
.CONFIG_GET('MIT_KDC_PATH')
131 t
= "\n".join(entities
) +\
133 "<!ENTITY pathconfig.MITKDCPATH " + mit_kdc_path
+ ">\n" +\
137 def smbdotconf_generate_parameter_list_file(task
):
138 parameter_all
= task
.outputs
[0].bldpath(task
.env
)
139 articles
= task
.inputs
141 t
= "<!DOCTYPE section [\n" +\
142 generate_path_entity_list() + \
145 "".join(art
.read() for art
in articles
) +\
149 save_file(parameter_all
, t
, create_dir
=True)
152 # Since nothing really forces sorting in glob, we have to sort by file name
153 # POSIX file systems aren't required to return sorted content but we want
154 # smb.conf parameters to be sorted alphabetically
155 parameter_all
= 'smbdotconf/parameters.all.xml'
156 sources
= bld
.path
.ant_glob("smbdotconf/**/*.xml", flat
=False, excl
=parameter_all
)
157 articles
= " ".join(sorted([x
.path_from(bld
.path
) for x
in sources
],
158 key
=lambda m
: m
.split(os
.sep
)[-1]))
160 bld
.SAMBA_GENERATOR(parameter_all
,
162 target
=parameter_all
,
163 rule
=smbdotconf_generate_parameter_list_file
)
165 def generate_path_entity_file(task
):
166 path_entities_file
= task
.outputs
[0].bldpath(task
.env
)
168 save_file(path_entities_file
,
169 generate_path_entity_list(),
173 path_entities
= 'build/DTD/samba.build.pathconfig'
175 bld
.SAMBA_GENERATOR(path_entities
,
177 target
=path_entities
,
178 rule
=generate_path_entity_file
,
179 dep_vars
=bld
.dynconfig_varnames())
182 def SMBDOTCONF_MANPAGE(bld
, target
):
183 ''' assemble and build smb.conf.5 manual page'''
184 bld
.SAMBAMANPAGES(target
, parameter_all
)
186 if ('XSLTPROC_MANPAGES' in bld
.env
and bld
.env
['XSLTPROC_MANPAGES']):
188 SMBDOTCONF_MANPAGE(bld
, 'manpages/smb.conf.5')
189 bld
.SAMBAMANPAGES(manpages
)
191 if bld
.CONFIG_SET('WITH_PAM_MODULES') and bld
.CONFIG_SET('HAVE_PAM_START'):
192 bld
.SAMBAMANPAGES(pam_winbind_manpages
)
194 if bld
.CONFIG_SET('HAVE_KRB5_LOCATE_PLUGIN_H'):
195 bld
.SAMBAMANPAGES(krb5_locator_manpages
)
197 if bld
.CONFIG_SET('HAVE_KRB5_LOCALAUTH_PLUGIN_H'):
198 bld
.SAMBAMANPAGES(krb5_localauth_manpages
)
200 if conf
.env
.build_winexe
== True:
201 bld
.SAMBAMANPAGES(winexe_manpages
)
203 if bld
.CONFIG_SET('ENABLE_SELFTEST'):
204 bld
.SAMBAMANPAGES('manpages/vfstest.1')
206 for manpage
in vfs_module_manpages
:
207 if bld
.SAMBA3_IS_ENABLED_MODULE(manpage
):
208 bld
.SAMBAMANPAGES('manpages/%s.8' % manpage
)