mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-12-25 02:00:27 +00:00
Add matrix-synapse-rest-auth support
This commit is contained in:
17
roles/matrix-server/tasks/setup_synapse_pre.yml
Normal file
17
roles/matrix-server/tasks/setup_synapse_pre.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
|
||||
- name: Ensure Matrix Synapse paths exist
|
||||
file:
|
||||
path: "{{ item }}"
|
||||
state: directory
|
||||
mode: 0750
|
||||
owner: "{{ matrix_user_username }}"
|
||||
group: "{{ matrix_user_username }}"
|
||||
with_items:
|
||||
- "{{ matrix_synapse_config_dir_path }}"
|
||||
- "{{ matrix_synapse_run_path }}"
|
||||
- "{{ matrix_synapse_storage_path }}"
|
||||
- "{{ matrix_synapse_ext_path }}"
|
||||
# We handle matrix_synapse_media_store_path elsewhere (in setup_synapse.yml),
|
||||
# because if it's using S3fs and it's already mounted (from before),
|
||||
# trying to chown/chmod it here will cause trouble.
|
||||
Reference in New Issue
Block a user