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',
120 def generate_path_entity_list():
121 entities
= bld
.pathconfig_entities()
123 # We need this if we build with Heimdal as we can't easily make
124 # the whole option go away
126 # The MIT krb5kdc path is set if we build with MIT Kerberos
127 if bld
.CONFIG_SET('MIT_KDC_PATH'):
128 mit_kdc_path
= bld
.CONFIG_GET('MIT_KDC_PATH')
130 t
= "\n".join(entities
) +\
132 "<!ENTITY pathconfig.MITKDCPATH " + mit_kdc_path
+ ">\n" +\
136 def smbdotconf_generate_parameter_list_file(task
):
137 parameter_all
= task
.outputs
[0].bldpath(task
.env
)
138 articles
= task
.inputs
140 t
= "<!DOCTYPE section [\n" +\
141 generate_path_entity_list() + \
144 "".join(art
.read() for art
in articles
) +\
148 save_file(parameter_all
, t
, create_dir
=True)
151 # Since nothing really forces sorting in glob, we have to sort by file name
152 # POSIX file systems aren't required to return sorted content but we want
153 # smb.conf parameters to be sorted alphabetically
154 parameter_all
= 'smbdotconf/parameters.all.xml'
155 sources
= bld
.path
.ant_glob("smbdotconf/**/*.xml", flat
=False, excl
=parameter_all
)
156 articles
= " ".join(sorted([x
.path_from(bld
.path
) for x
in sources
],
157 key
=lambda m
: m
.split(os
.sep
)[-1]))
159 bld
.SAMBA_GENERATOR(parameter_all
,
161 target
=parameter_all
,
162 rule
=smbdotconf_generate_parameter_list_file
)
164 def generate_path_entity_file(task
):
165 path_entities_file
= task
.outputs
[0].bldpath(task
.env
)
167 save_file(path_entities_file
,
168 generate_path_entity_list(),
172 path_entities
= 'build/DTD/samba.build.pathconfig'
174 bld
.SAMBA_GENERATOR(path_entities
,
176 target
=path_entities
,
177 rule
=generate_path_entity_file
,
178 dep_vars
=bld
.dynconfig_varnames())
181 def SMBDOTCONF_MANPAGE(bld
, target
):
182 ''' assemble and build smb.conf.5 manual page'''
183 bld
.SAMBAMANPAGES(target
, parameter_all
)
185 if ('XSLTPROC_MANPAGES' in bld
.env
and bld
.env
['XSLTPROC_MANPAGES']):
187 SMBDOTCONF_MANPAGE(bld
, 'manpages/smb.conf.5')
188 bld
.SAMBAMANPAGES(manpages
)
190 if bld
.CONFIG_SET('WITH_PAM_MODULES') and bld
.CONFIG_SET('HAVE_PAM_START'):
191 bld
.SAMBAMANPAGES(pam_winbind_manpages
)
193 if bld
.CONFIG_SET('HAVE_KRB5_LOCATE_PLUGIN_H'):
194 bld
.SAMBAMANPAGES(krb5_locator_manpages
)
196 if bld
.CONFIG_SET('HAVE_KRB5_LOCALAUTH_PLUGIN_H'):
197 bld
.SAMBAMANPAGES(krb5_localauth_manpages
)
199 if conf
.env
.build_winexe
== True:
200 bld
.SAMBAMANPAGES(winexe_manpages
)
202 if bld
.CONFIG_SET('ENABLE_SELFTEST'):
203 bld
.SAMBAMANPAGES('manpages/vfstest.1')
205 for manpage
in vfs_module_manpages
:
206 if bld
.SAMBA3_IS_ENABLED_MODULE(manpage
):
207 bld
.SAMBAMANPAGES('manpages/%s.8' % manpage
)