mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Change to transport is local *and* is localhost
Connection.connect() now requires that, in order to use LocalConnection, you specify transport is local and that the hostname is localhost.
This commit is contained in:
parent
6749903e57
commit
9213cf896e
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ class Connection(object):
|
|||
|
||||
def connect(self, host):
|
||||
conn = None
|
||||
if self.transport == 'local' or self._LOCALHOSTRE.search(host):
|
||||
if self.transport == 'local' and self._LOCALHOSTRE.search(host):
|
||||
conn = LocalConnection(self.runner, host)
|
||||
elif self.transport == 'paramiko':
|
||||
conn = ParamikoConnection(self.runner, host)
|
||||
|
|
Loading…
Reference in a new issue