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 ([email protected])

(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.

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/22478.51453.811301.229585%40gargle.gargle.HOWL.
For more options, visit https://groups.google.com/d/optout.

Reply via email to