mirror of https://github.com/ansible/ansible.git
Support configuring callback plugins with --extra-vars (#84661)
* Support configuring callback plugins with --extra-vars Callback plugins define variable names in the documentation for ConfigManager Variable values can be omitted * Added default callback variable configuration for display_skipped_hosts Fixes #84469 Co-authored-by: Matt Clay <matt@mystile.com>pull/86223/head
parent
af9009b00d
commit
7ebc9fa5d6
@ -0,0 +1,3 @@
|
||||
minor_changes:
|
||||
- callback plugins - support configuration using extra variables.
|
||||
- default callback plugin - add variable configuration for ``display_skipped_hosts`` (https://github.com/ansible/ansible/issues/84469).
|
||||
@ -0,0 +1,2 @@
|
||||
indirect_extra: false
|
||||
ansible_display_skipped_hosts: "{{ indirect_extra }}"
|
||||
@ -0,0 +1,5 @@
|
||||
- hosts: localhost
|
||||
gather_facts: false
|
||||
tasks:
|
||||
- command: /bin/false
|
||||
when: false
|
||||
Loading…
Reference in New Issue