ansible-role-openssh/tasks/template_config.yaml
2022-04-10 21:53:25 -04:00

30 lines
630 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
- name: Restart service
ansible.builtin.systemd:
name: sshd
enabled: true
state: restarted
when: sshd_config_file.changed
- name: Write banner file
ansible.builtin.template:
src: issue.net.j2
dest: "{{ ssh_banner_file }}"
mode: '0644'
when: ssh_banner