ansible-role-openssh/tasks/template_config.yaml
2022-09-06 12:00:57 -04:00

25 lines
520 B
YAML

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