735bacca89
These `init.yml` (now `inject_into_nginx_proxy.yml`) tasks do not need to `always` run. They only need to run for `setup-all` and `setup-nginx-proxy`. Unless we're dealing with these 2 tags, we can spare ourselves a lot of work. This patch also moves the `when` statement from `init.yml` into `main.yml` in an effort to further optimize things by potentially avoiding the extra file include.
26 lines
779 B
YAML
26 lines
779 B
YAML
---
|
|
|
|
- when: matrix_mx_puppet_slack_enabled | bool
|
|
ansible.builtin.import_tasks: "{{ role_path }}/tasks/inject_into_nginx_proxy.yml"
|
|
tags:
|
|
- setup-all
|
|
- setup-nginx-proxy
|
|
|
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/validate_config.yml"
|
|
when: "run_setup | bool and matrix_mx_puppet_slack_enabled | bool"
|
|
tags:
|
|
- setup-all
|
|
- setup-mx-puppet-slack
|
|
|
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_install.yml"
|
|
when: "run_setup | bool and matrix_mx_puppet_slack_enabled | bool"
|
|
tags:
|
|
- setup-all
|
|
- setup-mx-puppet-slack
|
|
|
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
|
|
when: "run_setup | bool and not matrix_mx_puppet_slack_enabled | bool"
|
|
tags:
|
|
- setup-all
|
|
- setup-mx-puppet-slack
|