2019-10-06 22:55:56 +02:00
|
|
|
---
|
|
|
|
|
# Server/Setup: Generic Setup Tasks (sshd)
|
|
|
|
|
|
|
|
|
|
# SSH
|
|
|
|
|
- name: setup - Copy sshd_config
|
2023-04-28 23:25:21 +02:00
|
|
|
become: true
|
2021-08-28 16:50:37 +02:00
|
|
|
ansible.builtin.template:
|
2020-03-08 18:00:06 +01:00
|
|
|
src: "{{ role_path }}/templates/sshd_config.j2"
|
2019-10-06 22:55:56 +02:00
|
|
|
dest: "/etc/ssh/sshd_config"
|
2023-04-28 23:25:21 +02:00
|
|
|
backup: true
|
2019-10-06 22:55:56 +02:00
|
|
|
notify:
|
2019-11-12 21:34:35 +01:00
|
|
|
- Restart sshd
|