13 lines
230 B
YAML
13 lines
230 B
YAML
|
---
|
||
|
# 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:
|
||
|
- Restart sshd
|