|
---
|
|
- name: set sshd config
|
|
template:
|
|
src: sshd_config.j2
|
|
dest: /etc/ssh/sshd_config
|
|
mode: '0644'
|
|
owner: root
|
|
group: wheel
|
|
|
|
- name: setup host ssh certificates
|
|
include_tasks: certs.yml
|
|
|
|
- name: setup alpine ssh
|
|
include_tasks: alpine.yml
|
|
when: ansible_distribution == "Alpine"
|