role.ssh-keyonly/tasks/main.yml

17 lines
308 B
YAML
Raw Normal View History

---
- name: "Set «PermitRootLogin» to «without-password»"
lineinfile:
dest: /etc/ssh/sshd_config
2023-06-03 11:41:32 +00:00
regexp: '^#* *PermitRootLogin'
line: "PermitRootLogin without-password"
backup: yes
- name: Restart sshd
service:
name: "{{ ssh_service_name }}"
state: restarted
sleep: 5