How to ignore all task errors in a playbook?

2,311 views
Skip to first unread message

Howard Guo

unread,
Sep 5, 2016, 10:10:30 PM9/5/16
to Ansible Project
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

Josh Smift

unread,
Sep 6, 2016, 9:49:01 AM9/6/16
to ansible...@googlegroups.com
HG> I am going to write a long playbook where every single task can fail,
HG> yet the playbook must proceed. If I write down "ignore_errors" in each
HG> 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 (j...@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.
Reply all
Reply to author
Forward
0 new messages