How to ignore all task errors in a playbook?

Hello fellow Ansible users.

I am going to write a long playbook where every single task can fail, yet the playbook must proceed. If I write down “ignore_errors” in each task, the playbook will get too long and too verbose.

Is there a way to tell ansible to “on error resume next”?

Kind regards,
Howard

I am going to write a long playbook where every single task can fail,
yet the playbook must proceed. If I write down "ignore_errors" in each
task, the playbook will get too long and too verbose.

Can you put the whole thing in a block? A short example:

  - hosts: localhost
    tasks:
      - block:

        - fail: msg="1"
        - fail: msg="2"
        - fail: msg="3"

        ignore_errors: True

That seems to do the right thing.

                                      -Josh (jbs@care.com)

(apologies for the automatic corporate disclaimer that follows)

This email is intended for the person(s) to whom it is addressed and may contain information that is PRIVILEGED or CONFIDENTIAL. Any unauthorized use, distribution, copying, or disclosure by any person other than the addressee(s) is strictly prohibited. If you have received this email in error, please notify the sender immediately by return email and delete the message and any attachments from your system.