Copy over sshd config.

This commit is contained in:
Tom Alexander
2022-10-12 00:01:57 -04:00
parent d13e235879
commit e5d3afc7b8
3 changed files with 135 additions and 0 deletions

View File

@@ -1,3 +1,15 @@
- name: Install Configuration
when: sshd_conf is defined
copy:
src: "files/{{ sshd_conf }}"
dest: "{{ item }}"
mode: 0644
owner: root
group: wheel
notify: restart sshd
loop:
- /etc/ssh/sshd_config
- import_tasks: tasks/freebsd.yaml
when: 'os_flavor == "freebsd"'