Matrix Docker Ansible eploy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # SPDX-FileCopyrightText: 2021 Toni Spets
- # SPDX-FileCopyrightText: 2022 - 2024 Slavi Pantaleev
- # SPDX-FileCopyrightText: 2022 Marko Weltzer
- # SPDX-FileCopyrightText: 2025 Suguru Hirahara
- #
- # SPDX-License-Identifier: AGPL-3.0-or-later
-
- ---
- - name: Perform MatrixZulipBridge installation tasks
- when: matrixzulipbridge_enabled | bool
- tags:
- - setup-all
- - setup-matrixzulipbridge
- - install-all
- - install-matrixzulipbridge
- block:
- - name: Validate MatrixZulipBridge configuration
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
- - name: Install MatrixZulipBridge
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_install.yml"
-
- - name: Perform MatrixZulipBridge uninstallation tasks
- when: not matrixzulipbridge_enabled | bool
- tags:
- - setup-all
- - setup-matrixzulipbridge
- block:
- - name: Uninstall MatrixZulipBridge
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
|