2020-07-17 08:31:20 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Ensure Element paths exists
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.file:
|
2020-07-17 08:31:20 +00:00
|
|
|
path: "{{ item.path }}"
|
|
|
|
state: directory
|
|
|
|
mode: 0750
|
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_groupname }}"
|
|
|
|
with_items:
|
2022-02-05 20:32:54 +00:00
|
|
|
- {path: "{{ matrix_client_element_data_path }}", when: true}
|
|
|
|
- {path: "{{ matrix_client_element_docker_src_files_path }}", when: "{{ matrix_client_element_container_image_self_build }}"}
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "item.when | bool"
|
2020-07-17 08:31:20 +00:00
|
|
|
|
|
|
|
- name: Ensure Element Docker image is pulled
|
2022-10-28 11:20:17 +00:00
|
|
|
community.docker.docker_image:
|
2020-07-17 08:31:20 +00:00
|
|
|
name: "{{ matrix_client_element_docker_image }}"
|
|
|
|
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
|
|
|
force_source: "{{ matrix_client_element_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_client_element_docker_image_force_pull }}"
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "not matrix_client_element_container_image_self_build | bool"
|
2022-03-17 15:37:11 +00:00
|
|
|
register: result
|
2022-11-04 14:44:29 +00:00
|
|
|
retries: "{{ devture_playbook_help_container_retries_count }}"
|
|
|
|
delay: "{{ devture_playbook_help_container_retries_delay }}"
|
2022-03-17 15:37:11 +00:00
|
|
|
until: result is not failed
|
2020-07-17 08:31:20 +00:00
|
|
|
|
|
|
|
- name: Ensure Element repository is present on self-build
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.git:
|
2020-11-28 19:34:14 +00:00
|
|
|
repo: "{{ matrix_client_element_container_image_self_build_repo }}"
|
2020-07-17 08:31:20 +00:00
|
|
|
dest: "{{ matrix_client_element_docker_src_files_path }}"
|
|
|
|
version: "{{ matrix_client_element_docker_image.split(':')[1] }}"
|
|
|
|
force: "yes"
|
2022-04-14 05:52:37 +00:00
|
|
|
become: true
|
|
|
|
become_user: "{{ matrix_user_username }}"
|
2020-11-14 20:47:14 +00:00
|
|
|
register: matrix_client_element_git_pull_results
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "matrix_client_element_container_image_self_build | bool"
|
2020-07-17 08:31:20 +00:00
|
|
|
|
2021-10-29 08:13:01 +00:00
|
|
|
# See:
|
|
|
|
# - https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/1357
|
2023-12-15 10:18:18 +00:00
|
|
|
# - https://github.com/element-hq/element-web/issues/19544
|
2021-10-29 08:13:01 +00:00
|
|
|
- name: Patch webpack.config.js to support building on low-memory (<4G RAM) devices
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.lineinfile:
|
2021-10-29 08:13:01 +00:00
|
|
|
path: "{{ matrix_client_element_docker_src_files_path }}/webpack.config.js"
|
|
|
|
regexp: '(\s+)splitChunks: \{'
|
|
|
|
line: '\1splitChunks: { maxSize: 100000,'
|
2022-02-05 20:32:54 +00:00
|
|
|
backrefs: true
|
2021-10-29 08:13:01 +00:00
|
|
|
owner: root
|
2022-08-24 14:08:53 +00:00
|
|
|
group: root
|
2021-10-29 08:13:01 +00:00
|
|
|
mode: '0644'
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "matrix_client_element_container_image_self_build | bool and matrix_client_element_container_image_self_build_low_memory_system_patch_enabled | bool"
|
2021-10-29 08:13:01 +00:00
|
|
|
|
2020-07-17 08:31:20 +00:00
|
|
|
- name: Ensure Element Docker image is built
|
2022-12-05 08:02:54 +00:00
|
|
|
ansible.builtin.command:
|
|
|
|
cmd: |-
|
|
|
|
{{ devture_systemd_docker_base_host_command_docker }} buildx build
|
|
|
|
--tag={{ matrix_client_element_docker_image }}
|
|
|
|
--file={{ matrix_client_element_docker_src_files_path }}/Dockerfile
|
|
|
|
{{ matrix_client_element_docker_src_files_path }}
|
2023-03-07 15:28:10 +00:00
|
|
|
changed_when: true
|
2022-12-05 08:02:54 +00:00
|
|
|
when: matrix_client_element_container_image_self_build | bool
|
2020-07-17 08:31:20 +00:00
|
|
|
|
|
|
|
- name: Ensure Element configuration installed
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.copy:
|
2022-07-18 09:28:39 +00:00
|
|
|
content: "{{ matrix_client_element_configuration | to_nice_json }}"
|
2020-07-17 08:31:20 +00:00
|
|
|
dest: "{{ matrix_client_element_data_path }}/config.json"
|
|
|
|
mode: 0644
|
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_groupname }}"
|
|
|
|
|
2022-11-18 13:07:53 +00:00
|
|
|
- name: Ensure Element location sharing map style installed
|
|
|
|
when: matrix_client_element_location_sharing_enabled | bool
|
|
|
|
ansible.builtin.copy:
|
|
|
|
content: "{{ matrix_client_element_location_sharing_map_style | to_nice_json }}"
|
|
|
|
dest: "{{ matrix_client_element_data_path }}/map_style.json"
|
|
|
|
mode: 0644
|
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_groupname }}"
|
|
|
|
|
2020-07-17 08:31:20 +00:00
|
|
|
- name: Ensure Element config files installed
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.template:
|
2020-07-17 08:31:20 +00:00
|
|
|
src: "{{ item.src }}"
|
|
|
|
dest: "{{ matrix_client_element_data_path }}/{{ item.name }}"
|
|
|
|
mode: 0644
|
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_groupname }}"
|
|
|
|
with_items:
|
|
|
|
- {src: "{{ role_path }}/templates/nginx.conf.j2", name: "nginx.conf"}
|
2023-02-13 16:33:06 +00:00
|
|
|
- {src: "{{ role_path }}/templates/labels.j2", name: "labels"}
|
2021-01-27 10:36:57 +00:00
|
|
|
- {src: "{{ matrix_client_element_page_template_welcome_path }}", name: "welcome.html"}
|
2020-07-17 08:31:20 +00:00
|
|
|
- {src: "{{ matrix_client_element_embedded_pages_home_path }}", name: "home.html"}
|
2021-10-29 07:41:11 +00:00
|
|
|
when: "item.src is not none"
|
2020-07-17 08:31:20 +00:00
|
|
|
|
|
|
|
- name: Ensure Element config files removed
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.file:
|
2020-07-17 08:31:20 +00:00
|
|
|
path: "{{ matrix_client_element_data_path }}/{{ item.name }}"
|
|
|
|
state: absent
|
|
|
|
with_items:
|
|
|
|
- {src: "{{ matrix_client_element_embedded_pages_home_path }}", name: "home.html"}
|
2021-10-29 07:41:11 +00:00
|
|
|
when: "item.src is none"
|
2020-07-17 08:31:20 +00:00
|
|
|
|
2023-02-13 16:33:06 +00:00
|
|
|
- name: Ensure Element container network is created
|
|
|
|
community.general.docker_network:
|
2024-03-09 19:27:50 +00:00
|
|
|
enable_ipv6: "{{ matrix_ipv6_enabled }}"
|
2023-02-13 16:33:06 +00:00
|
|
|
name: "{{ matrix_client_element_container_network }}"
|
|
|
|
driver: bridge
|
|
|
|
|
2020-07-17 08:31:20 +00:00
|
|
|
- name: Ensure matrix-client-element.service installed
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.template:
|
2020-07-17 08:31:20 +00:00
|
|
|
src: "{{ role_path }}/templates/systemd/matrix-client-element.service.j2"
|
2022-11-04 14:38:38 +00:00
|
|
|
dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-client-element.service"
|
2020-07-17 08:31:20 +00:00
|
|
|
mode: 0644
|