matrix-docker-ansible-deploy/roles/custom/matrix-bridge-postmoogle/tasks/main.yml

27 lines
737 B
YAML
Raw Normal View History

# SPDX-FileCopyrightText: 2022 - 2023 Slavi Pantaleev
# SPDX-FileCopyrightText: 2022 Nikita Chernyi
# SPDX-FileCopyrightText: 2024 Suguru Hirahara
#
# SPDX-License-Identifier: AGPL-3.0-or-later
2022-08-22 17:10:35 +00:00
---
- tags:
- setup-all
- setup-postmoogle
- install-all
- install-postmoogle
block:
- when: matrix_postmoogle_enabled | bool
ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
2022-08-22 17:10:35 +00:00
- when: matrix_postmoogle_enabled | bool
ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_install.yml"
- tags:
2022-11-25 14:02:51 +00:00
- setup-all
- setup-postmoogle
block:
- when: not matrix_postmoogle_enabled | bool
ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"