2022-02-05 21:32:54 +01:00
|
|
|
---
|
|
|
|
|
2022-07-18 10:22:05 +02:00
|
|
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/init.yml"
|
2019-03-07 06:22:08 +01:00
|
|
|
tags:
|
|
|
|
- always
|
|
|
|
|
2022-07-18 10:22:05 +02:00
|
|
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/validate_config.yml"
|
|
|
|
when: run_setup | bool
|
2019-03-08 14:00:53 +01:00
|
|
|
tags:
|
|
|
|
- setup-all
|
|
|
|
- setup-dimension
|
|
|
|
|
2022-07-18 10:22:05 +02:00
|
|
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_install.yml"
|
|
|
|
when: run_setup | bool and matrix_dimension_enabled | bool
|
2020-12-14 19:05:31 +01:00
|
|
|
tags:
|
|
|
|
- setup-all
|
|
|
|
- setup-dimension
|
|
|
|
|
2022-07-18 10:22:05 +02:00
|
|
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
|
|
|
|
when: run_setup | bool and not matrix_dimension_enabled | bool
|
2019-03-07 06:22:08 +01:00
|
|
|
tags:
|
|
|
|
- setup-all
|
2019-05-21 17:25:59 +02:00
|
|
|
- setup-dimension
|