mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix variable name in paramiko connection plugin
This commit is contained in:
parent
7c3a728557
commit
d0a717694f
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ class Connection(ConnectionBase):
|
|||
getattr(self._play_context, 'ssh_common_args', ''),
|
||||
getattr(self._play_context, 'ssh_args', ''),
|
||||
]
|
||||
if ssh_common_args is not None:
|
||||
if ssh_args is not None:
|
||||
args = self._split_ssh_args(' '.join(ssh_args))
|
||||
for i, arg in enumerate(args):
|
||||
if arg.lower() == 'proxycommand':
|
||||
|
|
Loading…
Reference in a new issue