ansible-roles/evocheck/tasks/exec.yml
David Prevot fafff25c20
All checks were successful
gitea/ansible-roles/pipeline/head This commit looks good
Add “when: not ansible_check_mode” to allow more --check
2022-12-02 17:40:43 +01:00

18 lines
331 B
YAML

---
- name: run evocheck
command: "{{ evocheck_bin_dir }}/evocheck.sh"
register: evocheck_run
changed_when: False
failed_when: False
check_mode: no
tags:
- evocheck-exec
- debug:
var: evocheck_run.stdout_lines
when:
- not ansible_check_mode
- evocheck_run.stdout | length > 0
tags:
- evocheck-exec