Skip to content
Snippets Groups Projects
Commit d4a29b7b authored by Lars Beckers's avatar Lars Beckers
Browse files

ssh-server: allow disabling ssh password auth

parent d6ba4a46
No related branches found
No related tags found
No related merge requests found
Pipeline #249 failed
......@@ -4,6 +4,7 @@
ssh_authorized_keys: "{{ inventory_dir }}/files/keys"
ssh_mkhomedir: yes
ssh_strong_crypto: yes
ssh_password_auth: yes
ssh_gssapi: yes
ssh_sftp_options: ""
ssh_allow_groups: []
......@@ -52,7 +52,7 @@ PermitEmptyPasswords no
ChallengeResponseAuthentication no
# Change to no to disable tunnelled clear text passwords
#PasswordAuthentication yes
PasswordAuthentication {{ 'yes' if ssh_password_auth else 'no' }}
# Kerberos options
#KerberosAuthentication no
......
......@@ -44,7 +44,7 @@ PermitEmptyPasswords no
ChallengeResponseAuthentication no
# Change to no to disable tunnelled clear text passwords
#PasswordAuthentication yes
PasswordAuthentication {{ 'yes' if ssh_password_auth else 'no' }}
# Kerberos options
#KerberosAuthentication no
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment