2004-04-07 14:15:11 +04:00
<?xml version="1.0" encoding="iso-8859-1"?>
2005-03-12 22:33:59 +03:00
<!DOCTYPE refentry PUBLIC "-//Samba-Team//DTD DocBook V4.2-Based Variant V1.0//EN" "http://www.samba.org/samba/DTD/samba-doc">
2004-04-07 14:15:11 +04:00
<refentry id= "winbindd.8" >
<refmeta >
<refentrytitle > winbindd</refentrytitle>
<manvolnum > 8</manvolnum>
2008-04-07 00:26:45 +04:00
<refmiscinfo class= "source" > Samba</refmiscinfo>
<refmiscinfo class= "manual" > System Administration tools</refmiscinfo>
2013-07-08 11:07:32 +04:00
<refmiscinfo class= "version" > 4.1</refmiscinfo>
2004-04-07 14:15:11 +04:00
</refmeta>
<refnamediv >
<refname > winbindd</refname>
2007-08-21 02:47:12 +04:00
<refpurpose > Name Service Switch daemon for resolving names
2004-04-07 14:15:11 +04:00
from NT servers</refpurpose>
</refnamediv>
<refsynopsisdiv >
<cmdsynopsis >
<command > winbindd</command>
2013-10-15 17:11:33 +04:00
<arg choice= "opt" > -D|--daemon</arg>
<arg choice= "opt" > -F|--foreground</arg>
<arg choice= "opt" > -S|--stdout</arg>
<arg choice= "opt" > -i|--interactive</arg>
2004-04-07 14:15:11 +04:00
<arg choice= "opt" > -d < debug level> </arg>
<arg choice= "opt" > -s < smb config file> </arg>
2013-10-15 17:11:33 +04:00
<arg choice= "opt" > -n|--no-caching</arg>
2004-04-07 14:15:11 +04:00
</cmdsynopsis>
</refsynopsisdiv>
<refsect1 >
<title > DESCRIPTION</title>
2004-04-27 18:43:44 +04:00
<para > This program is part of the <citerefentry > <refentrytitle > samba</refentrytitle>
2004-04-07 14:15:11 +04:00
<manvolnum > 7</manvolnum> </citerefentry> suite.</para>
2007-08-21 02:47:12 +04:00
<para > <command > winbindd</command> is a daemon that provides
2004-09-25 04:20:54 +04:00
a number of services to the Name Service Switch capability found
2007-09-28 18:12:42 +04:00
in most modern C libraries, to arbitrary applications via PAM
2004-09-25 04:36:26 +04:00
and <command > ntlm_auth</command> and to Samba itself.</para>
2004-09-25 04:20:54 +04:00
2007-03-21 23:51:40 +03:00
<para > Even if winbind is not used for nsswitch, it still provides a
service to <command > smbd</command> , <command > ntlm_auth</command>
and the <command > pam_winbind.so</command> PAM module, by managing connections to
2011-05-31 02:26:39 +04:00
domain controllers. In this configuration the
2011-05-31 19:21:09 +04:00
<smbconfoption name= "idmap config * : range" />
parameter is not required. (This is known as `netlogon proxy only mode'.)</para>
2004-09-25 04:20:54 +04:00
2007-08-21 02:47:12 +04:00
<para > The Name Service Switch allows user
and system information to be obtained from different databases
services such as NIS or DNS. The exact behaviour can be configured
2010-01-20 15:34:50 +03:00
through the <filename > /etc/nsswitch.conf</filename> file.
2007-08-21 02:47:12 +04:00
Users and groups are allocated as they are resolved to a range
of user and group ids specified by the administrator of the
2004-04-07 14:15:11 +04:00
Samba system.</para>
2007-08-21 02:47:12 +04:00
<para > The service provided by <command > winbindd</command> is called `winbind' and
can be used to resolve user and group information from a
2004-04-07 14:15:11 +04:00
Windows NT server. The service can also provide authentication
services via an associated PAM module. </para>
2007-08-21 02:47:12 +04:00
2004-04-07 14:15:11 +04:00
<para >
2004-09-25 04:20:54 +04:00
The <filename > pam_winbind</filename> module supports the
<parameter > auth</parameter> , <parameter > account</parameter>
and <parameter > password</parameter>
2007-08-21 02:47:12 +04:00
module-types. It should be noted that the
2004-09-25 04:20:54 +04:00
<parameter > account</parameter> module simply performs a getpwnam() to verify that
the system can obtain a uid for the user, as the domain
controller has already performed access control. If the
<filename > libnss_winbind</filename> library has been correctly
installed, or an alternate source of names configured, this should always succeed.
2004-04-07 14:15:11 +04:00
</para>
2007-08-21 02:47:12 +04:00
<para > The following nsswitch databases are implemented by
2004-04-07 14:15:11 +04:00
the winbindd service: </para>
<variablelist >
<varlistentry >
<term > hosts</term>
<listitem > <para > This feature is only available on IRIX.
2007-08-21 02:47:12 +04:00
User information traditionally stored in
the <filename > hosts(5)</filename> file and used by
2004-04-07 14:15:11 +04:00
<command > gethostbyname(3)</command> functions. Names are
resolved through the WINS server or by broadcast.
</para> </listitem>
</varlistentry>
<varlistentry >
<term > passwd</term>
2007-08-21 02:47:12 +04:00
<listitem > <para > User information traditionally stored in
the <filename > passwd(5)</filename> file and used by
2004-04-07 14:15:11 +04:00
<command > getpwent(3)</command> functions. </para> </listitem>
</varlistentry>
<varlistentry >
<term > group</term>
2007-08-21 02:47:12 +04:00
<listitem > <para > Group information traditionally stored in
the <filename > group(5)</filename> file and used by
2004-04-07 14:15:11 +04:00
<command > getgrent(3)</command> functions. </para> </listitem>
</varlistentry>
</variablelist>
<para > For example, the following simple configuration in the
2007-08-21 02:47:12 +04:00
<filename > /etc/nsswitch.conf</filename> file can be used to initially
2004-04-07 14:15:11 +04:00
resolve user and group information from <filename > /etc/passwd
2007-08-21 02:47:12 +04:00
</filename> and <filename > /etc/group</filename> and then from the
2004-04-07 14:15:11 +04:00
Windows NT server.
2008-05-19 22:00:01 +04:00
</para>
2004-04-07 14:15:11 +04:00
<programlisting >
passwd: files winbind
group: files winbind
2008-05-19 22:00:01 +04:00
## only available on IRIX: use winbind to resolve hosts:
# hosts: files dns winbind
## All other NSS enabled systems should use libnss_wins.so like this:
hosts: files dns wins
</programlisting>
2004-04-07 14:15:11 +04:00
<para > The following simple configuration in the
<filename > /etc/nsswitch.conf</filename> file can be used to initially
resolve hostnames from <filename > /etc/hosts</filename> and then from the
WINS server.</para>
<programlisting >
hosts: files wins
</programlisting>
</refsect1>
<refsect1 >
<title > OPTIONS</title>
<variablelist >
2010-05-12 13:24:57 +04:00
<varlistentry >
2013-10-15 17:11:33 +04:00
<term > -D|--daemon</term>
2010-05-12 13:24:57 +04:00
<listitem > <para > If specified, this parameter causes
the server to operate as a daemon. That is, it detaches
itself and runs in the background on the appropriate port.
This switch is assumed if <command > winbindd</command> is
executed on the command line of a shell.
</para> </listitem>
</varlistentry>
2004-04-07 14:15:11 +04:00
<varlistentry >
2013-10-15 17:11:33 +04:00
<term > -F|--foreground</term>
2004-04-07 14:15:11 +04:00
<listitem > <para > If specified, this parameter causes
the main <command > winbindd</command> process to not daemonize,
i.e. double-fork and disassociate with the terminal.
Child processes are still created as normal to service
each connection request, but the main process does not
exit. This operation mode is suitable for running
<command > winbindd</command> under process supervisors such
as <command > supervise</command> and <command > svscan</command>
from Daniel J. Bernstein's <command > daemontools</command>
package, or the AIX process monitor.
</para> </listitem>
</varlistentry>
<varlistentry >
2013-10-15 17:11:33 +04:00
<term > -S|--stdout</term>
2004-04-07 14:15:11 +04:00
<listitem > <para > If specified, this parameter causes
<command > winbindd</command> to log to standard output rather
than a file.</para> </listitem>
</varlistentry>
2008-01-10 11:39:53 +03:00
&stdarg.server.debug;
2004-04-07 14:15:11 +04:00
&popt.common.samba;
&stdarg.help;
<varlistentry >
2013-10-15 17:11:33 +04:00
<term > -i|--interactive</term>
2007-08-21 02:47:12 +04:00
<listitem > <para > Tells <command > winbindd</command> to not
become a daemon and detach from the current terminal. This
option is used by developers when interactive debugging
2004-04-07 14:15:11 +04:00
of <command > winbindd</command> is required.
<command > winbindd</command> also logs to standard output,
as if the <command > -S</command> parameter had been given.
</para> </listitem>
</varlistentry>
<varlistentry >
2013-10-15 17:11:33 +04:00
<term > -n|--no-caching</term>
2012-11-06 15:49:42 +04:00
<listitem > <para > Disable some caching. This means winbindd will
often have to wait for a response from the domain controller
2007-08-21 02:47:12 +04:00
before it can respond to a client and this thus makes things
slower. The results will however be more accurate, since
results from the cache might not be up-to-date. This
2004-04-07 14:15:11 +04:00
might also temporarily hang winbindd if the DC doesn't respond.
2012-11-06 15:49:42 +04:00
This does not disable the samlogon cache, which is required for
group membership tracking in trusted environments.
2004-04-07 14:15:11 +04:00
</para> </listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1 >
<title > NAME AND ID RESOLUTION</title>
2007-08-21 02:47:12 +04:00
<para > Users and groups on a Windows NT server are assigned
a security id (SID) which is globally unique when the
user or group is created. To convert the Windows NT user or group
into a unix user or group, a mapping between SIDs and unix user
2004-04-07 14:15:11 +04:00
and group ids is required. This is one of the jobs that <command >
winbindd</command> performs. </para>
2007-08-21 02:47:12 +04:00
<para > As winbindd users and groups are resolved from a server, user
2004-04-07 14:15:11 +04:00
and group ids are allocated from a specified range. This
2007-08-21 02:47:12 +04:00
is done on a first come, first served basis, although all existing
users and groups will be mapped as soon as a client performs a user
or group enumeration command. The allocated unix ids are stored
2007-03-21 23:56:27 +03:00
in a database and will be remembered. </para>
2004-04-07 14:15:11 +04:00
2007-08-21 02:47:12 +04:00
<para > WARNING: The SID to unix id database is the only location
where the user and group mappings are stored by winbindd. If this
store is deleted or corrupted, there is no way for winbindd to
determine which user and group ids correspond to Windows NT user
2004-04-07 14:15:11 +04:00
and group rids. </para>
2004-09-25 04:20:54 +04:00
2004-04-07 14:15:11 +04:00
</refsect1>
<refsect1 >
<title > CONFIGURATION</title>
2007-08-21 02:47:12 +04:00
<para > Configuration of the <command > winbindd</command> daemon
2004-04-07 14:15:11 +04:00
is done through configuration parameters in the <citerefentry >
<refentrytitle > smb.conf</refentrytitle> <manvolnum > 5</manvolnum>
2007-08-21 02:47:12 +04:00
</citerefentry> file. All parameters should be specified in the
2004-04-07 14:15:11 +04:00
[global] section of smb.conf. </para>
<itemizedlist >
<listitem > <para >
2005-03-13 01:34:38 +03:00
<smbconfoption name= "winbind separator" /> </para> </listitem>
2004-04-07 14:15:11 +04:00
<listitem > <para >
2011-05-31 19:21:09 +04:00
<smbconfoption name= "idmap config * : range" /> </para> </listitem>
2004-04-07 14:15:11 +04:00
<listitem > <para >
2011-05-31 19:21:09 +04:00
<smbconfoption name= "idmap config * : backend" /> </para> </listitem>
2004-09-25 04:20:54 +04:00
<listitem > <para >
2005-03-13 01:34:38 +03:00
<smbconfoption name= "winbind cache time" /> </para> </listitem>
2004-04-07 14:15:11 +04:00
<listitem > <para >
2005-03-13 01:34:38 +03:00
<smbconfoption name= "winbind enum users" /> </para> </listitem>
2004-04-07 14:15:11 +04:00
<listitem > <para >
2005-03-13 01:34:38 +03:00
<smbconfoption name= "winbind enum groups" /> </para> </listitem>
2004-04-07 14:15:11 +04:00
<listitem > <para >
2005-03-13 01:34:38 +03:00
<smbconfoption name= "template homedir" /> </para> </listitem>
2004-04-07 14:15:11 +04:00
<listitem > <para >
2005-03-13 01:34:38 +03:00
<smbconfoption name= "template shell" /> </para> </listitem>
2004-04-07 14:15:11 +04:00
<listitem > <para >
2005-03-13 01:34:38 +03:00
<smbconfoption name= "winbind use default domain" /> </para> </listitem>
2007-06-03 01:13:20 +04:00
<listitem > <para >
<smbconfoption name= "winbind: rpc only" />
Setting this parameter forces winbindd to use RPC
instead of LDAP to retrieve information from Domain
Controllers.
</para> </listitem>
2004-04-07 14:15:11 +04:00
</itemizedlist>
</refsect1>
<refsect1 >
<title > EXAMPLE SETUP</title>
2005-07-07 01:23:58 +04:00
<para >
2007-08-21 02:47:12 +04:00
To setup winbindd for user and group lookups plus
authentication from a domain controller use something like the
2005-07-07 01:23:58 +04:00
following setup. This was tested on an early Red Hat Linux box.
</para>
2004-04-07 14:15:11 +04:00
2007-08-21 02:47:12 +04:00
<para > In <filename > /etc/nsswitch.conf</filename> put the
2004-04-07 14:15:11 +04:00
following:
<programlisting >
2005-07-07 01:23:58 +04:00
passwd: files winbind
group: files winbind
</programlisting>
2007-08-21 02:47:12 +04:00
</para>
2004-04-07 14:15:11 +04:00
<para > In <filename > /etc/pam.d/*</filename> replace the <parameter >
auth</parameter> lines with something like this:
<programlisting >
2005-07-07 01:23:58 +04:00
auth required /lib/security/pam_securetty.so
auth required /lib/security/pam_nologin.so
auth sufficient /lib/security/pam_winbind.so
2005-11-01 00:17:48 +03:00
auth required /lib/security/pam_unix.so \
2005-07-07 01:23:58 +04:00
use_first_pass shadow nullok
</programlisting>
</para>
2007-08-21 02:47:12 +04:00
2005-11-01 00:17:48 +03:00
<note > <para >
The PAM module pam_unix has recently replaced the module pam_pwdb.
Some Linux systems use the module pam_unix2 in place of pam_unix.
</para> </note>
2004-04-07 14:15:11 +04:00
<para > Note in particular the use of the <parameter > sufficient
</parameter> keyword and the <parameter > use_first_pass</parameter> keyword. </para>
2007-08-21 02:47:12 +04:00
<para > Now replace the account lines with this: </para>
2004-04-07 14:15:11 +04:00
<para > <command > account required /lib/security/pam_winbind.so
</command> </para>
2007-08-21 02:47:12 +04:00
<para > The next step is to join the domain. To do that use the
2004-04-07 14:15:11 +04:00
<command > net</command> program like this: </para>
2007-08-21 02:47:12 +04:00
2004-04-07 14:15:11 +04:00
<para > <command > net join -S PDC -U Administrator</command> </para>
2007-08-21 02:47:12 +04:00
2004-04-07 14:15:11 +04:00
<para > The username after the <parameter > -U</parameter> can be any
Domain user that has administrator privileges on the machine.
Substitute the name or IP of your PDC for "PDC".</para>
2007-08-21 02:47:12 +04:00
<para > Next copy <filename > libnss_winbind.so</filename> to
2004-04-07 14:15:11 +04:00
<filename > /lib</filename> and <filename > pam_winbind.so
</filename> to <filename > /lib/security</filename> . A symbolic link needs to be
made from <filename > /lib/libnss_winbind.so</filename> to
<filename > /lib/libnss_winbind.so.2</filename> . If you are using an
older version of glibc then the target of the link should be
<filename > /lib/libnss_winbind.so.1</filename> .</para>
<para > Finally, setup a <citerefentry > <refentrytitle > smb.conf</refentrytitle>
2007-08-21 02:47:12 +04:00
<manvolnum > 5</manvolnum> </citerefentry> containing directives like the
2004-04-07 14:15:11 +04:00
following:
<programlisting >
[global]
winbind separator = +
winbind cache time = 10
template shell = /bin/bash
template homedir = /home/%D/%U
2011-05-31 02:26:27 +04:00
idmap config * : range = 10000-20000
2004-04-07 14:15:11 +04:00
workgroup = DOMAIN
security = domain
password server = *
</programlisting> </para>
2007-08-21 02:47:12 +04:00
<para > Now start winbindd and you should find that your user and
group database is expanded to include your NT users and groups,
and that you can login to your unix box as a domain user, using
the DOMAIN+user syntax for the username. You may wish to use the
2004-04-07 14:15:11 +04:00
commands <command > getent passwd</command> and <command > getent group
</command> to confirm the correct operation of winbindd.</para>
</refsect1>
<refsect1 >
<title > NOTES</title>
2007-08-21 02:47:12 +04:00
<para > The following notes are useful when configuring and
2004-04-07 14:15:11 +04:00
running <command > winbindd</command> : </para>
<para > <citerefentry > <refentrytitle > nmbd</refentrytitle>
2007-08-21 02:47:12 +04:00
<manvolnum > 8</manvolnum> </citerefentry> must be running on the local machine
2004-09-25 04:20:54 +04:00
for <command > winbindd</command> to work. </para>
2004-04-07 14:15:11 +04:00
2007-08-21 02:47:12 +04:00
<para > PAM is really easy to misconfigure. Make sure you know what
you are doing when modifying PAM configuration files. It is possible
2004-04-07 14:15:11 +04:00
to set up PAM such that you can no longer log into your system. </para>
2007-08-21 02:47:12 +04:00
<para > If more than one UNIX machine is running <command > winbindd</command> ,
then in general the user and groups ids allocated by winbindd will not
be the same. The user and group ids will only be valid for the local
2011-05-31 19:21:09 +04:00
machine, unless a shared <smbconfoption name= "idmap config * : backend" /> is configured.</para>
2004-04-07 14:15:11 +04:00
2013-10-14 19:55:03 +04:00
<para > If the Windows NT SID to UNIX user and group id mapping
2004-04-07 14:15:11 +04:00
file is damaged or destroyed then the mappings will be lost. </para>
</refsect1>
<refsect1 >
<title > SIGNALS</title>
2007-08-21 02:47:12 +04:00
<para > The following signals can be used to manipulate the
2004-04-07 14:15:11 +04:00
<command > winbindd</command> daemon. </para>
<variablelist >
<varlistentry >
<term > SIGHUP</term>
<listitem > <para > Reload the <citerefentry > <refentrytitle > smb.conf</refentrytitle>
2007-08-21 02:47:12 +04:00
<manvolnum > 5</manvolnum> </citerefentry> file and
apply any parameter changes to the running
version of winbindd. This signal also clears any cached
user and group information. The list of other domains trusted
2004-04-07 14:15:11 +04:00
by winbindd is also reloaded. </para> </listitem>
</varlistentry>
<varlistentry >
<term > SIGUSR2</term>
<listitem > <para > The SIGUSR2 signal will cause <command >
2007-08-21 02:47:12 +04:00
winbindd</command> to write status information to the winbind
2004-09-25 04:20:54 +04:00
log file.</para>
2004-04-07 14:15:11 +04:00
2007-08-21 02:47:12 +04:00
<para > Log files are stored in the filename specified by the
2004-04-07 14:15:11 +04:00
log file parameter.</para> </listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1 >
<title > FILES</title>
<variablelist >
<varlistentry >
<term > <filename > /etc/nsswitch.conf(5)</filename> </term>
<listitem > <para > Name service switch configuration file.</para>
</listitem>
</varlistentry>
2007-08-21 02:47:12 +04:00
2004-04-07 14:15:11 +04:00
<varlistentry >
<term > /tmp/.winbindd/pipe</term>
2007-08-21 02:47:12 +04:00
<listitem > <para > The UNIX pipe over which clients communicate with
the <command > winbindd</command> program. For security reasons, the
winbind client will only attempt to connect to the winbindd daemon
2004-04-07 14:15:11 +04:00
if both the <filename > /tmp/.winbindd</filename> directory
2007-08-21 02:47:12 +04:00
and <filename > /tmp/.winbindd/pipe</filename> file are owned by
2004-04-07 14:15:11 +04:00
root. </para> </listitem>
</varlistentry>
<varlistentry >
2005-02-01 01:48:22 +03:00
<term > $LOCKDIR/winbindd_privileged/pipe</term>
2007-08-21 02:47:12 +04:00
<listitem > <para > The UNIX pipe over which 'privileged' clients
communicate with the <command > winbindd</command> program. For security
reasons, access to some winbindd functions - like those needed by
2004-04-07 14:15:11 +04:00
the <command > ntlm_auth</command> utility - is restricted. By default,
only users in the 'root' group will get this access, however the administrator
2005-02-01 01:48:22 +03:00
may change the group permissions on $LOCKDIR/winbindd_privileged to allow
2004-04-07 14:15:11 +04:00
programs like 'squid' to use ntlm_auth.
2007-08-21 02:47:12 +04:00
Note that the winbind client will only attempt to connect to the winbindd daemon
2005-02-01 01:48:22 +03:00
if both the <filename > $LOCKDIR/winbindd_privileged</filename> directory
2007-08-21 02:47:12 +04:00
and <filename > $LOCKDIR/winbindd_privileged/pipe</filename> file are owned by
2004-04-07 14:15:11 +04:00
root. </para> </listitem>
</varlistentry>
<varlistentry >
<term > /lib/libnss_winbind.so.X</term>
<listitem > <para > Implementation of name service switch library.
</para> </listitem>
</varlistentry>
2007-08-21 02:47:12 +04:00
2004-04-07 14:15:11 +04:00
<varlistentry >
<term > $LOCKDIR/winbindd_idmap.tdb</term>
2007-08-21 02:47:12 +04:00
<listitem > <para > Storage for the Windows NT rid to UNIX user/group
id mapping. The lock directory is specified when Samba is initially
2004-04-07 14:15:11 +04:00
compiled using the <parameter > --with-lockdir</parameter> option.
This directory is by default <filename > /usr/local/samba/var/locks
</filename> . </para> </listitem>
</varlistentry>
2007-08-21 02:47:12 +04:00
2004-04-07 14:15:11 +04:00
<varlistentry >
<term > $LOCKDIR/winbindd_cache.tdb</term>
<listitem > <para > Storage for cached user and group information.
</para> </listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1 >
<title > VERSION</title>
2008-06-23 12:28:09 +04:00
<para > This man page is correct for version 3 of
2004-04-07 14:15:11 +04:00
the Samba suite.</para>
</refsect1>
<refsect1 >
<title > SEE ALSO</title>
2007-08-21 02:47:12 +04:00
2004-04-07 14:15:11 +04:00
<para > <filename > nsswitch.conf(5)</filename> , <citerefentry >
2004-04-27 18:43:44 +04:00
<refentrytitle > samba</refentrytitle>
2004-04-07 14:15:11 +04:00
<manvolnum > 7</manvolnum> </citerefentry> , <citerefentry >
<refentrytitle > wbinfo</refentrytitle>
2004-09-25 04:20:54 +04:00
<manvolnum > 1</manvolnum> </citerefentry> , <citerefentry >
<refentrytitle > ntlm_auth</refentrytitle>
2004-04-07 14:15:11 +04:00
<manvolnum > 8</manvolnum> </citerefentry> , <citerefentry >
<refentrytitle > smb.conf</refentrytitle>
2005-01-21 01:28:27 +03:00
<manvolnum > 5</manvolnum> </citerefentry> , <citerefentry >
<refentrytitle > pam_winbind</refentrytitle>
<manvolnum > 8</manvolnum> </citerefentry> </para>
2004-04-07 14:15:11 +04:00
</refsect1>
<refsect1 >
<title > AUTHOR</title>
2007-08-21 02:47:12 +04:00
<para > The original Samba software and related utilities
2004-04-07 14:15:11 +04:00
were created by Andrew Tridgell. Samba is now developed
2007-08-21 02:47:12 +04:00
by the Samba Team as an Open Source project similar
2004-04-07 14:15:11 +04:00
to the way the Linux kernel is developed.</para>
2007-08-21 02:47:12 +04:00
<para > <command > wbinfo</command> and <command > winbindd</command> were
2004-04-07 14:15:11 +04:00
written by Tim Potter.</para>
2007-08-21 02:47:12 +04:00
<para > The conversion to DocBook for Samba 2.2 was done
2004-04-07 14:15:11 +04:00
by Gerald Carter. The conversion to DocBook XML 4.2 for
Samba 3.0 was done by Alexander Bokovoy.</para>
</refsect1>
</refentry>