2018-07-30 14:56:33 +00:00
|
|
|
---
|
2019-02-16 10:25:57 +00:00
|
|
|
- name: create user
|
|
|
|
user:
|
|
|
|
name: synapse
|
|
|
|
state: present
|
|
|
|
register: synapse_user
|
|
|
|
tags:
|
|
|
|
- pre_install
|
|
|
|
|
|
|
|
- name: create directory
|
|
|
|
file:
|
2019-02-21 22:17:57 +00:00
|
|
|
path: "{{ matrix_synapse_base_path }}"
|
2019-02-16 10:25:57 +00:00
|
|
|
state: directory
|
|
|
|
owner: synapse
|
|
|
|
group: synapse
|
|
|
|
tags:
|
|
|
|
- pre_install
|
2019-02-12 01:43:26 +00:00
|
|
|
|
2019-02-21 00:29:45 +00:00
|
|
|
- name: Create secrets directory
|
|
|
|
file:
|
|
|
|
path: "{{ matrix_synapse_secrets_path }}"
|
|
|
|
state: directory
|
|
|
|
owner: synapse
|
|
|
|
group: synapse
|
|
|
|
tags:
|
|
|
|
- pre_install
|
|
|
|
|
|
|
|
- name: Generate secrets
|
|
|
|
include_tasks: generate_secret.yml
|
|
|
|
loop:
|
|
|
|
- file: "macaroon.key"
|
|
|
|
var: "macaroon_file"
|
|
|
|
- file: "registration.key"
|
|
|
|
var: "registration_shared_secret_file"
|
|
|
|
- file: "form.key"
|
|
|
|
var: "form_secret_file"
|
|
|
|
loop_control:
|
|
|
|
loop_var: secret
|
|
|
|
|
2019-02-15 02:07:03 +00:00
|
|
|
- name: Create directory for media storage
|
|
|
|
file:
|
2019-02-21 00:29:45 +00:00
|
|
|
path: "{{ item }}"
|
2019-02-15 02:07:03 +00:00
|
|
|
state: directory
|
|
|
|
owner: synapse
|
|
|
|
group: synapse
|
|
|
|
loop:
|
|
|
|
- "{{ matrix_synapse_config.media_store_path }}"
|
|
|
|
- "{{ matrix_synapse_config.uploads_path }}"
|
2019-02-21 22:17:57 +00:00
|
|
|
- "{{ matrix_synapse_base_path }}/tls"
|
2019-02-15 02:07:03 +00:00
|
|
|
|
2018-07-30 14:56:33 +00:00
|
|
|
- name: Deploy config
|
2019-02-14 23:25:14 +00:00
|
|
|
copy:
|
|
|
|
content: "{{ matrix_synapse_config | to_nice_yaml }}"
|
2019-02-21 22:17:57 +00:00
|
|
|
dest: "{{ matrix_synapse_base_path }}/homeserver.yaml"
|
2018-07-30 14:56:33 +00:00
|
|
|
owner: synapse
|
|
|
|
group: synapse
|
|
|
|
notify:
|
2019-02-15 02:08:08 +00:00
|
|
|
- "restart matrix-synapse"
|
2018-07-30 14:56:33 +00:00
|
|
|
|
2018-12-02 22:12:30 +00:00
|
|
|
- name: Configure logging
|
|
|
|
import_tasks: logging.yml
|
2019-02-16 10:25:57 +00:00
|
|
|
when: matrix_synapse_supervision_method == "systemd"
|
|
|
|
# TODO: Figure out how to make sure that logging ends up in rsyslog no matter what system we run on
|
2018-07-30 14:56:33 +00:00
|
|
|
|
2018-12-03 22:29:19 +00:00
|
|
|
- name: Create certificates
|
2019-02-12 01:38:17 +00:00
|
|
|
include_tasks: crypto.yml
|