2018-08-17 06:02:12 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# This will throw a Permission Denied error if already mounted using fuse
|
2019-04-23 07:20:56 +00:00
|
|
|
- name: Check Synapse media store path
|
2022-07-18 08:22:05 +00:00
|
|
|
ansible.builtin.stat:
|
2019-01-07 22:35:35 +00:00
|
|
|
path: "{{ matrix_synapse_media_store_path }}"
|
2018-08-17 06:02:12 +00:00
|
|
|
register: local_path_media_store_stat
|
2022-02-05 20:32:54 +00:00
|
|
|
ignore_errors: true
|
2018-08-17 06:02:12 +00:00
|
|
|
|
|
|
|
# This is separate and conditional, to ensure we don't execute it
|
|
|
|
# if the path already exists or we failed to check, because it's mounted using fuse.
|
2019-04-23 07:20:56 +00:00
|
|
|
- name: Ensure Synapse media store path exists
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.file:
|
2018-08-17 06:02:12 +00:00
|
|
|
path: "{{ matrix_synapse_media_store_path }}"
|
|
|
|
state: directory
|
|
|
|
mode: 0750
|
|
|
|
owner: "{{ matrix_user_username }}"
|
2020-05-01 17:59:32 +00:00
|
|
|
group: "{{ matrix_user_groupname }}"
|
2018-08-17 06:02:12 +00:00
|
|
|
when: "not local_path_media_store_stat.failed and not local_path_media_store_stat.stat.exists"
|
|
|
|
|
2022-09-27 08:38:33 +00:00
|
|
|
- when: "matrix_synapse_container_image_self_build | bool"
|
|
|
|
block:
|
2022-02-05 20:32:54 +00:00
|
|
|
- name: Ensure Synapse repository is present on self-build
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.git:
|
2022-02-05 20:32:54 +00:00
|
|
|
repo: "{{ matrix_synapse_container_image_self_build_repo }}"
|
|
|
|
dest: "{{ matrix_synapse_docker_src_files_path }}"
|
|
|
|
version: "{{ matrix_synapse_docker_image.split(':')[1] }}"
|
|
|
|
force: "yes"
|
2022-04-14 05:52:37 +00:00
|
|
|
become: true
|
|
|
|
become_user: "{{ matrix_user_username }}"
|
2022-02-05 20:32:54 +00:00
|
|
|
register: matrix_synapse_git_pull_results
|
2020-02-17 20:48:48 +00:00
|
|
|
|
2022-02-05 20:32:54 +00:00
|
|
|
- name: Check if Synapse Docker image exists
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.command: "{{ matrix_host_command_docker }} images --quiet --filter 'reference={{ matrix_synapse_docker_image }}'"
|
2022-02-05 20:32:54 +00:00
|
|
|
register: matrix_synapse_docker_image_check_result
|
2022-07-18 09:28:39 +00:00
|
|
|
changed_when: false
|
2022-01-26 06:38:27 +00:00
|
|
|
|
2022-02-05 20:32:54 +00:00
|
|
|
# Invoking the `docker build` command here, instead of calling the `docker_image` Ansible module,
|
|
|
|
# because the latter does not support BuildKit.
|
|
|
|
# See: https://github.com/ansible-collections/community.general/issues/514
|
|
|
|
- name: Ensure Synapse Docker image is built
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.shell:
|
2022-02-05 20:32:54 +00:00
|
|
|
chdir: "{{ matrix_synapse_docker_src_files_path }}"
|
|
|
|
cmd: |
|
|
|
|
{{ matrix_host_command_docker }} build \
|
|
|
|
-t "{{ matrix_synapse_docker_image }}" \
|
|
|
|
-f docker/Dockerfile \
|
|
|
|
.
|
|
|
|
environment:
|
|
|
|
DOCKER_BUILDKIT: 1
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "matrix_synapse_git_pull_results.changed | bool or matrix_synapse_docker_image_check_result.stdout == ''"
|
2020-02-17 20:48:48 +00:00
|
|
|
|
2019-04-23 07:20:56 +00:00
|
|
|
- name: Ensure Synapse Docker image is pulled
|
2022-10-28 11:20:17 +00:00
|
|
|
community.docker.docker_image:
|
2018-11-01 06:46:47 +00:00
|
|
|
name: "{{ matrix_synapse_docker_image }}"
|
2019-05-22 10:43:33 +00:00
|
|
|
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
2019-06-10 11:23:51 +00:00
|
|
|
force_source: "{{ matrix_synapse_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_synapse_docker_image_force_pull }}"
|
2020-03-15 08:15:27 +00:00
|
|
|
when: "not matrix_synapse_container_image_self_build"
|
2022-03-17 15:37:11 +00:00
|
|
|
register: result
|
|
|
|
retries: "{{ matrix_container_retries_count }}"
|
|
|
|
delay: "{{ matrix_container_retries_delay }}"
|
|
|
|
until: result is not failed
|
2018-08-17 06:02:12 +00:00
|
|
|
|
2022-10-14 13:33:19 +00:00
|
|
|
- when: "matrix_synapse_container_image_customizations_enabled | bool"
|
|
|
|
block:
|
|
|
|
- name: Ensure customizations Dockerfile is created
|
|
|
|
ansible.builtin.template:
|
|
|
|
src: "{{ role_path }}/templates/synapse/customizations/Dockerfile.j2"
|
|
|
|
dest: "{{ matrix_synapse_customized_docker_src_files_path }}/Dockerfile"
|
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_groupname }}"
|
|
|
|
mode: 0640
|
|
|
|
|
|
|
|
- name: Ensure customized Docker image for Synapse is built
|
2022-10-28 11:20:17 +00:00
|
|
|
community.docker.docker_image:
|
2022-10-14 13:33:19 +00:00
|
|
|
name: "{{ matrix_synapse_docker_image_customized }}"
|
|
|
|
source: build
|
|
|
|
build:
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
path: "{{ matrix_synapse_customized_docker_src_files_path }}"
|
|
|
|
pull: true
|
|
|
|
|
2019-04-23 07:06:42 +00:00
|
|
|
- name: Check if a Synapse signing key exists
|
2022-07-18 08:22:05 +00:00
|
|
|
ansible.builtin.stat:
|
2019-04-23 07:06:42 +00:00
|
|
|
path: "{{ matrix_synapse_config_dir_path }}/{{ matrix_server_fqn_matrix }}.signing.key"
|
|
|
|
register: matrix_synapse_signing_key_stat
|
2018-08-17 06:02:12 +00:00
|
|
|
|
2019-04-23 07:06:42 +00:00
|
|
|
# We do this so that the signing key would get generated.
|
|
|
|
#
|
|
|
|
# This will also generate a default homeserver.yaml configuration file and a log configuration file.
|
2022-02-09 12:03:06 +00:00
|
|
|
# We don't care about those configuration files, as we replace them with our own anyway (see below).
|
2019-02-25 08:42:27 +00:00
|
|
|
#
|
|
|
|
# We don't use the `docker_container` module, because using it with `cap_drop` requires
|
2022-02-09 12:03:06 +00:00
|
|
|
# a very recent docker-py version, which is not available for a lot of people yet.
|
2019-04-23 07:20:56 +00:00
|
|
|
- name: Generate initial Synapse config and signing key
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.command: |
|
2019-02-25 08:42:27 +00:00
|
|
|
docker run
|
|
|
|
--rm
|
|
|
|
--name=matrix-config
|
|
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }}
|
|
|
|
--cap-drop=ALL
|
2020-11-24 08:15:12 +00:00
|
|
|
--mount type=bind,src={{ matrix_synapse_config_dir_path }},dst=/data
|
2019-02-25 08:42:27 +00:00
|
|
|
-e SYNAPSE_CONFIG_PATH=/data/homeserver.yaml
|
2019-02-28 09:51:09 +00:00
|
|
|
-e SYNAPSE_SERVER_NAME={{ matrix_server_fqn_matrix }}
|
2019-02-25 08:42:27 +00:00
|
|
|
-e SYNAPSE_REPORT_STATS=no
|
|
|
|
{{ matrix_synapse_docker_image }}
|
|
|
|
generate
|
2019-04-23 07:06:42 +00:00
|
|
|
when: "not matrix_synapse_signing_key_stat.stat.exists"
|
2018-08-17 06:02:12 +00:00
|
|
|
|
2019-04-23 07:20:56 +00:00
|
|
|
- name: Ensure Synapse homeserver config installed
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.copy:
|
2022-07-18 08:22:05 +00:00
|
|
|
content: "{{ matrix_synapse_configuration | to_nice_yaml(indent=2, width=999999) }}"
|
2018-08-17 06:02:12 +00:00
|
|
|
dest: "{{ matrix_synapse_config_dir_path }}/homeserver.yaml"
|
|
|
|
mode: 0644
|
2019-08-22 06:49:22 +00:00
|
|
|
owner: "{{ matrix_user_username }}"
|
2020-05-01 17:59:32 +00:00
|
|
|
group: "{{ matrix_user_groupname }}"
|
2018-08-17 06:02:12 +00:00
|
|
|
|
2019-04-23 07:20:56 +00:00
|
|
|
- name: Ensure Synapse log config installed
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.template:
|
2018-08-17 06:02:12 +00:00
|
|
|
src: "{{ matrix_synapse_template_synapse_log }}"
|
2019-02-28 09:51:09 +00:00
|
|
|
dest: "{{ matrix_synapse_config_dir_path }}/{{ matrix_server_fqn_matrix }}.log.config"
|
2018-08-17 06:02:12 +00:00
|
|
|
mode: 0644
|
|
|
|
|
|
|
|
- name: Ensure matrix-synapse.service installed
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.template:
|
2019-01-12 15:53:00 +00:00
|
|
|
src: "{{ role_path }}/templates/synapse/systemd/matrix-synapse.service.j2"
|
2020-03-24 18:27:58 +00:00
|
|
|
dest: "{{ matrix_systemd_path }}/matrix-synapse.service"
|
2018-08-17 06:02:12 +00:00
|
|
|
mode: 0644
|
2019-03-03 09:55:15 +00:00
|
|
|
register: matrix_synapse_systemd_service_result
|
|
|
|
|
|
|
|
- name: Ensure systemd reloaded after matrix-synapse.service installation
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.service:
|
2022-02-05 20:32:54 +00:00
|
|
|
daemon_reload: true
|
2019-05-21 15:25:59 +00:00
|
|
|
when: "matrix_synapse_systemd_service_result.changed"
|
2018-08-17 06:02:12 +00:00
|
|
|
|
|
|
|
- name: Ensure matrix-synapse-register-user script created
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.template:
|
2019-01-12 15:53:00 +00:00
|
|
|
src: "{{ role_path }}/templates/synapse/usr-local-bin/matrix-synapse-register-user.j2"
|
2020-03-24 18:27:58 +00:00
|
|
|
dest: "{{ matrix_local_bin_path }}/matrix-synapse-register-user"
|
2021-05-28 05:56:46 +00:00
|
|
|
mode: 0755
|
2022-06-23 14:44:11 +00:00
|
|
|
|
|
|
|
- name: Generate sample prometheus.yml for external scraping
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.template:
|
2022-06-23 14:44:11 +00:00
|
|
|
src: "{{ role_path }}/templates/synapse/prometheus/external_prometheus.yml.example.j2"
|
|
|
|
dest: "{{ matrix_synapse_base_path }}/external_prometheus.yml.example"
|
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_groupname }}"
|
|
|
|
mode: 0644
|
2022-07-18 08:22:05 +00:00
|
|
|
when: matrix_synapse_metrics_proxying_enabled | bool
|