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_common_args', ''),
|
||||||
getattr(self._play_context, 'ssh_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))
|
args = self._split_ssh_args(' '.join(ssh_args))
|
||||||
for i, arg in enumerate(args):
|
for i, arg in enumerate(args):
|
||||||
if arg.lower() == 'proxycommand':
|
if arg.lower() == 'proxycommand':
|
||||||
|
|
Loading…
Reference in a new issue