diff options
author | goodNETnick <pknet@ya.ru> | 2022-10-12 10:21:29 -0400 |
---|---|---|
committer | goodNETnick <pknet@ya.ru> | 2022-10-12 10:21:29 -0400 |
commit | 9821465445b4ec314afb922a8679a51ee0b2297b (patch) | |
tree | a147b31c4dadf473b665936927173d06eb92002a | |
parent | 1c16a56e7b29da98e9e753d6e64d2417359a4ced (diff) | |
download | vyos-1x-9821465445b4ec314afb922a8679a51ee0b2297b.tar.gz vyos-1x-9821465445b4ec314afb922a8679a51ee0b2297b.zip |
system login: T874: add 2FA support for local and ssh authentication. Bugfix
-rw-r--r-- | debian/vyos-1x.postinst | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/debian/vyos-1x.postinst b/debian/vyos-1x.postinst index dc64e7a42..9766c91b1 100644 --- a/debian/vyos-1x.postinst +++ b/debian/vyos-1x.postinst @@ -23,13 +23,11 @@ fi # Add 2FA support for SSH sudo grep -qF -- "auth required pam_google_authenticator.so nullok" "/etc/pam.d/sshd" || \ -sudo sed -i '/^@include common-auth/a # Check OTP 2FA, if configured for the user\nauth required pam_google_authenticator.so nullok' /etc/pam.d/sshd \ -/ +sudo sed -i '/^@include common-auth/a # Check OTP 2FA, if configured for the user\nauth required pam_google_authenticator.so nullok' /etc/pam.d/sshd # Add 2FA support for local authentication sudo grep -qF -- "auth required pam_google_authenticator.so nullok" "/etc/pam.d/login" || \ -sudo sed -i '/^@include common-auth/a # Check OTP 2FA, if configured for the user\nauth required pam_google_authenticator.so nullok' /etc/pam.d/login \ -/ +sudo sed -i '/^@include common-auth/a # Check OTP 2FA, if configured for the user\nauth required pam_google_authenticator.so nullok' /etc/pam.d/login # Add RADIUS operator user for RADIUS authenticated users to map to if ! grep -q '^radius_user' /etc/passwd; then |