ansible-role-openssh/tasks/template_config.yaml
2023-10-29 13:45:18 -04:00

23 lines
509 B
YAML

---
- name: Ensure destination for sshd_config exists
ansible.builtin.file:
path: "{{ openssh_sshd_config_path }}"
mode: '0644'
state: directory
- name: Write sshd_config file
ansible.builtin.template:
src: sshd_config.j2
dest: "{{ openssh_sshd_config_path }}/sshd_config"
mode: '0644'
become: true
notify: Restart sshd
- name: Write banner file
ansible.builtin.template:
src: issue.net.j2
dest: "{{ openssh_banner_file }}"
mode: '0644'
when: openssh_banner