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
23 lines
561 B
YAML
23 lines
561 B
YAML
---
|
|
|
|
- name: Verify Debian version
|
|
ansible.builtin.assert:
|
|
that:
|
|
- ansible_distribution == "Debian"
|
|
- ansible_distribution_major_version is version('9', '>=')
|
|
msg: only compatible with Debian >= 9
|
|
when: not (evoacme_disable_debian_check | bool)
|
|
|
|
- ansible.builtin.include: certbot.yml
|
|
|
|
- ansible.builtin.include: permissions.yml
|
|
|
|
# Enable this task if you want to deploy hooks
|
|
# - include: evoacme_hook.yml
|
|
# vars:
|
|
# hook_name: "{{ item }}"
|
|
# loop: []
|
|
|
|
- ansible.builtin.include: conf.yml
|
|
|
|
- ansible.builtin.include: scripts.yml
|