mirror of https://github.com/ansible/ansible.git
default: callback plugin allow unreachable task to stderr (#50533)
Provide toggle flag to allow display of unreachable task to stderr using default callback plugin. Fixes: #48069 Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>pull/50724/head
parent
636e1d5fcb
commit
17bb4f4932
@ -0,0 +1,2 @@
|
|||||||
|
minor_changes:
|
||||||
|
- Allow default callback plugin to send unreachable host/task to stderr using toggle flag.
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
- hosts: nonexistent
|
||||||
|
gather_facts: no
|
||||||
|
tasks:
|
||||||
|
- name: Test task for unreachable host
|
||||||
|
command: echo foo
|
||||||
|
ignore_errors: True
|
||||||
Loading…
Reference in New Issue