2020-08-18 11:57:53 +02:00
|
|
|
---
|
|
|
|
- name: prohibit ssh login with password
|
|
|
|
become: yes
|
2020-11-21 19:41:19 +01:00
|
|
|
ansible.builtin.lineinfile:
|
2020-08-18 11:57:53 +02:00
|
|
|
path: /etc/ssh/sshd_config
|
|
|
|
regexp: '#PasswordAuthentication yes'
|
|
|
|
line: 'PasswordAuthentication no'
|
|
|
|
state: present
|
2020-12-25 20:56:42 +01:00
|
|
|
validate: "/usr/sbin/sshd -T -f %s"
|
2020-08-18 11:57:53 +02:00
|
|
|
notify: restart_sshd
|