mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-05 12:52:48 +00:00
Allow using connection: on the task level
This is the name of the setting on the play level, and the options. Should be consistent.
This commit is contained in:
@@ -97,7 +97,7 @@ class Task(object):
|
||||
else:
|
||||
self.action = ds.get('action', '')
|
||||
self.delegate_to = ds.get('delegate_to', None)
|
||||
self.transport = ds.get('transport', play.transport)
|
||||
self.transport = ds.get('connection', ds.get('transport', play.transport))
|
||||
|
||||
# delegate_to can use variables
|
||||
if not (self.delegate_to is None):
|
||||
|
||||
Reference in New Issue
Block a user