summaryrefslogtreecommitdiffstats
path: root/test/schemas/test/playbooks/tasks/ignore_errors.yml
blob: 2f253f22928565da274ecdd8f82c7651722d0dac (plain)
1
2
3
4
5
6
7
- command: echo 123
  ignore_errors: true

- command: echo 123
  vars:
    should_ignore_errors: true
  ignore_errors: "{{ should_ignore_errors }}"