mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-08 03:37:35 +01:00
881fdd28f0
This allows people to augment the Synapse image with custom tools and addons without having to rebuild it from scratch. If customizations are enabled, the playbook will build a new `localhost/matrixdotorg/synapse:VERSION-customized` image on top of the default one (`FROM matrixdotorg/synapse:VERSION`) and with custom Dockerfile build steps. For servers that self-build the Synapse image, the Synapse image will be built first, before proceding to extend it the same way. In the future, we'll also have easy to enable Dockerfile build steps for modules that the playbook supports.
27 lines
1.2 KiB
YAML
27 lines
1.2 KiB
YAML
---
|
|
|
|
- name: Ensure Synapse paths exist
|
|
ansible.builtin.file:
|
|
path: "{{ item.path }}"
|
|
state: directory
|
|
mode: 0750
|
|
owner: "{{ matrix_user_username }}"
|
|
group: "{{ matrix_user_groupname }}"
|
|
with_items:
|
|
- {path: "{{ matrix_synapse_config_dir_path }}", when: true}
|
|
- {path: "{{ matrix_synapse_ext_path }}", when: true}
|
|
- {path: "{{ matrix_synapse_docker_src_files_path }}", when: "{{ matrix_synapse_container_image_self_build }}"}
|
|
- {path: "{{ matrix_synapse_customized_docker_src_files_path }}", when: "{{ matrix_synapse_container_image_customizations_enabled }}"}
|
|
# We handle matrix_synapse_media_store_path elsewhere (in ./synapse/setup_install.yml),
|
|
# because if it's using Goofys and it's already mounted (from before),
|
|
# trying to chown/chmod it here will cause trouble.
|
|
when: "(matrix_synapse_enabled | bool or matrix_s3_media_store_enabled | bool) and item.when"
|
|
|
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/ext/setup.yml"
|
|
|
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/synapse/workers/setup.yml"
|
|
|
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/synapse/setup.yml"
|
|
|
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/goofys/setup.yml"
|