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
|
2019-01-07 22:35:35 +00:00
|
|
|
stat:
|
|
|
|
path: "{{ matrix_synapse_media_store_path }}"
|
2018-08-17 06:02:12 +00:00
|
|
|
register: local_path_media_store_stat
|
|
|
|
ignore_errors: yes
|
|
|
|
|
|
|
|
# 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
|
2018-08-17 06:02:12 +00:00
|
|
|
file:
|
|
|
|
path: "{{ matrix_synapse_media_store_path }}"
|
|
|
|
state: directory
|
|
|
|
mode: 0750
|
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_username }}"
|
|
|
|
when: "not local_path_media_store_stat.failed and not local_path_media_store_stat.stat.exists"
|
|
|
|
|
2020-03-07 23:24:00 +00:00
|
|
|
- name: Ensure Synapse repository is present on self-build
|
2020-02-17 20:48:48 +00:00
|
|
|
git:
|
|
|
|
repo: https://github.com/matrix-org/synapse.git
|
2020-03-07 23:28:14 +00:00
|
|
|
dest: "{{ matrix_synapse_docker_src_files_path }}"
|
2020-02-17 20:48:48 +00:00
|
|
|
version: "{{ matrix_synapse_docker_image.split(':')[1] }}"
|
|
|
|
force: "yes"
|
2020-03-15 08:15:27 +00:00
|
|
|
when: "matrix_synapse_container_image_self_build"
|
2020-02-17 20:48:48 +00:00
|
|
|
|
2020-03-15 09:34:35 +00:00
|
|
|
- name: Ensure Synapse Docker image is built
|
2020-02-17 20:48:48 +00:00
|
|
|
docker_image:
|
|
|
|
name: "{{ matrix_synapse_docker_image }}"
|
|
|
|
source: build
|
|
|
|
build:
|
|
|
|
dockerfile: docker/Dockerfile
|
2020-03-07 23:28:14 +00:00
|
|
|
path: "{{ matrix_synapse_docker_src_files_path }}"
|
2020-02-17 20:48:48 +00:00
|
|
|
pull: yes
|
2020-03-15 08:15:27 +00:00
|
|
|
when: "matrix_synapse_container_image_self_build"
|
2020-02-17 20:48:48 +00:00
|
|
|
|
2019-04-23 07:20:56 +00:00
|
|
|
- name: Ensure Synapse Docker image is pulled
|
2018-08-17 06:02:12 +00:00
|
|
|
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"
|
2018-08-17 06:02:12 +00:00
|
|
|
|
2019-04-23 07:06:42 +00:00
|
|
|
- name: Check if a Synapse signing key exists
|
2018-08-17 06:02:12 +00:00
|
|
|
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.
|
|
|
|
# We don't care about those configuraiton 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
|
|
|
|
# a very recent 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
|
2019-02-25 08:42:27 +00:00
|
|
|
command: |
|
|
|
|
docker run
|
|
|
|
--rm
|
|
|
|
--name=matrix-config
|
|
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }}
|
|
|
|
--cap-drop=ALL
|
|
|
|
-v {{ matrix_synapse_config_dir_path }}:/data
|
2019-09-23 15:08:33 +00:00
|
|
|
-e UID={{ matrix_user_uid }}
|
|
|
|
-e GID={{ matrix_user_gid }}
|
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
|
2019-08-22 06:49:22 +00:00
|
|
|
copy:
|
|
|
|
content: "{{ matrix_synapse_configuration|to_nice_yaml }}"
|
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 }}"
|
|
|
|
group: "{{ matrix_user_username }}"
|
2018-08-17 06:02:12 +00:00
|
|
|
|
2019-04-23 07:20:56 +00:00
|
|
|
- name: Ensure Synapse log config installed
|
2018-08-17 06:02:12 +00:00
|
|
|
template:
|
|
|
|
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
|
|
|
|
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
|
|
|
|
service:
|
|
|
|
daemon_reload: yes
|
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
|
|
|
|
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"
|
2018-08-17 06:02:12 +00:00
|
|
|
mode: 0750
|