mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #6713 from hfinucane/sshconfdotpy
Make ssh_config paramiko 1.12/1.13 compatible
This commit is contained in:
commit
1faa840b67
1 changed files with 2 additions and 1 deletions
|
@ -63,7 +63,8 @@ def get_config():
|
|||
for d in cfg._config:
|
||||
_copy = dict(d)
|
||||
del _copy['host']
|
||||
ret_dict[d['host']] = _copy
|
||||
for host in d['host']:
|
||||
ret_dict[host] = _copy['config']
|
||||
return ret_dict
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue