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

Merge pull request #11135 from sivel/issue/11130-2

If remote_addr isn't set, set to ipv4_address
This commit is contained in:
James Cammarata 2015-06-02 15:35:11 -05:00
commit 9cd5c8092e

View file

@ -371,6 +371,9 @@ class TaskExecutor:
# FIXME: delegate_to calculation should be done here
# FIXME: calculation of connection params/auth stuff should be done here
if not self._connection_info.remote_addr:
self._connection_info.remote_addr = self._host.ipv4_address
if self._task.delegate_to is not None:
self._compute_delegate(variables)