mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-04 17:53:10 +00:00
Fix for delegate_to with hosts that aren't in inventory
This commit is contained in:
@@ -1227,7 +1227,7 @@ class Runner(object):
|
||||
|
||||
def _remote_checksum(self, conn, tmp, path, inject):
|
||||
''' takes a remote checksum and returns 1 if no file '''
|
||||
if 'delegate_to' in inject and inject['delegate_to']:
|
||||
if 'delegate_to' in inject and inject['delegate_to'] and inject['delegate_to'] in inject['hostvars']:
|
||||
python_interp = inject['hostvars'][inject['delegate_to']].get('ansible_python_interpreter', 'python')
|
||||
else:
|
||||
python_interp = inject['hostvars'][inject['inventory_hostname']].get('ansible_python_interpreter', 'python')
|
||||
|
||||
Reference in New Issue
Block a user