diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2013-05-11 10:53:12 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-05-30 13:46:10 +0200 |
commit | 777374243e15c53e7b0a7345e190c1018920be18 (patch) | |
tree | 4a343f9d58838d9eb155cdc68a218fac86de3b64 /src/man | |
parent | 48cb64a1d6cf2ceff9e698c4626689cb53f7499c (diff) | |
download | sssd-777374243e15c53e7b0a7345e190c1018920be18.tar.gz sssd-777374243e15c53e7b0a7345e190c1018920be18.tar.bz2 sssd-777374243e15c53e7b0a7345e190c1018920be18.zip |
Allow flat name in the FQname format
https://fedorahosted.org/sssd/ticket/1648
Adds another expansion in the printf format that allows the user to use
the domain flat name in the format.
Diffstat (limited to 'src/man')
-rw-r--r-- | src/man/sssd.conf.5.xml | 68 |
1 files changed, 63 insertions, 5 deletions
diff --git a/src/man/sssd.conf.5.xml b/src/man/sssd.conf.5.xml index b902964f..3bb1ca76 100644 --- a/src/man/sssd.conf.5.xml +++ b/src/man/sssd.conf.5.xml @@ -143,12 +143,41 @@ <term>full_name_format (string)</term> <listitem> <para> - The default <citerefentry> + A <citerefentry> <refentrytitle>printf</refentrytitle> <manvolnum>3</manvolnum> </citerefentry>-compatible format that describes how to - translate a (name, domain) tuple into a fully qualified - name. + compose a fully qualified name from user name + and domain name components. + </para> + <para> + The following expansions are supported: + <variablelist> + <varlistentry> + <term>%1$s</term> + <listitem><para>user name</para></listitem> + </varlistentry> + <varlistentry> + <term>%2$s</term> + <listitem> + <para> + domain name as specified in the + SSSD config file. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term>%3$s</term> + <listitem> + <para> + domain flat name. Mostly usable + for Active Directory domains, both + directly configured or disovered + via IPA trusts. + </para> + </listitem> + </varlistentry> + </variablelist> </para> <para> Each domain can have an individual format string configured. @@ -1533,8 +1562,37 @@ override_homedir = /home/%u <refentrytitle>printf</refentrytitle> <manvolnum>3</manvolnum> </citerefentry>-compatible format that describes how to - translate a (name, domain) tuple for this domain into a fully - qualified name. + compose a fully qualified name from user name + and domain name components. + </para> + <para> + The following expansions are supported: + <variablelist> + <varlistentry> + <term>%1$s</term> + <listitem><para>user name</para></listitem> + </varlistentry> + <varlistentry> + <term>%2$s</term> + <listitem> + <para> + domain name as specified in the + SSSD config file. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term>%3$s</term> + <listitem> + <para> + domain flat name. Mostly usable + for Active Directory domains, both + directly configured or disovered + via IPA trusts. + </para> + </listitem> + </varlistentry> + </variablelist> </para> <para> Default: <quote>%1$s@%2$s</quote>. |