mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix --diff to respect no_log task parameter.
This commit is contained in:
parent
4b7b3794c9
commit
e2a7ba35db
1 changed files with 3 additions and 0 deletions
|
@ -615,4 +615,7 @@ class ActionBase(with_metaclass(ABCMeta, object)):
|
||||||
diff['after_header'] = 'dynamically generated'
|
diff['after_header'] = 'dynamically generated'
|
||||||
diff['after'] = source
|
diff['after'] = source
|
||||||
|
|
||||||
|
if self._play_context.no_log and 'after' in diff:
|
||||||
|
diff["after"] = " [[ Diff output has been hidden because 'no_log: true' was specified for this result ]]"
|
||||||
|
|
||||||
return diff
|
return diff
|
||||||
|
|
Loading…
Reference in a new issue