mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
nxos_banner CI fix (#29134)
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
@@ -96,7 +96,7 @@ def map_obj_to_commands(want, have, module):
|
||||
commands = list()
|
||||
state = module.params['state']
|
||||
|
||||
if state == 'absent' and have.get('text'):
|
||||
if (state == 'absent' and (have.get('text') and have.get('text') != 'User Access Verification')):
|
||||
commands.append('no banner %s' % module.params['banner'])
|
||||
|
||||
elif state == 'present' and want.get('text') != have.get('text'):
|
||||
|
||||
Reference in New Issue
Block a user