Jeremy Lecour
ee21973371
All checks were successful
Ansible Lint |Total|New|Outstanding|Fixed|Trend
|:-:|:-:|:-:|:-:|:-:
|2777|524|2253|2462|:+1:
Reference build: <a href="https://jenkins.evolix.org/job/gitea/job/ansible-roles/job/unstable/223//ansiblelint">Evolix » ansible-roles » unstable #223</a>
gitea/ansible-roles/pipeline/head This commit looks good
Fully Qualified Collection Name
24 lines
610 B
YAML
24 lines
610 B
YAML
---
|
|
|
|
- ansible.builtin.include: install_package_debian.yml
|
|
when:
|
|
- not (evomaintenance_install_vendor | bool)
|
|
- ansible_distribution == "Debian"
|
|
|
|
- ansible.builtin.include: install_vendor_debian.yml
|
|
when:
|
|
- evomaintenance_install_vendor | bool
|
|
- ansible_distribution == "Debian"
|
|
|
|
- ansible.builtin.include: install_vendor_other.yml
|
|
when:
|
|
- evomaintenance_install_vendor | bool
|
|
- ansible_distribution != "Debian"
|
|
|
|
|
|
- ansible.builtin.include: config.yml
|
|
|
|
- ansible.builtin.include: minifirewall.yml
|
|
when:
|
|
- evomaintenance_hook_db | bool
|
|
- ansible_distribution == "Debian"
|