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
16 lines
337 B
YAML
16 lines
337 B
YAML
---
|
|
- name: run evocheck
|
|
ansible.builtin.command:
|
|
cmd: "{{ evocheck_bin_dir }}/evocheck.sh"
|
|
register: evocheck_run
|
|
changed_when: False
|
|
failed_when: False
|
|
check_mode: no
|
|
tags:
|
|
- evocheck-exec
|
|
|
|
- ansible.builtin.debug:
|
|
var: evocheck_run.stdout_lines
|
|
when: evocheck_run.stdout | length > 0
|
|
tags:
|
|
- evocheck-exec
|