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: 2024 Slavi Pantaleev
- #
- # SPDX-License-Identifier: AGPL-3.0-or-later
-
- ---
-
- - tags:
- - setup-all
- - setup-matrix-authentication-service
- - install-all
- - install-matrix-authentication-service
- - matrix-authentication-service-mas-cli-syn2mas
- block:
- - when: matrix_authentication_service_enabled | bool
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
-
- - tags:
- - setup-all
- - setup-matrix-authentication-service
- - install-all
- - install-matrix-authentication-service
- block:
- - when: matrix_authentication_service_enabled | bool
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/install.yml"
-
- # The tag 'matrix-authentication-service-syn2mas' has been replaced by the tag 'matrix-authentication-service-mas-cli-syn2mas'.
- - tags:
- - matrix-authentication-service-syn2mas
- block:
- - name: Warn about deprecated tag
- ansible.builtin.fail:
- msg: "WARNING: The 'matrix-authentication-service-syn2mas' tag has been replaced by 'matrix-authentication-service-mas-cli-syn2mas'. Please update your command."
-
- - tags:
- - matrix-authentication-service-mas-cli-syn2mas
- block:
- - when: matrix_authentication_service_enabled | bool
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/mas_cli_syn2mas.yml"
-
- - tags:
- - matrix-authentication-service-mas-cli-doctor
- block:
- - when: matrix_authentication_service_enabled | bool
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/mas_cli_doctor.yml"
-
- - tags:
- - register-user
- block:
- - when: matrix_authentication_service_enabled | bool
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/register_user.yml"
-
- - tags:
- - setup-all
- - setup-matrix-authentication-service
- block:
- - when: not matrix_authentication_service_enabled | bool
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/uninstall.yml"
|