24 lines
535 B
YAML
24 lines
535 B
YAML
---
|
|
|
|
- block:
|
|
- when: matrix_ntfy_enabled | bool
|
|
ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_install.yml"
|
|
tags:
|
|
- setup-all
|
|
- setup-ntfy
|
|
- install-all
|
|
- install-ntfy
|
|
|
|
- block:
|
|
- when: not matrix_ntfy_enabled | bool
|
|
ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
|
|
tags:
|
|
- setup-all
|
|
- setup-ntfy
|
|
|
|
- block:
|
|
- when: matrix_ntfy_enabled | bool
|
|
ansible.builtin.include_tasks: "{{ role_path }}/tasks/self_check.yml"
|
|
tags:
|
|
- self-check
|