mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 11:10:21 -07:00
Allow explicit request of the local connection.
This commit is contained in:
parent
eed4a2b717
commit
6749903e57
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ class Connection(object):
|
|||
|
||||
def connect(self, host):
|
||||
conn = None
|
||||
if self._LOCALHOSTRE.search(host):
|
||||
if self.transport == 'local' or self._LOCALHOSTRE.search(host):
|
||||
conn = LocalConnection(self.runner, host)
|
||||
elif self.transport == 'paramiko':
|
||||
conn = ParamikoConnection(self.runner, host)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue