You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/ios_config/tests/cli/save.yaml

50 lines
899 B
YAML

---
- debug: msg="START cli/save.yaml on connection={{ ansible_connection }}"
- name: setup
ios_config:
commands:
- no description
- no shutdown
parents:
- interface Loopback999
match: none
save_when: modified
- name: save should always run
ios_config:
save_when: always
register: result
- assert:
that:
- "result.changed == true"
- name: delete config (setup)
ios_config:
replace: line
lines:
- "no ip http server"
save_when: modified
register: result
- name: save should run when changed
ios_config:
replace: line
lines:
- "ip http server"
save_when: modified
register: result
- assert:
that:
- "result.changed == true"
- name: teardown
ios_config:
lines:
- "no ip http server"
register: result
- debug: msg="END cli/save.yaml on connection={{ ansible_connection }}"