nxos_banner CI fix (#29134)

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
pull/29144/head
Trishna Guha 7 years ago committed by GitHub
parent 497e6cf405
commit 588bddbc35

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

@ -1,16 +1,16 @@
---
- name: Setup
nxos_banner:
banner: exec
banner: motd
text: |
Junk exec banner
Junk motd banner
over multiple lines
state: present
provider: "{{ connection }}"
- name: remove exec
nxos_banner: &rm-exec
banner: exec
- name: remove motd
nxos_banner: &rm-motd
banner: motd
state: absent
provider: "{{ connection }}"
register: result
@ -18,10 +18,10 @@
- assert:
that:
- "result.changed == true"
- "'no banner exec' in result.commands"
- "'no banner motd' in result.commands"
- name: remove exec (idempotent)
nxos_banner: *rm-exec
- name: remove motd (idempotent)
nxos_banner: *rm-motd
register: result
- assert:

Loading…
Cancel
Save