homeserver/roles/mgrote.deactivate_ssh_password_login/tasks/main.yml
2020-08-18 11:57:53 +02:00

11 lines
262 B
YAML

---
- name: prohibit ssh login with password
become: yes
lineinfile:
path: /etc/ssh/sshd_config
regexp: '#PasswordAuthentication yes'
line: 'PasswordAuthentication no'
state: present
backrefs: yes
notify: restart_sshd