mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 13:50:22 -07:00
Fix ios_system lookup enable issue (#30263)
Fixes #29974 Add `None` check while comparing module parameter values (want) with the actual configuration present on device (have).
This commit is contained in:
parent
8489e298ca
commit
d8371cec91
2 changed files with 25 additions and 1 deletions
|
@ -33,6 +33,30 @@
|
|||
that:
|
||||
- result.changed == false
|
||||
|
||||
- name: Disable lookup_source
|
||||
ios_system:
|
||||
lookup_enabled: False
|
||||
provider: "{{ cli }}"
|
||||
authorize: yes
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- result.changed == true
|
||||
- "'no ip domain lookup' in result.commands"
|
||||
|
||||
- name: Disable lookup_source
|
||||
ios_system:
|
||||
lookup_enabled: True
|
||||
provider: "{{ cli }}"
|
||||
authorize: yes
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- result.changed == true
|
||||
- "'ip domain lookup' in result.commands"
|
||||
|
||||
#- name: change to vrf
|
||||
# ios_system:
|
||||
# lookup_source:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue