mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-06 10:47:32 +01:00
27 lines
722 B
YAML
27 lines
722 B
YAML
---
|
|
|
|
- tags:
|
|
- setup-all
|
|
- setup-matrix-static-files
|
|
- install-all
|
|
- install-matrix-static-files
|
|
block:
|
|
- when: matrix_static_files_enabled | bool
|
|
ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
|
|
|
|
- when: matrix_static_files_enabled | bool
|
|
ansible.builtin.include_tasks: "{{ role_path }}/tasks/install.yml"
|
|
|
|
- tags:
|
|
- setup-all
|
|
- setup-matrix-static-files
|
|
block:
|
|
- when: not matrix_static_files_enabled | bool
|
|
ansible.builtin.include_tasks: "{{ role_path }}/tasks/uninstall.yml"
|
|
|
|
- tags:
|
|
- self-check
|
|
- self-check-matrix-static-files
|
|
block:
|
|
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/self_check_well_known.yml"
|