ansible/test/integration/targets/ios_config/tests/cli/toplevel_nonidempotent.yaml
Ganesh Nalawade 65ab37cbd3 Remove provider from ios integration test (#31037)
*  Remove provider from each task as it is not required.
*  Add `authorize: yes` whereever required
2017-09-28 15:23:52 +05:30

39 lines
772 B
YAML

---
- debug: msg="START cli/toplevel_nonidempotent.yaml"
- name: setup
ios_config:
lines: ['hostname {{ shorter_hostname }}']
match: none
authorize: yes
- name: configure top level command
ios_config:
lines: ['hostname foo']
match: strict
authorize: yes
register: result
- assert:
that:
- "result.changed == true"
- "'hostname foo' in result.updates"
- name: configure top level command idempotent check
ios_config:
lines: ['hostname foo']
match: strict
authorize: yes
register: result
- assert:
that:
- "result.changed == true"
- name: teardown
ios_config:
lines: ['hostname {{ shorter_hostname }}']
match: none
authorize: yes
- debug: msg="END cli/toplevel_nonidempotent.yaml"