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 ```