mirror of
https://codeberg.org/privacy1st/arch
synced 2025-04-11 18:16:43 +02:00
10 lines
263 B
Bash
10 lines
263 B
Bash
#!/bin/sh
|
|
# stdin: default config
|
|
# stdout: modified config
|
|
set -e
|
|
cat
|
|
|
|
# Enforce a delay after a failed login attempt
|
|
# - https://wiki.archlinux.org/title/Security#Enforce_a_delay_after_a_failed_login_attempt
|
|
echo 'auth optional pam_faildelay.so delay=10000000'
|