Use fqcr from command module invocation using shell module ()

* Use fqcr from command module invocation using shell module

Fixes https://github.com/ansible/ansible/issues/69788

Use fully qualified collection reference while invoking
command module from shell module

* Fox review comment
This commit is contained in:
Ganesh Nalawade 2020-06-04 22:30:11 +05:30 committed by GitHub
parent 247e43b252
commit 646536643f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions
changelogs/fragments
lib/ansible/plugins/action

View file

@ -0,0 +1,3 @@
---
bugfixes:
- "Use fqcr from command module invocation using shell module. Fixes https://github.com/ansible/ansible/issues/69788"

View file

@ -17,7 +17,7 @@ class ActionModule(ActionBase):
self._task.action = 'command'
self._task.args['_uses_shell'] = True
command_action = self._shared_loader_obj.action_loader.get('command',
command_action = self._shared_loader_obj.action_loader.get('ansible.legacy.command',
task=self._task,
connection=self._connection,
play_context=self._play_context,