From 8fc3ff041c187cb4cd4a468ec904ce2fafc9a23e Mon Sep 17 00:00:00 2001 From: Shourai <10200748+Shourai@users.noreply.github.com> Date: Sun, 26 May 2024 19:43:01 +0200 Subject: [PATCH] Update authentication delay til --- linux/authentication-delay.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/linux/authentication-delay.md b/linux/authentication-delay.md index 0ebd804..db4eed0 100644 --- a/linux/authentication-delay.md +++ b/linux/authentication-delay.md @@ -1,6 +1,7 @@ # Disable authentication delay add `nodelay` to the the line containing `pam_unix.so` and `pam_faillock.so` in + ``` /etc/pam.d/system-auth ``` @@ -12,9 +13,11 @@ auth required pam_faillock.so preauth nodelay auth [success=1 default=bad] pam_unix.so try_first_pass nullok nodelay +auth [default=die] pam_faillock.so authfail nodelay ``` see also: + ``` man pam_unix ```