2022-06-21 14:31:21 +01:00
|
|
|
---
|
|
|
|
|
2022-07-18 11:22:05 +03:00
|
|
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/init.yml"
|
2022-06-21 14:31:21 +01:00
|
|
|
tags:
|
|
|
|
- always
|
|
|
|
|
2022-07-18 11:22:05 +03:00
|
|
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_install.yml"
|
|
|
|
when: "run_setup | bool and matrix_ntfy_enabled | bool"
|
2022-07-04 14:51:55 +01:00
|
|
|
tags:
|
|
|
|
- setup-all
|
|
|
|
- setup-ntfy
|
|
|
|
|
2022-07-18 11:22:05 +03:00
|
|
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
|
|
|
|
when: "run_setup | bool and not matrix_ntfy_enabled | bool"
|
2022-06-21 14:31:21 +01:00
|
|
|
tags:
|
|
|
|
- setup-all
|
|
|
|
- setup-ntfy
|
2022-06-29 10:48:40 +01:00
|
|
|
|
2022-07-18 11:22:05 +03:00
|
|
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/self_check.yml"
|
2022-06-29 10:48:40 +01:00
|
|
|
delegate_to: 127.0.0.1
|
|
|
|
become: false
|
2022-07-18 11:22:05 +03:00
|
|
|
when: "run_self_check | bool and matrix_ntfy_enabled | bool"
|
2022-06-29 10:48:40 +01:00
|
|
|
tags:
|
|
|
|
- self-check
|