mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-08 14:20:04 -07:00
Fix authorize in net agnostic modules (#33549)
* This should fix authorize for net_* modules * transport: none means network_cli in eos For now anyway
This commit is contained in:
parent
961c3fcca7
commit
fdc547601c
2 changed files with 4 additions and 3 deletions
|
@ -130,9 +130,7 @@ def map_config_to_obj(module):
|
|||
output = run_commands(module, ['show banner %s' % module.params['banner']])
|
||||
obj = {'banner': module.params['banner'], 'state': 'absent'}
|
||||
if output:
|
||||
if module.params['transport'] == 'cli':
|
||||
obj['text'] = output[0]
|
||||
else:
|
||||
if module.params['transport'] == 'eapi':
|
||||
# On EAPI we need to extract the banner text from dict key
|
||||
# 'loginBanner'
|
||||
if module.params['banner'] == 'login':
|
||||
|
@ -141,6 +139,8 @@ def map_config_to_obj(module):
|
|||
banner_response_key = 'motd'
|
||||
if isinstance(output[0], dict) and banner_response_key in output[0].keys():
|
||||
obj['text'] = output[0]
|
||||
else:
|
||||
obj['text'] = output[0]
|
||||
obj['state'] = 'present'
|
||||
return obj
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue