ansible-role-openssh/tasks/template_config.yaml
2022-10-09 21:03:35 -04:00

23 lines
485 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
notify: Restart sshd
- name: Write banner file
ansible.builtin.template:
src: issue.net.j2
dest: "{{ ssh_banner_file }}"
mode: '0644'
when: ssh_banner