computer-playbook/roles/native-sshd/tasks/main.yml

11 lines
236 B
YAML
Raw Normal View History

2021-01-10 15:26:41 +01:00
- name: create sshd_config_files directory
file:
path: /etc/ssh/sshd_config_files
state: directory
2021-01-01 16:11:12 +01:00
- name: create sshd_config
copy:
src: sshd_config
dest: /etc/ssh/sshd_config
backup: yes
2020-12-24 14:27:31 +01:00
notify: sshd restart