commit: c3471f99454e8d086e133beaaf28b129fb22fc40 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Tue Feb 2 15:50:25 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Feb 2 15:50:25 2021 +0000 URL: https://gitweb.gentoo.org/proj/pambase.git/commit/?id=c3471f99
templates/system-auth.tpl: fix try_first_pass typo Closes: https://github.com/gentoo/pambase/issues/6 Signed-off-by: Sam James <sam <AT> gentoo.org> templates/system-auth.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/system-auth.tpl b/templates/system-auth.tpl index 1adee05..62344ff 100644 --- a/templates/system-auth.tpl +++ b/templates/system-auth.tpl @@ -12,7 +12,7 @@ auth requisite pam_faillock.so preauth auth [success=2 default=ignore] pam_unix.so {{ nullok|default('', true) }} {{ debug|default('', true) }} try_first_pass auth [success=1 default=ignore] pam_systemd_home.so {% else %} -auth [success=1 default=ignore] pam_unix.so {{ nullok|default('', true) }} {{ debug|default('', true) }} try_first_pas +auth [success=1 default=ignore] pam_unix.so {{ nullok|default('', true) }} {{ debug|default('', true) }} try_first_pass {% endif %} auth [default=die] pam_faillock.so authfail
