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