2 from samba_utils
import save_file
10 manpages/idmap_autorid.8
14 manpages/idmap_rfc2307.8
16 manpages/idmap_script.8
19 manpages/libsmbclient.7
30 manpages/samba-regedit.8
34 manpages/samba_downgrade_db.8
45 manpages/smbspool_krb5_wrapper.8
51 manpages/traffic_learner.7
52 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 vfs_module_manpages
= ['vfs_acl_tdb',
114 def smbdotconf_generate_parameter_list(task
):
115 parameter_all
= task
.outputs
[0].bldpath(task
.env
)
116 articles
= task
.inputs
118 entities
= bld
.pathconfig_entities()
119 t
= "<!DOCTYPE section [\n"
121 for entity
in entities
:
124 # We need this if we build with Heimdal
125 mit_kdc_path
= '"/usr/sbin/krb5kdc"'
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
+= "<!ENTITY pathconfig.MITKDCPATH %s>\n" % mit_kdc_path
135 for article
in articles
:
139 save_file(parameter_all
, t
, create_dir
=True)
142 # Since nothing really forces sorting in glob, we have to sort by file name
143 # POSIX file systems aren't required to return sorted content but we want
144 # smb.conf parameters to be sorted alphabetically
145 parameter_all
= 'smbdotconf/parameters.all.xml'
146 sources
= bld
.path
.ant_glob("smbdotconf/**/*.xml", flat
=False, excl
=parameter_all
)
147 articles
= " ".join(sorted([x
.path_from(bld
.path
) for x
in sources
],
148 key
=lambda m
: m
.split(os
.sep
)[-1]))
150 bld
.SAMBA_GENERATOR(parameter_all
,
152 target
=parameter_all
,
153 rule
=smbdotconf_generate_parameter_list
,
154 dep_vars
=bld
.dynconfig_varnames())
156 def SMBDOTCONF_MANPAGE(bld
, target
):
157 ''' assemble and build smb.conf.5 manual page'''
158 bld
.SAMBAMANPAGES(target
, parameter_all
)
160 if ('XSLTPROC_MANPAGES' in bld
.env
and bld
.env
['XSLTPROC_MANPAGES']):
162 SMBDOTCONF_MANPAGE(bld
, 'manpages/smb.conf.5')
163 bld
.SAMBAMANPAGES(manpages
)
165 if bld
.CONFIG_SET('WITH_PAM_MODULES') and bld
.CONFIG_SET('HAVE_PAM_START'):
166 bld
.SAMBAMANPAGES(pam_winbind_manpages
)
168 if bld
.CONFIG_SET('HAVE_KRB5_LOCATE_PLUGIN_H'):
169 bld
.SAMBAMANPAGES(krb5_locator_manpages
)
171 if bld
.CONFIG_SET('HAVE_KRB5_LOCALAUTH_PLUGIN_H'):
172 bld
.SAMBAMANPAGES(krb5_localauth_manpages
)
174 for manpage
in vfs_module_manpages
:
175 if bld
.SAMBA3_IS_ENABLED_MODULE(manpage
):
176 bld
.SAMBAMANPAGES('manpages/%s.8' % manpage
)