2018-08-14 13:11:41 +02:00
|
|
|
---
|
|
|
|
|
2019-01-12 16:53:00 +01:00
|
|
|
- name: Ensure mailer base path exists
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.file:
|
2020-06-08 08:52:34 +02:00
|
|
|
path: "{{ item.path }}"
|
2019-01-12 16:53:00 +01:00
|
|
|
state: directory
|
|
|
|
mode: 0750
|
|
|
|
owner: "{{ matrix_user_username }}"
|
2020-05-01 19:59:32 +02:00
|
|
|
group: "{{ matrix_user_groupname }}"
|
2020-06-08 08:52:34 +02:00
|
|
|
with_items:
|
2022-02-05 21:32:54 +01:00
|
|
|
- {path: "{{ matrix_mailer_base_path }}", when: true}
|
|
|
|
- {path: "{{ matrix_mailer_container_image_self_build_src_files_path }}", when: "{{ matrix_mailer_container_image_self_build }}"}
|
2022-11-24 10:33:30 +01:00
|
|
|
when: item.when | bool
|
2019-01-12 16:53:00 +01:00
|
|
|
|
2018-08-14 13:11:41 +02:00
|
|
|
- name: Ensure mailer environment variables file created
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.template:
|
2019-01-12 16:53:00 +01:00
|
|
|
src: "{{ role_path }}/templates/env-mailer.j2"
|
|
|
|
dest: "{{ matrix_mailer_base_path }}/env-mailer"
|
2018-08-14 13:11:41 +02:00
|
|
|
mode: 0640
|
|
|
|
|
2020-06-08 08:52:34 +02:00
|
|
|
- name: Ensure exim-relay repository is present on self-build
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.git:
|
2020-06-08 08:52:34 +02:00
|
|
|
repo: "{{ matrix_mailer_container_image_self_build_repository_url }}"
|
|
|
|
dest: "{{ matrix_mailer_container_image_self_build_src_files_path }}"
|
|
|
|
version: "{{ matrix_mailer_container_image_self_build_version }}"
|
|
|
|
force: "yes"
|
2022-04-14 07:52:37 +02:00
|
|
|
become: true
|
|
|
|
become_user: "{{ matrix_user_username }}"
|
2020-11-14 21:47:14 +01:00
|
|
|
register: matrix_mailer_git_pull_results
|
2022-11-24 10:33:30 +01:00
|
|
|
when: matrix_mailer_container_image_self_build | bool
|
2020-06-08 08:52:34 +02:00
|
|
|
|
|
|
|
- name: Ensure exim-relay Docker image is built
|
2022-10-28 13:20:17 +02:00
|
|
|
community.docker.docker_image:
|
2020-06-08 08:52:34 +02:00
|
|
|
name: "{{ matrix_mailer_docker_image }}"
|
|
|
|
source: build
|
2021-05-20 07:43:20 +02:00
|
|
|
force_source: "{{ matrix_mailer_git_pull_results.changed if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
|
|
|
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_mailer_git_pull_results.changed }}"
|
2020-06-08 08:52:34 +02:00
|
|
|
build:
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
path: "{{ matrix_mailer_container_image_self_build_src_files_path }}"
|
2022-02-05 21:32:54 +01:00
|
|
|
pull: true
|
2022-11-24 10:33:30 +01:00
|
|
|
when: matrix_mailer_container_image_self_build | bool
|
2020-06-08 08:52:34 +02:00
|
|
|
|
|
|
|
- name: Ensure exim-relay image is pulled
|
2022-10-28 13:20:17 +02:00
|
|
|
community.docker.docker_image:
|
2018-11-01 07:46:47 +01:00
|
|
|
name: "{{ matrix_mailer_docker_image }}"
|
2019-05-22 12:43:33 +02:00
|
|
|
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
2019-06-10 13:23:51 +02:00
|
|
|
force_source: "{{ matrix_mailer_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
|
|
|
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_mailer_docker_image_force_pull }}"
|
2022-11-24 10:33:30 +01:00
|
|
|
when: "not matrix_mailer_container_image_self_build | bool"
|
2022-03-17 16:37:11 +01:00
|
|
|
register: result
|
2022-11-04 15:44:29 +01:00
|
|
|
retries: "{{ devture_playbook_help_container_retries_count }}"
|
|
|
|
delay: "{{ devture_playbook_help_container_retries_delay }}"
|
2022-03-17 16:37:11 +01:00
|
|
|
until: result is not failed
|
2018-08-14 13:11:41 +02:00
|
|
|
|
|
|
|
- name: Ensure matrix-mailer.service installed
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.template:
|
2018-08-14 13:11:41 +02:00
|
|
|
src: "{{ role_path }}/templates/systemd/matrix-mailer.service.j2"
|
2022-11-04 15:38:38 +01:00
|
|
|
dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mailer.service"
|
2018-08-14 13:11:41 +02:00
|
|
|
mode: 0644
|
2019-03-03 10:55:15 +01:00
|
|
|
register: matrix_mailer_systemd_service_result
|
2018-08-14 13:11:41 +02:00
|
|
|
|
2019-03-03 10:55:15 +01:00
|
|
|
- name: Ensure systemd reloaded after matrix-mailer.service installation
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.service:
|
2022-02-05 21:32:54 +01:00
|
|
|
daemon_reload: true
|
2022-11-24 10:33:30 +01:00
|
|
|
when: matrix_mailer_systemd_service_result.changed | bool
|