mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-04 09:43:15 +00:00
hide magic variables used bin/ansible output
'verbose_override' and 'verbose_always'
This commit is contained in:
@@ -322,6 +322,10 @@ class CliRunnerCallbacks(DefaultRunnerCallbacks):
|
||||
super(CliRunnerCallbacks, self).on_failed(host, res, ignore_errors=ignore_errors)
|
||||
|
||||
def on_ok(self, host, res):
|
||||
# hide magic variables used for ansible-playbook
|
||||
res.pop('verbose_override', None)
|
||||
res.pop('verbose_always', None)
|
||||
|
||||
self._on_any(host,res)
|
||||
super(CliRunnerCallbacks, self).on_ok(host, res)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user