Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/pambase:master commit in: templates/
Date: Mon, 12 Oct 2020 17:30:54
Message-Id: 1602523818.e0835e729bcf04f501d4610cf3925ec41b37c5f5.sam@gentoo
1 commit: e0835e729bcf04f501d4610cf3925ec41b37c5f5
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 12 17:30:18 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 12 17:30:18 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/pambase.git/commit/?id=e0835e72
7
8 templates/system-auth.tpl: drop superfluous conf param on faillock
9
10 pam_faillock defaults to /etc/security/faillock.conf anyway.
11
12 Closes: https://bugs.gentoo.org/747967
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 templates/system-auth.tpl | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18 diff --git a/templates/system-auth.tpl b/templates/system-auth.tpl
19 index 557da9b..bc28468 100644
20 --- a/templates/system-auth.tpl
21 +++ b/templates/system-auth.tpl
22 @@ -10,7 +10,7 @@ auth [success=1 default=ignore] pam_krb5.so {{ krb5_params }}
23 auth required pam_unix.so try_first_pass {{ likeauth }} {{ nullok|default('', true) }} {{ debug|default('', true) }}
24 auth optional pam_permit.so
25 {% if not minimal %}
26 -auth required pam_faillock.so preauth conf=/etc/security/faillock.conf
27 +auth required pam_faillock.so preauth
28 auth sufficient pam_unix.so nullok try_first_pass
29 auth [default=die] pam_faillock.so authfail
30 {% endif %}