mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-06 10:40:32 -07:00
Fix diy callback plugin.
This commit is contained in:
parent
71be2c32ce
commit
8247615d24
2 changed files with 12 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
||||||
bugfixes:
|
bugfixes:
|
||||||
- "dependent look plugin - make compatible with ansible-core's Data Tagging feature (https://github.com/ansible-collections/community.general/pull/9833)."
|
- "dependent look plugin - make compatible with ansible-core's Data Tagging feature (https://github.com/ansible-collections/community.general/pull/9833)."
|
||||||
- "reveal_ansible_type filter plugin and ansible_type test plugin - make compatible with ansible-core's Data Tagging feature (https://github.com/ansible-collections/community.general/pull/9833)."
|
- "reveal_ansible_type filter plugin and ansible_type test plugin - make compatible with ansible-core's Data Tagging feature (https://github.com/ansible-collections/community.general/pull/9833)."
|
||||||
|
- "diy callback plugin - make compatible with ansible-core's Data Tagging feature (https://github.com/ansible-collections/community.general/pull/9833)."
|
||||||
known_issues:
|
known_issues:
|
||||||
- "reveal_ansible_type filter plugin and ansible_type test plugin - note that ansible-core's Data Tagging feature implements new aliases,
|
- "reveal_ansible_type filter plugin and ansible_type test plugin - note that ansible-core's Data Tagging feature implements new aliases,
|
||||||
such as ``_AnsibleTaggedStr`` for ``str``, ``_AnsibleTaggedInt`` for ``int``, and ``_AnsibleTaggedFloat`` for ``float``
|
such as ``_AnsibleTaggedStr`` for ``str``, ``_AnsibleTaggedInt`` for ``int``, and ``_AnsibleTaggedFloat`` for ``float``
|
||||||
|
|
|
@ -785,6 +785,12 @@ from ansible.vars.manager import VariableManager
|
||||||
from ansible.plugins.callback.default import CallbackModule as Default
|
from ansible.plugins.callback.default import CallbackModule as Default
|
||||||
from ansible.module_utils.common.text.converters import to_text
|
from ansible.module_utils.common.text.converters import to_text
|
||||||
|
|
||||||
|
try:
|
||||||
|
from ansible.template import trust_as_template # noqa: F401, pylint: disable=unused-import
|
||||||
|
SUPPORTS_DATA_TAGGING = True
|
||||||
|
except ImportError:
|
||||||
|
SUPPORTS_DATA_TAGGING = False
|
||||||
|
|
||||||
|
|
||||||
class DummyStdout(object):
|
class DummyStdout(object):
|
||||||
def flush(self):
|
def flush(self):
|
||||||
|
@ -838,7 +844,10 @@ class CallbackModule(Default):
|
||||||
return _ret
|
return _ret
|
||||||
|
|
||||||
def _using_diy(self, spec):
|
def _using_diy(self, spec):
|
||||||
return (spec['msg'] is not None) and (spec['msg'] != spec['vars']['omit'])
|
sentinel = object()
|
||||||
|
omit = spec['vars'].get('omit', sentinel)
|
||||||
|
# With Data Tagging, omit is sentinel
|
||||||
|
return (spec['msg'] is not None) and (spec['msg'] != omit or omit is sentinel)
|
||||||
|
|
||||||
def _parent_has_callback(self):
|
def _parent_has_callback(self):
|
||||||
return hasattr(super(CallbackModule, self), sys._getframe(1).f_code.co_name)
|
return hasattr(super(CallbackModule, self), sys._getframe(1).f_code.co_name)
|
||||||
|
@ -894,7 +903,7 @@ class CallbackModule(Default):
|
||||||
)
|
)
|
||||||
_ret.update(_all)
|
_ret.update(_all)
|
||||||
|
|
||||||
_ret.update(_ret.get(self.DIY_NS, {self.DIY_NS: CallbackDIYDict()}))
|
_ret.update(_ret.get(self.DIY_NS, {self.DIY_NS: {} if SUPPORTS_DATA_TAGGING else CallbackDIYDict()}))
|
||||||
|
|
||||||
_ret[self.DIY_NS].update({'playbook': {}})
|
_ret[self.DIY_NS].update({'playbook': {}})
|
||||||
_playbook_attributes = ['entries', 'file_name', 'basedir']
|
_playbook_attributes = ['entries', 'file_name', 'basedir']
|
||||||
|
|
Loading…
Add table
Reference in a new issue