54a229adb9
* Handling of configurations blocks with end-* at the end of the block (#39673)
* handle end-policy issue
* revert changes in iosxr cliconf
* fix trailing parents not included in difference
* Moving fix to platform specific fix
* pep 8 issues
(cherry picked from commit ef577b71cc
)
* changelog entry
27 lines
650 B
YAML
27 lines
650 B
YAML
---
|
|
- debug: msg="START cli/misplaced_sublevel.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: setup
|
|
iosxr_config:
|
|
src: basic/init_prefix_set.j2
|
|
ignore_errors: yes
|
|
|
|
- name: Change prefix-set and new command after prefix-set
|
|
iosxr_config:
|
|
src: basic/change_prefix_set.j2
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: Play same config again to verify no diff in prefix-set also works
|
|
iosxr_config:
|
|
src: basic/change_prefix_set.j2
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- debug: msg="END cli/misplaced_sublevel.yaml on connection={{ ansible_connection }}"
|