diff options
author | Sumit Bose <sbose@redhat.com> | 2010-10-27 13:34:54 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2010-11-15 15:37:30 -0500 |
commit | 9468a58f9bd191ef80c114943a288037c635a835 (patch) | |
tree | 61d7209ebaea50aadc1b90ad7880a83579d6d254 /src/man | |
parent | 4b498111c49b254e9aa5e2b0d4fcc1ba24a04236 (diff) | |
download | sssd-9468a58f9bd191ef80c114943a288037c635a835.tar.gz sssd-9468a58f9bd191ef80c114943a288037c635a835.tar.bz2 sssd-9468a58f9bd191ef80c114943a288037c635a835.zip |
Introduce pam_verbosity config option
Currently we display all PAM messages generated by sssd to the user. But
only some of them are important and others are just some useful
information.
This patch introduces a new option to the PAM responder which controls
what kind of messages are displayed. As an example the 'Authenticated
with cached credentials' message is used. This message is only displayed
if pam_verbosity=1 or if there is an expire date.
Diffstat (limited to 'src/man')
-rw-r--r-- | src/man/sssd.conf.5.xml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/man/sssd.conf.5.xml b/src/man/sssd.conf.5.xml index 60ba169b..2bba3805 100644 --- a/src/man/sssd.conf.5.xml +++ b/src/man/sssd.conf.5.xml @@ -409,6 +409,37 @@ </para> </listitem> </varlistentry> + + <varlistentry> + <term>pam_verbosity (integer)</term> + <listitem> + <para> + Controls what kind of messages are shown to the user + during authentication. The higher the number to more + messages are displayed. + </para> + <para> + Currently sssd supports the following values: + </para> + <para> + <emphasis>0</emphasis>: do not show any message + </para> + <para> + <emphasis>1</emphasis>: show only important + messages + </para> + <para> + <emphasis>2</emphasis>: show informational messages + </para> + <para> + <emphasis>3</emphasis>: show all messages and debug + information + </para> + <para> + Default: 1 + </para> + </listitem> + </varlistentry> </variablelist> </refsect2> </refsect1> |