nxos_banner CI fix (#29134)

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
Trishna Guha 2017-09-08 19:33:41 +05:30 committed by GitHub
commit 588bddbc35
2 changed files with 9 additions and 9 deletions

View file

@ -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'):