From 342ee869b23cbe67b3363cc85b6eaa88a647b953 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Tue, 9 Aug 2016 16:55:56 +0200 Subject: [PATCH] library/roles/sshd_config/defaults/main.yml: Set UsePam to 'no' as default. --- sshd_config/defaults/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sshd_config/defaults/main.yml b/sshd_config/defaults/main.yml index f7232432..2143c096 100644 --- a/sshd_config/defaults/main.yml +++ b/sshd_config/defaults/main.yml @@ -9,7 +9,7 @@ sshd_permit_empty_passwords: "no" # "no" or "without-password" sshd_permit_root_login: "without-password" sshd_strict_mode: "yes" -sshd_use_pam: "yes" +sshd_use_pam: "no" # set to "yes" only if you are using s/key or something equivalent sshd_challenge_response_authentication: "no" sshd_enable_sftp_subsystem: True