URL: https://github.com/SSSD/sssd/pull/911 Author: alexal Title: #911: Update pam_sss.8.xml Action: opened
PR body: """ pam_sss: Added return values on a man page Resolves: https://pagure.io/SSSD/sssd/issue/3672 """ To pull the PR as Git branch: git remote add ghsssd https://github.com/SSSD/sssd git fetch ghsssd pull/911/head:pr911 git checkout pr911
From 5758996422e7da746561e114ed6b91ca3e73632e Mon Sep 17 00:00:00 2001 From: Alex Rodin <[email protected]> Date: Mon, 21 Oct 2019 14:18:57 -0400 Subject: [PATCH] Update pam_sss.8.xml pam_sss: Added return values on a man page Resolves: https://pagure.io/SSSD/sssd/issue/3672 --- src/man/pam_sss.8.xml | 82 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) diff --git a/src/man/pam_sss.8.xml b/src/man/pam_sss.8.xml index 834d9d2683..7b31e0c93d 100644 --- a/src/man/pam_sss.8.xml +++ b/src/man/pam_sss.8.xml @@ -262,6 +262,88 @@ auth sufficient pam_sss.so allow_missing_name from other sources during access control.</para> </refsect1> + <refsect1 id="return_values"> + <title>RETURN VALUES</title> + <variablelist> + <varlistentry> + <term>PAM_SUCCESS</term> + <listitem> + <para> + The user is allowed to continue authentication. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term>PAM_USER_UNKNOWN</term> + <listitem> + <para> + The user is not known to the authentication service. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term>PAM_IGNORE</term> + <listitem> + <para> + The ignore_unknown_user option was specified and + the user does not exist. This causes the PAM framework + to ignore this module. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term>PAM_AUTHTOK_ERR</term> + <listitem> + <para> + Unable to obtain the new authentication token. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term>PAM_AUTHINFO_UNAVAIL</term> + <listitem> + <para> + Unable to access the authentication information. + This might be due to a network or hardware failure. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term>PAM_BUF_ERR</term> + <listitem> + <para> + A memory error occurred. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term>PAM_SYSTEM_ERR</term> + <listitem> + <para> + A system error occurred. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term>PAM_CRED_ERR</term> + <listitem> + <para> + Unable to set the credentials of the user. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term>PAM_CRED_INSUFFICIENT</term> + <listitem> + <para> + The application does not have sufficient credentials + to authenticate the user. + </para> + </listitem> + </varlistentry> + </variablelist> + </refsect1> + <refsect1 id='files'> <title>FILES</title> <para>If a password reset by root fails, because the corresponding SSSD
_______________________________________________ sssd-devel mailing list -- [email protected] To unsubscribe send an email to [email protected] Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedorahosted.org/archives/list/[email protected]
