12 lines
212 B
YAML
12 lines
212 B
YAML
---
|
|
- name: Configure SSH daemon
|
|
template:
|
|
src: sshd_config.j2
|
|
dest: /etc/ssh/sshd_config
|
|
backup: yes
|
|
mode: "0600"
|
|
owner: root
|
|
group: root
|
|
notify: restart sshd
|
|
tags:
|
|
- ssh-config |