Matrix Docker Ansible eploy
Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- # SPDX-FileCopyrightText: 2022 - 2023 Slavi Pantaleev
- #
- # SPDX-License-Identifier: AGPL-3.0-or-later
-
- ---
-
- # encryption-disabler
- - tags:
- - setup-all
- - setup-synapse
- block:
- - when: not matrix_synapse_ext_encryption_disabler_enabled | bool
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/ext/encryption-disabler/setup_uninstall.yml"
-
- # rest-auth
- - tags:
- - setup-all
- - setup-synapse
- block:
- - when: not matrix_synapse_ext_password_provider_rest_auth_enabled | bool
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/ext/rest-auth/setup_uninstall.yml"
-
- # shared-secret-auth
- - tags:
- - setup-all
- - setup-synapse
- block:
- - when: not matrix_synapse_ext_password_provider_shared_secret_auth_enabled | bool
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/ext/shared-secret-auth/setup_uninstall.yml"
-
- # ldap-auth has no uninstall tasks
-
-
- # synapse-simple-antispam
- - tags:
- - setup-all
- - setup-synapse
- block:
- - when: not matrix_synapse_ext_spam_checker_synapse_simple_antispam_enabled | bool
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/ext/synapse-simple-antispam/setup_uninstall.yml"
-
- # mjolnir-antispam
- - tags:
- - setup-all
- - setup-synapse
- block:
- - when: not matrix_synapse_ext_spam_checker_mjolnir_antispam_enabled | bool
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/ext/mjolnir-antispam/setup_uninstall.yml"
-
- # s3-storage-provider
- - tags:
- - setup-all
- - setup-synapse
- block:
- - when: not matrix_synapse_ext_synapse_s3_storage_provider_enabled | bool
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/ext/s3-storage-provider/setup_uninstall.yml"
|