2019-10-06 20:55:56 +00:00
|
|
|
---
|
|
|
|
# Server/Setup: Generic Setup Tasks (sshd)
|
|
|
|
|
|
|
|
# SSH
|
|
|
|
- name: setup - Copy sshd_config
|
|
|
|
become: yes
|
|
|
|
copy:
|
|
|
|
src: "{{ role_path }}/files/sshd_config"
|
|
|
|
dest: "/etc/ssh/sshd_config"
|
|
|
|
backup: yes
|
|
|
|
notify:
|
2019-11-12 20:34:35 +00:00
|
|
|
- Restart sshd
|