2022-09-04 17:25:14 +02:00
|
|
|
---
|
2022-08-30 12:31:20 +02:00
|
|
|
- name: set sshd config
|
|
|
|
template:
|
|
|
|
src: sshd_config.j2
|
|
|
|
dest: /etc/ssh/sshd_config
|
|
|
|
mode: '0644'
|
|
|
|
owner: root
|
|
|
|
group: wheel
|
|
|
|
|
2022-09-02 10:12:36 +02:00
|
|
|
- name: setup host ssh certificates
|
|
|
|
include_tasks: certs.yml
|
|
|
|
|
2022-08-30 12:31:20 +02:00
|
|
|
- name: setup alpine ssh
|
|
|
|
include_tasks: alpine.yml
|
|
|
|
when: ansible_distribution == "Alpine"
|