Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • networking/netprogs/samba.xml

    r51718d1 rdb91d7e  
    77  <!ENTITY samba-download-http "https://www.samba.org/ftp/samba/stable/samba-&samba-version;.tar.gz">
    88  <!ENTITY samba-download-ftp  " ">
    9   <!ENTITY samba-md5sum        "8a412bc5b58f35cd4721fa6ec4629ce0">
     9  <!ENTITY samba-md5sum        "f0db8302944bb861b31f4163fd302f66">
    1010  <!ENTITY samba-size          "18 MB">
    11   <!ENTITY samba-buildsize     "629 MB (add 380 MB for quicktest)">
    12   <!ENTITY samba-time          "3.1 SBU (using parallelism=4; add 5.1 SBU for quicktest)">
     11  <!ENTITY samba-buildsize     "622 MB (add 379 MB for quicktest)">
     12  <!ENTITY samba-time          "3.1 SBU (using parallelism=4; add 4.9 SBU for quicktest)">
    1313]>
    1414
     
    1717
    1818  <sect1info>
    19     <othername>$LastChangedBy$</othername>
    2019    <date>$Date$</date>
    2120  </sect1info>
     
    3938    </para>
    4039
    41     &lfs10_checked;
     40    &lfs110a_checked;
    4241
    4342    <bridgehead renderas="sect3">Package Information</bridgehead>
     
    9493      <xref linkend="gpgme"/>,
    9594      <xref linkend="icu"/>,
     95      <xref linkend="libtasn1"/>,
    9696      <xref linkend="libxslt"/> (for documentation),
    9797      <xref linkend="linux-pam"/>,
    98       <xref linkend="perl-parse-yapp"/>,
    99       <xref linkend="pycryptodome"/>, and
     98      <xref linkend="perl-parse-yapp"/>, and
    10099      <xref linkend="openldap"/>
    101100    </para>
     
    124123      <xref linkend="xfsprogs"/>,
    125124      <ulink url="https://cmocka.org/">cmocka</ulink>,
     125      <ulink url="https://cryptography.io/en/latest/">cryptography</ulink>,
    126126      <ulink url="https://ctdb.samba.org/">ctdb</ulink> (included),
    127127      <ulink url="https://cwrap.org/">cwrap</ulink>,
    128128      <ulink url="&pypi;/dnspython/">dnspython</ulink>,
    129       <ulink url="https://packages.debian.org/stretch/fam/">FAM</ulink>,
     129      <ulink url="https://packages.debian.org/stretch/fam">FAM</ulink>,
    130130      <ulink url="https://people.gnome.org/~veillard/gamin/">Gamin</ulink>,
    131131      <ulink url="https://www.gluster.org/">GlusterFS</ulink>,
    132132      <ulink url="https://github.com/heimdal/">Heimdal</ulink> (included),
     133      <ulink url="https://pypi.org/project/iso8601/">iso8601</ulink>,
    133134      <ulink url="http://www.nongnu.org/libunwind/">libunwind</ulink>,
    134135      <ulink url="https://ldb.samba.org/">ldb</ulink> (included),
    135136      <ulink url="&pypi;/m2crypto">M2Crypto</ulink> (required for ADS),
    136137      <ulink url="http://www.openafs.org/">OpenAFS</ulink>,
     138      <ulink url="https://pypi.org/project/pyasn1/">pyasn1</ulink>,
    137139      <ulink url="&pypi;/pygpgme/">PyGPGME</ulink> (recommended for ADS),
    138140      <ulink url="https://tevent.samba.org/">tevent</ulink> (included), and
     
    176178
    177179    <para>
    178       Fix a file that fails to compile with Glibc-2.32:
    179     </para>
    180 
    181 <screen><userinput>sed -r 's/nss_(setpw|endpw|setgr|endgr)ent/my_&amp;/' \
    182     -i nsswitch/nsstest.c</userinput></screen>
     180      To support the test suite, set up a Python virtual environment
     181      for some Python modules out of the scope of BLFS:
     182    </para>
     183
     184<screen><userinput remap="pre">python3 -m venv pyvenv &amp;&amp;
     185./pyvenv/bin/pip3 install cryptography pyasn1 iso8601</userinput></screen>
    183186
    184187    <para>
     
    193196    </para>
    194197
    195 <screen revision="sysv"><userinput>CFLAGS="-I/usr/include/tirpc"          \
    196 LDFLAGS="-ltirpc"                      \
    197 ./configure                            \
    198     --prefix=/usr                      \
    199     --sysconfdir=/etc                  \
    200     --localstatedir=/var               \
    201     --with-piddir=/run/samba           \
    202     --with-pammodulesdir=/lib/security \
    203     --enable-fhs                       \
    204     --without-ad-dc                    \
    205     --without-systemd                  \
    206     --enable-selftest                  &amp;&amp;
     198<screen revision="sysv"><userinput>PYTHON=$PWD/pyvenv/bin/python3             \
     199CPPFLAGS="-I/usr/include/tirpc"            \
     200LDFLAGS="-ltirpc"                          \
     201PATH=$PWD/pyvenv/bin:$PATH                 \
     202./configure                                \
     203    --prefix=/usr                          \
     204    --sysconfdir=/etc                      \
     205    --localstatedir=/var                   \
     206    --with-piddir=/run/samba               \
     207    --with-pammodulesdir=/usr/lib/security \
     208    --enable-fhs                           \
     209    --without-ad-dc                        \
     210    --without-systemd                      \
     211    --enable-selftest                      &amp;&amp;
    207212make</userinput></screen>
    208213
    209 <screen revision="systemd"><userinput>CFLAGS="-I/usr/include/tirpc"          \
    210 LDFLAGS="-ltirpc"                      \
    211 ./configure                            \
    212     --prefix=/usr                      \
    213     --sysconfdir=/etc                  \
    214     --localstatedir=/var               \
    215     --with-piddir=/run/samba           \
    216     --with-pammodulesdir=/lib/security \
    217     --enable-fhs                       \
    218     --without-ad-dc                    \
    219     --enable-selftest                  &amp;&amp;
     214<screen revision="systemd"><userinput>PYTHON=$PWD/pyvenv/bin/python3             \
     215CPPFLAGS="-I/usr/include/tirpc"            \
     216LDFLAGS="-ltirpc"                          \
     217./configure                                \
     218    --prefix=/usr                          \
     219    --sysconfdir=/etc                      \
     220    --localstatedir=/var                   \
     221    --with-piddir=/run/samba               \
     222    --with-pammodulesdir=/usr/lib/security \
     223    --enable-fhs                           \
     224    --without-ad-dc                        \
     225    --enable-selftest                      &amp;&amp;
    220226make</userinput></screen>
    221227
     
    223229      To test the results, as the
    224230      <systemitem class="username">root</systemitem> user, issue:
    225       <command>make quicktest</command>. The test suite will produce lines that
    226       look like failures, but these are innocuous. The last few lines of output
    227       should report <emphasis>"ALL OK"</emphasis> for a good test run. A summary
    228       of any failures can be found in
    229       <filename class="directory">./st/summary</filename>. With Samba-4.12.0,
     231      <command>PATH=$PWD/pyvenv/bin:$PATH make quicktest</command>. The test
     232      suite will produce lines that look like failures, but these are innocuous.
     233      The last few lines of output should report <emphasis>"ALL OK"</emphasis>
     234      for a good test run. A summary of any failures can be found in
     235      <filename class="directory">./st/summary</filename>. With Samba-4.14.4,
    230236      many tests are known to fail.
    231237    </para>
     
    245251      <para>
    246252        Additionally, developer test suites are available. If you've installed
    247         the optional python modules above, you can run these tests with
     253        the optional python modules above in the Python virtual environment
     254        for building this package, you can run these tests with
    248255        <command>make test</command>. It is not recommended for the average
    249256        builder at around 290 SBU and over a gigabyte of disk space, and you
     
    253260
    254261    <para>
    255       Now, as the <systemitem class="username">root</systemitem> user:
     262      Fix a hard coded path to Python 3 interpreter:
     263    </para>
     264
     265<screen><userinput>sed '1s@^.*$@#!/usr/bin/python3@' \
     266    -i ./bin/default/source4/scripting/bin/samba-gpupdate.inst</userinput></screen>
     267
     268    <para>
     269      If upgrading from an old version of samba, as the
     270      <systemitem class="username">root</systemitem> user, remove the old
     271      Python support files to prevent some issues:
     272    </para>
     273
     274<screen role="root"><userinput>rm -rf /usr/lib/python&python3-majorver;/site-packages/samba</userinput></screen>
     275
     276    <para>
     277      Still as the <systemitem class="username">root</systemitem> user,
     278      install the package:
    256279    </para>
    257280
    258281<screen role="root"><userinput>make install &amp;&amp;
    259282
    260 mv -v /usr/lib/libnss_win{s,bind}.so.*  /lib                       &amp;&amp;
    261 ln -v -sf ../../lib/libnss_winbind.so.2 /usr/lib/libnss_winbind.so &amp;&amp;
    262 ln -v -sf ../../lib/libnss_wins.so.2    /usr/lib/libnss_wins.so    &amp;&amp;
    263 
    264283install -v -m644    examples/smb.conf.default /etc/samba &amp;&amp;
     284
     285sed -e "s;log file =.*;log file = /var/log/samba/%m.log;" \
     286    -e "s;path = /usr/spool/samba;path = /var/spool/samba;" \
     287    -i /etc/samba/smb.conf.default &amp;&amp;
    265288
    266289mkdir -pv /etc/openldap/schema                        &amp;&amp;
     
    306329    </para>
    307330
     331<!-- FIXME removed during merged-/usr transition.
    308332    <para>
    309333      <command>mv -v /usr/lib/libnss_win{s,bind}.so* /lib</command>:
     
    319343      libraries.
    320344    </para>
     345-->
    321346
    322347    <para>
     
    432457          There is no need to run any <application>Samba</application>
    433458          servers in this scenario, thus you don't need to install the provided
    434           bootscripts.
     459          <phrase revision="sysv">bootscripts.</phrase>
     460          <phrase revision="systemd">systemd units.</phrase>
    435461        </para>
    436462
     
    448474        <para>
    449475          In this case, the <filename>/etc/samba/smb.conf.default</filename>
    450           file may be a good template to start from. Also add
     476          file may be a good template to start from. Also, you should add the
    451477          <quote>dos charset</quote> and <quote>unix charset</quote> parameters
    452478          to the <quote>[global]</quote> section as described in Scenario 1 in
     
    509535          Since the <command>smbd</command> and <command>nmbd</command> daemons
    510536          are needed in this case, install the <filename>samba</filename>
    511           bootscript. Be sure to run <command>smbpasswd</command> (with the
     537          <phrase revision="sysv">bootscript.</phrase>
     538          <phrase revision="systemd">systemd unit.</phrase>
     539          Be sure to run <command>smbpasswd</command> (with the
    512540          <option>-a</option> option to add users) to enable and set passwords
    513541          for all accounts that need <application>Samba</application> access.
     
    527555          covered in BLFS. Many complete books have been written on these topics
    528556          alone. Note that in some domain membership scenarios, the
    529           <command>winbindd</command> daemon and the corresponding bootscript
    530           are needed.
     557          <command>winbindd</command> daemon and the corresponding
     558          <phrase revision="sysv">bootscript</phrase>
     559          <phrase revision="systemd">systemd unit</phrase> are needed.
    531560        </para>
    532561
     
    733762        <listitem>
    734763          <para>
    735             is the dd command for SMB.
     764            is the dd command for SMB
    736765          </para>
    737766          <indexterm zone="samba cifsdd">
     
    746775          <para>
    747776            is used to read and manipulate TDB/CTDB databases using
    748             the dbwrap interface.
     777            the dbwrap interface
    749778          </para>
    750779          <indexterm zone="samba dbwrap_tool">
     
    760789            is used to write records to eventlogs from STDIN, add the
    761790            specified source and DLL eventlog registry entries and display the
    762             active eventlog names (from <filename>smb.conf</filename>).
     791            active eventlog names (from <filename>smb.conf</filename>)
    763792          </para>
    764793          <indexterm zone="samba eventlogadm">
     
    773802          <para>
    774803            is used to list info about machines that respond to SMB name
    775             queries on a subnet.
     804            queries on a subnet
    776805          </para>
    777806          <indexterm zone="samba findsmb">
     
    786815          <para>
    787816            is used to run random generic SMB operations against two
    788             SMB servers and show the differences in behavior.
     817            SMB servers and show the differences in behavior
    789818          </para>
    790819          <indexterm zone="samba gentest">
     
    799828          <para>
    800829            is a command-line utility for adding records to an LDB
    801             database.
     830            database
    802831          </para>
    803832          <indexterm zone="samba ldbadd">
     
    811840        <listitem>
    812841          <para>
    813             is a command-line program for deleting LDB database records.
     842            is a command-line program for deleting LDB database records
    814843          </para>
    815844          <indexterm zone="samba ldbdel">
     
    823852        <listitem>
    824853          <para>
    825             allows you to edit LDB databases using your preferred editor.
     854            allows you to edit LDB databases using your preferred editor
    826855          </para>
    827856          <indexterm zone="samba ldbedit">
     
    835864        <listitem>
    836865          <para>
    837             allows you to modify records in an LDB database.
     866            allows you to modify records in an LDB database
    838867          </para>
    839868          <indexterm zone="samba ldbmodify">
     
    847876        <listitem>
    848877          <para>
    849             allows you to rename LDB databases.
     878            allows you to rename LDB databases
    850879          </para>
    851880          <indexterm zone="samba ldbrename">
     
    860889          <para>
    861890            searches an LDB database for records matching a specified
    862             expression.
     891            expression
    863892          </para>
    864893          <indexterm zone="samba ldbsearch">
     
    872901        <listitem>
    873902          <para>
    874             is used to find differences in locking between two SMB servers.
     903            is used to find differences in locking between two SMB servers
    875904          </para>
    876905          <indexterm zone="samba locktest">
     
    885914          <para>
    886915            is used to find differences in wildcard matching between
    887             Samba's implementation and that of a remote server.
     916            Samba's implementation and that of a remote server
    888917          </para>
    889918          <indexterm zone="samba masktest">
     
    898927          <para>
    899928            runs <application>Spotlight</application> searches against a SMB
    900             server.
     929            server
    901930          </para>
    902931          <indexterm zone="samba mdfind">
     
    910939        <listitem>
    911940          <para>
    912             is used to recursively rename extended attributes.
     941            is used to recursively rename extended attributes
    913942          </para>
    914943          <indexterm zone="samba mvxattr">
     
    922951        <listitem>
    923952          <para>
    924             is a DCE/RPC Packet Parser and Dumper.
     953            is a DCE/RPC Packet Parser and Dumper
    925954          </para>
    926955          <indexterm zone="samba ndrdump">
     
    936965            is a tool for administration of <application>Samba</application>
    937966            and remote CIFS servers, similar to the <command>net</command>
    938             utility for DOS/Windows.
     967            utility for DOS/Windows
    939968          </para>
    940969          <indexterm zone="samba net">
     
    948977        <listitem>
    949978          <para>
    950             is the <application>Samba</application> NetBIOS name server.
     979            is the <application>Samba</application> NetBIOS name server
    951980          </para>
    952981          <indexterm zone="samba nmbd">
     
    960989        <listitem>
    961990          <para>
    962             is used to query NetBIOS names and map them to IP addresses.
     991            is used to query NetBIOS names and map them to IP addresses
    963992          </para>
    964993          <indexterm zone="samba nmblookup">
     
    9731002          <para>
    9741003            is a tool to allow external access to Winbind's
    975             NTLM authentication function.
     1004            NTLM authentication function
    9761005          </para>
    9771006          <indexterm zone="samba ntlm_auth">
     
    9851014        <listitem>
    9861015          <para>
    987             converts LDAP schema's to LDB-compatible LDIF.
     1016            converts LDAP schema's to LDB-compatible LDIF
    9881017          </para>
    9891018          <indexterm zone="samba oLschema2ldif">
     
    9971026        <listitem>
    9981027          <para>
    999             is a tool used to manage the SAM database.
     1028            is a tool used to manage the SAM database
    10001029          </para>
    10011030          <indexterm zone="samba pdbedit">
     
    10251054          <para>
    10261055            is a utility that reports and changes SIDs in Windows
    1027             registry files. It currently only supports Windows NT.
     1056            registry files. It currently only supports Windows NT
    10281057          </para>
    10291058          <indexterm zone="samba profiles">
     
    10371066        <listitem>
    10381067          <para>
    1039             is a Diff program for Windows registry files.
     1068            is a Diff program for Windows registry files
    10401069          </para>
    10411070          <indexterm zone="samba regdiff">
     
    10491078        <listitem>
    10501079          <para>
    1051             applies registry patches to registry files.
     1080            applies registry patches to registry files
    10521081          </para>
    10531082          <indexterm zone="samba regpatch">
     
    10611090        <listitem>
    10621091          <para>
    1063             is a Windows registry file browser using readline.
     1092            is a Windows registry file browser using readline
    10641093          </para>
    10651094          <indexterm zone="samba regshell">
     
    10731102        <listitem>
    10741103          <para>
    1075             is a text-mode registry viewer.
     1104            is a text-mode registry viewer
    10761105          </para>
    10771106          <indexterm zone="samba regtree">
     
    10851114        <listitem>
    10861115          <para>
    1087             is used to execute MS-RPC client side functions.
     1116            is used to execute MS-RPC client side functions
    10881117          </para>
    10891118          <indexterm zone="samba rpcclient">
     
    10981127          <para>
    10991128            is a server to provide AD and SMB/CIFS services
    1100             to clients.
     1129            to clients
    11011130          </para>
    11021131          <indexterm zone="samba samba-prog">
     
    11101139        <listitem>
    11111140          <para>
    1112             is used to update our DNS names using TSIG-GSS.
     1141            is used to update the DNS names using TSIG-GSS
    11131142          </para>
    11141143          <indexterm zone="samba samba_dnsupdate">
     
    11231152          <para>
    11241153            downgrades the Samba AD database to be compatible with a previous
    1125             version of Samba.
     1154            version of Samba
    11261155          </para>
    11271156          <indexterm zone="samba samba_downgrade_db">
     
    11361165          <para>
    11371166            is a script used to compute your KCC (Knowledge
    1138             Consistency Checker) topology.
     1167            Consistency Checker) topology
    11391168          </para>
    11401169          <indexterm zone="samba samba_kcc">
     
    11481177        <listitem>
    11491178          <para>
    1150             allows you to edit Microsoft Group Policy Objects (GPOs).
     1179            allows you to edit Microsoft Group Policy Objects (GPOs)
    11511180          </para>
    11521181          <indexterm zone="samba samba-gpupdate">
     
    11601189        <listitem>
    11611190          <para>
    1162             is a ncurses based tool to manage the Samba registry.
     1191            is a ncurses based tool to manage the Samba registry
    11631192          </para>
    11641193          <indexterm zone="samba samba-regedit">
     
    11731202          <para>
    11741203            is a script to update the servicePrincipalName
    1175             names from spn_update_list.
     1204            names from spn_update_list
    11761205          </para>
    11771206          <indexterm zone="samba samba_spnupdate">
     
    11851214        <listitem>
    11861215          <para>
    1187             is the main Samba administration tool.
     1216            is the main Samba administration tool
    11881217          </para>
    11891218          <indexterm zone="samba samba-tool">
     
    11971226        <listitem>
    11981227          <para>
    1199             upgrades the DNS records in a Samba server to a newer version.
     1228            upgrades the DNS records in a Samba server to a newer version
    12001229          </para>
    12011230          <indexterm zone="samba samba_upgradedns">
     
    12091238        <listitem>
    12101239          <para>
    1211             manipulates share ACL permissions on SMB file shares.
     1240            manipulates share ACL permissions on SMB file shares
    12121241          </para>
    12131242          <indexterm zone="samba sharesec">
     
    12211250        <listitem>
    12221251          <para>
    1223             is used to manipulate Windows NT access control lists.
     1252            is used to manipulate Windows NT access control lists
    12241253          </para>
    12251254          <indexterm zone="samba smbcacls">
     
    12331262        <listitem>
    12341263          <para>
    1235             is a SMB/CIFS access utility, similar to FTP.
     1264            is a SMB/CIFS access utility, similar to FTP
    12361265          </para>
    12371266          <indexterm zone="samba smbclient">
     
    12461275          <para>
    12471276            is used to control running <command>smbd</command>,
    1248             <command>nmbd</command> and <command>winbindd</command> daemons.
     1277            <command>nmbd</command> and <command>winbindd</command> daemons
    12491278          </para>
    12501279          <indexterm zone="samba smbcontrol">
     
    12581287        <listitem>
    12591288          <para>
    1260             is used to manipulate Windows NT quotas on SMB file shares.
     1289            is used to manipulate Windows NT quotas on SMB file shares
    12611290          </para>
    12621291          <indexterm zone="samba smbcquotas">
     
    12711300          <para>
    12721301            is the main <application>Samba</application> daemon which
    1273             provides SMB/CIFS services to clients.
     1302            provides SMB/CIFS services to clients
    12741303          </para>
    12751304          <indexterm zone="samba smbd">
     
    12851314            is a simple utility with <command>wget</command>-like semantics,
    12861315            that can download files from SMB servers. You can specify the
    1287             files you would like to download on the command-line.
     1316            files you would like to download on the command-line
    12881317          </para>
    12891318          <indexterm zone="samba smbget">
     
    12971326        <listitem>
    12981327          <para>
    1299             changes a user's <application>Samba</application> password.
     1328            changes a user's <application>Samba</application> password
    13001329          </para>
    13011330          <indexterm zone="samba smbpasswd">
     
    13091338        <listitem>
    13101339          <para>
    1311             sends a print job to an SMB printer.
     1340            sends a print job to an SMB printer
    13121341          </para>
    13131342          <indexterm zone="samba smbspool">
     
    13211350        <listitem>
    13221351          <para>
    1323             reports current <application>Samba</application> connections.
     1352            reports current <application>Samba</application> connections
    13241353          </para>
    13251354          <indexterm zone="samba smbstatus">
     
    13341363          <para>
    13351364            is a shell script used for backing up SMB/CIFS shares
    1336             directly to Linux tape drives or a file.
     1365            directly to Linux tape drives or a file
    13371366          </para>
    13381367          <indexterm zone="samba smbtar">
     
    13611390        <listitem>
    13621391          <para>
    1363             is  a testsuite that runs several tests against a SMB server.
     1392            is  a testsuite that runs several tests against a SMB server
    13641393          </para>
    13651394          <indexterm zone="samba smbtorture">
     
    13731402        <listitem>
    13741403          <para>
    1375             is a text-based SMB network browser.
     1404            is a text-based SMB network browser
    13761405          </para>
    13771406          <indexterm zone="samba smbtree">
     
    13861415          <para>
    13871416            is a tool for backing up or validating the integrity of
    1388             <application>Samba</application> <filename>.tdb</filename> files.
     1417            <application>Samba</application> <filename>.tdb</filename> files
    13891418          </para>
    13901419          <indexterm zone="samba tdbbackup">
     
    13991428          <para>
    14001429            is a tool used to print the contents of a
    1401             <application>Samba</application> <filename>.tdb</filename> file.
     1430            <application>Samba</application> <filename>.tdb</filename> file
    14021431          </para>
    14031432          <indexterm zone="samba tdbdump">
     
    14121441          <para>
    14131442            is a tool for creating a <application>Samba</application>
    1414             <filename>.tdb</filename> file out of a ntdbdump.
     1443            <filename>.tdb</filename> file out of a ntdbdump
    14151444          </para>
    14161445          <indexterm zone="samba tdbrestore">
     
    14251454          <para>
    14261455            is a tool which allows simple database manipulation from the
    1427             command line.
     1456            command line
    14281457          </para>
    14291458          <indexterm zone="samba tdbtool">
     
    14371466        <listitem>
    14381467          <para>
    1439             checks an <filename>smb.conf</filename> file for proper syntax.
     1468            checks an <filename>smb.conf</filename> file for proper syntax
    14401469          </para>
    14411470          <indexterm zone="samba testparm">
     
    14491478        <listitem>
    14501479          <para>
    1451             queries a running <command>winbindd</command> daemon.
     1480            queries a running <command>winbindd</command> daemon
    14521481          </para>
    14531482          <indexterm zone="samba wbinfo">
     
    14611490        <listitem>
    14621491          <para>
    1463             resolves names from Windows NT servers.
     1492            resolves names from Windows NT servers
    14641493          </para>
    14651494          <indexterm zone="samba winbindd">
     
    14701499
    14711500      <varlistentry id="libnss_winbind">
    1472         <term><filename class='libraryfile'>libnss_winbind.so</filename></term>
     1501        <term><filename class="libraryfile">libnss_winbind.so</filename></term>
    14731502        <listitem>
    14741503          <para>
    14751504            provides Name Service Switch API functions for resolving names
    1476             from NT servers.
     1505            from NT servers
    14771506          </para>
    14781507          <indexterm zone="samba libnss_winbind">
     
    14831512
    14841513      <varlistentry id="libnss_wins">
    1485         <term><filename class='libraryfile'>libnss_wins.so</filename></term>
     1514        <term><filename class="libraryfile">libnss_wins.so</filename></term>
    14861515        <listitem>
    14871516          <para>
    14881517            provides API functions for Samba's implementation of the
    1489             Windows Internet Naming Service.
     1518            Windows Internet Naming Service
    14901519          </para>
    14911520          <indexterm zone="samba libnss_wins">
     
    14961525
    14971526      <varlistentry id="libnetapi">
    1498         <term><filename class='libraryfile'>libnetapi.so</filename></term>
    1499         <listitem>
    1500           <para>
    1501             provides the API functions for the administration tools used
    1502             for Samba and remote CIFS servers.
     1527        <term><filename class="libraryfile">libnetapi.so</filename></term>
     1528        <listitem>
     1529          <para>
     1530            provides API functions for the administration tools used
     1531            for Samba and remote CIFS servers
    15031532          </para>
    15041533          <indexterm zone="samba libnetapi">
     
    15091538
    15101539      <varlistentry id="libsmbclient">
    1511         <term><filename class='libraryfile'>libsmbclient.so</filename></term>
    1512         <listitem>
    1513           <para>
    1514             provides the API functions for the Samba SMB client tools.
     1540        <term><filename class="libraryfile">libsmbclient.so</filename></term>
     1541        <listitem>
     1542          <para>
     1543            provides API functions for the Samba SMB client tools
    15151544          </para>
    15161545          <indexterm zone="samba libsmbclient">
     
    15211550<!--
    15221551      <varlistentry id="libsmbsharemodes">
    1523         <term><filename class='libraryfile'>libsmbsharemodes.so</filename></term>
     1552        <term><filename class="libraryfile">libsmbsharemodes.so</filename></term>
    15241553        <listitem>
    15251554          <para>
     
    15331562
    15341563      <varlistentry id="libwbclient">
    1535         <term><filename class='libraryfile'>libwbclient.so</filename></term>
    1536         <listitem>
    1537           <para>
    1538             provides API functions for Windows domain client services.
     1564        <term><filename class="libraryfile">libwbclient.so</filename></term>
     1565        <listitem>
     1566          <para>
     1567            provides API functions for Windows domain client services
    15391568          </para>
    15401569          <indexterm zone="samba libwbclient">
Note: See TracChangeset for help on using the changeset viewer.