diff options
author | Michal Zidek <mzidek@redhat.com> | 2014-07-15 13:16:28 -0400 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2014-07-29 14:52:09 +0200 |
commit | abbf4f494f57c2b0a7ad0ac758db24a1c05df9be (patch) | |
tree | 76a72e9cec823165136e23c6d9ee57da2d6a068d /src/man | |
parent | ff22e829fd73fc53027d1e6ca005a9ac334086dd (diff) | |
download | sssd-abbf4f494f57c2b0a7ad0ac758db24a1c05df9be.tar.gz sssd-abbf4f494f57c2b0a7ad0ac758db24a1c05df9be.tar.xz sssd-abbf4f494f57c2b0a7ad0ac758db24a1c05df9be.zip |
MAN: case_sensitivity man page update
Fixes:
https://fedorahosted.org/sssd/ticket/2367
Reviewed-by: Pavel Reichl <preichl@redhat.com>
Reviewed-by: Stephen Gallagher <sgallagh@redhat.com>
Diffstat (limited to 'src/man')
-rw-r--r-- | src/man/sssd.conf.5.xml | 33 |
1 files changed, 30 insertions, 3 deletions
diff --git a/src/man/sssd.conf.5.xml b/src/man/sssd.conf.5.xml index c6a137bbf..2eb0b6222 100644 --- a/src/man/sssd.conf.5.xml +++ b/src/man/sssd.conf.5.xml @@ -1838,15 +1838,42 @@ fallback_homedir = /home/%u </varlistentry> <varlistentry> - <term>case_sensitive (boolean)</term> + <term>case_sensitive (string)</term> <listitem> <para> Treat user and group names as case sensitive. At the moment, this option is not supported in - the local provider. + the local provider. Possible option values are: + <variablelist> + <varlistentry> + <term>True</term> + <listitem> + <para> + Case sensitive. This value is invalid + for AD provider. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term>False</term> + <listitem> + <para>Case insensitive.</para> + </listitem> + </varlistentry> + <varlistentry> + <term>Preserving</term> + <listitem> + <para> + Same as False (case insensitive), but + does not lowercase names in the output + of getpwnam and getgrnam. + </para> + </listitem> + </varlistentry> + </variablelist> </para> <para> - Default: True + Default: True (False for AD provider) </para> </listitem> </varlistentry> |