1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

removed printing module args as it violates no_log settings

This commit is contained in:
Brian Coca 2015-09-02 12:03:21 -04:00
parent 1b64702b9a
commit a006e85947

View file

@ -347,8 +347,6 @@ class ActionBase:
if self._play_context.no_log:
module_args['_ansible_no_log'] = True
self._display.vvv("Module: %s, args: %s" % (module_name, module_args))
(module_style, shebang, module_data) = self._configure_module(module_name=module_name, module_args=module_args, task_vars=task_vars)
if not shebang:
raise AnsibleError("module is missing interpreter line")