2017-07-31 20:07:30 +00:00
|
|
|
---
|
|
|
|
|
2018-06-26 18:05:59 +00:00
|
|
|
- name: Fail if Macaroon key is missing
|
|
|
|
fail:
|
|
|
|
msg: "You need to set a secret in the matrix_synapse_macaroon_secret_key variable"
|
|
|
|
when: "matrix_synapse_macaroon_secret_key == ''"
|
|
|
|
|
2017-09-07 09:12:31 +00:00
|
|
|
- name: Ensure Matrix Synapse paths exists
|
2017-07-31 20:07:30 +00:00
|
|
|
file:
|
2017-09-07 09:12:31 +00:00
|
|
|
path: "{{ item }}"
|
2017-07-31 20:07:30 +00:00
|
|
|
state: directory
|
|
|
|
mode: 0750
|
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_username }}"
|
2017-09-07 09:12:31 +00:00
|
|
|
with_items:
|
|
|
|
- "{{ matrix_synapse_config_dir_path }}"
|
|
|
|
- "{{ matrix_synapse_run_path }}"
|
2018-02-20 19:36:08 +00:00
|
|
|
- "{{ matrix_synapse_storage_path }}"
|
2017-09-07 15:26:41 +00:00
|
|
|
# We handle matrix_synapse_media_store_path below, not here,
|
|
|
|
# because if it's using S3fs and it's already mounted (from before),
|
|
|
|
# trying to chown/chmod it here will cause trouble.
|
|
|
|
|
2018-02-20 19:36:08 +00:00
|
|
|
# This will throw a Permission Denied error if already mounted using fuse
|
2017-09-07 15:26:41 +00:00
|
|
|
- name: Check Matrix Synapse media store path
|
|
|
|
stat: path="{{ matrix_synapse_media_store_path }}"
|
|
|
|
register: local_path_media_store_stat
|
2018-02-20 19:36:08 +00:00
|
|
|
ignore_errors: yes
|
2017-09-07 15:26:41 +00:00
|
|
|
|
|
|
|
# This is separate and conditional, to ensure we don't execute it
|
2018-02-20 19:36:08 +00:00
|
|
|
# if the path already exists or we failed to check, because it's mounted using fuse.
|
2017-09-07 15:26:41 +00:00
|
|
|
- name: Ensure Matrix media store path exists
|
|
|
|
file:
|
|
|
|
path: "{{ matrix_synapse_media_store_path }}"
|
|
|
|
state: directory
|
|
|
|
mode: 0750
|
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_username }}"
|
2018-02-20 19:36:08 +00:00
|
|
|
when: "not local_path_media_store_stat.failed and not local_path_media_store_stat.stat.exists"
|
2017-07-31 20:07:30 +00:00
|
|
|
|
|
|
|
- name: Ensure Matrix Docker image is pulled
|
|
|
|
docker_image:
|
|
|
|
name: "{{ docker_matrix_image }}"
|
|
|
|
|
2017-08-12 08:06:57 +00:00
|
|
|
- name: Check if a Matrix Synapse configuration exists
|
|
|
|
stat:
|
2017-09-07 09:12:31 +00:00
|
|
|
path: "{{ matrix_synapse_config_dir_path }}/homeserver.yaml"
|
2017-08-12 08:06:57 +00:00
|
|
|
register: matrix_synapse_config_stat
|
|
|
|
|
2018-06-26 18:05:59 +00:00
|
|
|
# We do this mostly so that the keys would get generated.
|
|
|
|
# We'll replace the rest of the configuration with our own templates below.
|
2017-07-31 20:07:30 +00:00
|
|
|
- name: Generate initial Matrix config
|
|
|
|
docker_container:
|
|
|
|
name: matrix-config
|
|
|
|
image: "{{ docker_matrix_image }}"
|
|
|
|
detach: no
|
|
|
|
cleanup: yes
|
|
|
|
command: generate
|
|
|
|
env:
|
2018-05-25 18:58:53 +00:00
|
|
|
SYNAPSE_CONFIG_PATH: "/data/homeserver.yaml"
|
|
|
|
SYNAPSE_SERVER_NAME: "{{ hostname_matrix }}"
|
|
|
|
SYNAPSE_REPORT_STATS: "no"
|
2017-07-31 20:07:30 +00:00
|
|
|
user: "{{ matrix_user_uid }}:{{ matrix_user_gid }}"
|
|
|
|
volumes:
|
2017-09-07 09:12:31 +00:00
|
|
|
- "{{ matrix_synapse_config_dir_path }}:/data"
|
2017-08-12 08:06:57 +00:00
|
|
|
when: "not matrix_synapse_config_stat.stat.exists"
|
2017-07-31 20:07:30 +00:00
|
|
|
|
2018-06-26 18:05:59 +00:00
|
|
|
- name: Ensure Matrix homeserver config installed
|
|
|
|
template:
|
|
|
|
src: "{{ matrix_synapse_template_synapse_homeserver }}"
|
2017-09-07 09:12:31 +00:00
|
|
|
dest: "{{ matrix_synapse_config_dir_path }}/homeserver.yaml"
|
2018-06-26 18:05:59 +00:00
|
|
|
mode: 0644
|
2017-08-06 15:26:06 +00:00
|
|
|
|
2018-06-26 18:05:59 +00:00
|
|
|
- name: Ensure Matrix log config installed
|
|
|
|
template:
|
|
|
|
src: "{{ matrix_synapse_template_synapse_log }}"
|
|
|
|
dest: "{{ matrix_synapse_config_dir_path }}/{{ hostname_matrix }}.log.config"
|
|
|
|
mode: 0644
|
2017-07-31 20:07:30 +00:00
|
|
|
|
|
|
|
- name: Ensure matrix-synapse.service installed
|
|
|
|
template:
|
|
|
|
src: "{{ role_path }}/templates/systemd/matrix-synapse.service.j2"
|
|
|
|
dest: "/etc/systemd/system/matrix-synapse.service"
|
|
|
|
mode: 0644
|
|
|
|
|
|
|
|
- name: Ensure matrix-synapse-register-user script created
|
|
|
|
template:
|
|
|
|
src: "{{ role_path }}/templates/usr-local-bin/matrix-synapse-register-user.j2"
|
|
|
|
dest: "/usr/local/bin/matrix-synapse-register-user"
|
|
|
|
mode: 0750
|
2018-06-26 18:05:59 +00:00
|
|
|
|
|
|
|
- name: Allow access to Matrix ports in firewalld
|
|
|
|
firewalld:
|
|
|
|
port: "{{ item }}"
|
|
|
|
state: enabled
|
|
|
|
immediate: yes
|
|
|
|
permanent: yes
|
|
|
|
with_items:
|
|
|
|
- '8448/tcp' # Matrix federation
|
|
|
|
when: ansible_os_family == 'RedHat'
|