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.
33 lines
909 B
33 lines
909 B
3 years ago
|
---
|
||
|
|
||
2 years ago
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/validate_config.yml"
|
||
|
when: run_setup | bool
|
||
4 years ago
|
tags:
|
||
|
- setup-all
|
||
|
- setup-dendrite
|
||
|
|
||
2 years ago
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_dendrite.yml"
|
||
|
when: run_setup | bool
|
||
4 years ago
|
tags:
|
||
|
- setup-all
|
||
|
- setup-dendrite
|
||
|
|
||
2 years ago
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/register_user.yml"
|
||
|
when: run_dendrite_register_user | bool and matrix_dendrite_enabled | bool
|
||
4 years ago
|
tags:
|
||
|
- register-user
|
||
|
|
||
2 years ago
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/self_check_client_api.yml"
|
||
4 years ago
|
delegate_to: 127.0.0.1
|
||
|
become: false
|
||
2 years ago
|
when: run_self_check | bool and matrix_dendrite_enabled | bool
|
||
4 years ago
|
tags:
|
||
|
- self-check
|
||
|
|
||
2 years ago
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/self_check_federation_api.yml"
|
||
4 years ago
|
delegate_to: 127.0.0.1
|
||
|
become: false
|
||
2 years ago
|
when: run_self_check | bool and matrix_dendrite_enabled | bool
|
||
4 years ago
|
tags:
|
||
|
- self-check
|