mirror of
https://github.com/roles-ansible/ansible_role_exim4.git
synced 2024-08-16 10:09:49 +02:00
10 lines
240 B
YAML
10 lines
240 B
YAML
---
|
|
- name: Configure exim4 (Debian)
|
|
become: true
|
|
ansible.builtin.template:
|
|
src: 'templates/exim4.conf.j2'
|
|
dest: "{{ exim4__configuration_file }}"
|
|
mode: 0644
|
|
owner: root
|
|
group: root
|
|
notify: systemctl restart exim4
|