mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
fixes issue that caused eapi transport setting to get lost (#21919)
The eos action didn't properly set provider transport argument for the module. This patch fixes that problem
This commit is contained in:
parent
01ac1bc6e5
commit
f9b108e319
2 changed files with 4 additions and 3 deletions
|
@ -79,9 +79,9 @@ def get_connection(module):
|
|||
global _DEVICE_CONNECTION
|
||||
if not _DEVICE_CONNECTION:
|
||||
load_params(module)
|
||||
if 'transport' not in module.params:
|
||||
conn = Cli(module)
|
||||
elif module.params['transport'] == 'eapi':
|
||||
transport = module.params['transport']
|
||||
provider_transport = (module.params['provider'] or {}).get('transport')
|
||||
if 'eapi' in (transport, provider_transport):
|
||||
conn = Eapi(module)
|
||||
else:
|
||||
conn = Cli(module)
|
||||
|
|
|
@ -87,6 +87,7 @@ class ActionModule(_ActionModule):
|
|||
|
||||
else:
|
||||
provider_arg = {
|
||||
'transport': 'eapi',
|
||||
'host': provider.get('host') or self._play_context.remote_addr,
|
||||
'port': provider.get('port'),
|
||||
'username': provider.get('username') or self._play_context.connection_user,
|
||||
|
|
Loading…
Reference in a new issue