From 777374243e15c53e7b0a7345e190c1018920be18 Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Sat, 11 May 2013 10:53:12 +0200 Subject: 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. --- src/man/sssd.conf.5.xml | 68 +++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 63 insertions(+), 5 deletions(-) (limited to 'src/man') 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 @@ full_name_format (string) - The default + A printf 3 -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. + + + The following expansions are supported: + + + %1$s + user name + + + %2$s + + + domain name as specified in the + SSSD config file. + + + + + %3$s + + + domain flat name. Mostly usable + for Active Directory domains, both + directly configured or disovered + via IPA trusts. + + + + Each domain can have an individual format string configured. @@ -1533,8 +1562,37 @@ override_homedir = /home/%u printf 3 -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. + + + The following expansions are supported: + + + %1$s + user name + + + %2$s + + + domain name as specified in the + SSSD config file. + + + + + %3$s + + + domain flat name. Mostly usable + for Active Directory domains, both + directly configured or disovered + via IPA trusts. + + + + Default: %1$s@%2$s. -- cgit