summaryrefslogtreecommitdiff
path: root/samples/ignore_errors.yml
blob: 5845d049c436aabfca88a3f18b40fb299c1744bb (plain)
1
2
3
4
5
6
7
8
9
10
- hosts: localhost
  connection: local
  gather_facts: no
  tasks:
  - fail:
    ignore_errors: yes
  - debug: msg="you should still see this"
  - fail:
  - debug: msg="you should NOT see this"