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-regedit.8
34 manpages/samba_downgrade_db.8
45 manpages/smbspool_krb5_wrapper.8
52 manpages/traffic_learner.7
53 manpages/traffic_replay.7
58 pam_winbind_manpages
= '''
59 manpages/pam_winbind.8
60 manpages/pam_winbind.conf.5
63 krb5_locator_manpages
= 'manpages/winbind_krb5_locator.8'
64 krb5_localauth_manpages
= 'manpages/winbind_krb5_localauth.8'
66 winexe_manpages
= 'manpages/winexe.1'
68 vfs_module_manpages
= ['vfs_acl_tdb',
118 def smbdotconf_generate_parameter_list(task
):
119 parameter_all
= task
.outputs
[0].bldpath(task
.env
)
120 articles
= task
.inputs
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
= "<!DOCTYPE section [\n" +\
132 "\n".join(entities
) +\
134 "<!ENTITY pathconfig.MITKDCPATH " + mit_kdc_path
+ ">\n" +\
137 "".join(art
.read() for art
in articles
) +\
140 save_file(parameter_all
, t
, create_dir
=True)
143 # Since nothing really forces sorting in glob, we have to sort by file name
144 # POSIX file systems aren't required to return sorted content but we want
145 # smb.conf parameters to be sorted alphabetically
146 parameter_all
= 'smbdotconf/parameters.all.xml'
147 sources
= bld
.path
.ant_glob("smbdotconf/**/*.xml", flat
=False, excl
=parameter_all
)
148 articles
= " ".join(sorted([x
.path_from(bld
.path
) for x
in sources
],
149 key
=lambda m
: m
.split(os
.sep
)[-1]))
151 bld
.SAMBA_GENERATOR(parameter_all
,
153 target
=parameter_all
,
154 rule
=smbdotconf_generate_parameter_list
,
155 dep_vars
=bld
.dynconfig_varnames())
157 def SMBDOTCONF_MANPAGE(bld
, target
):
158 ''' assemble and build smb.conf.5 manual page'''
159 bld
.SAMBAMANPAGES(target
, parameter_all
)
161 if ('XSLTPROC_MANPAGES' in bld
.env
and bld
.env
['XSLTPROC_MANPAGES']):
163 SMBDOTCONF_MANPAGE(bld
, 'manpages/smb.conf.5')
164 bld
.SAMBAMANPAGES(manpages
)
166 if bld
.CONFIG_SET('WITH_PAM_MODULES') and bld
.CONFIG_SET('HAVE_PAM_START'):
167 bld
.SAMBAMANPAGES(pam_winbind_manpages
)
169 if bld
.CONFIG_SET('HAVE_KRB5_LOCATE_PLUGIN_H'):
170 bld
.SAMBAMANPAGES(krb5_locator_manpages
)
172 if bld
.CONFIG_SET('HAVE_KRB5_LOCALAUTH_PLUGIN_H'):
173 bld
.SAMBAMANPAGES(krb5_localauth_manpages
)
175 if conf
.env
.build_winexe
== True:
176 bld
.SAMBAMANPAGES(winexe_manpages
)
178 if bld
.CONFIG_SET('ENABLE_SELFTEST'):
179 bld
.SAMBAMANPAGES('manpages/vfstest.1')
181 for manpage
in vfs_module_manpages
:
182 if bld
.SAMBA3_IS_ENABLED_MODULE(manpage
):
183 bld
.SAMBAMANPAGES('manpages/%s.8' % manpage
)