mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
cb1b705218
* Preliminary steps * Fix Python3 network_cli ios * Add connection to debug strings * Fix ios confirm prompt by way of optional newline Also update ios_user delete tests
72 lines
1.4 KiB
YAML
72 lines
1.4 KiB
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
|
|
authorize: yes
|
|
become: yes
|
|
|
|
|
|
- name: save config
|
|
ios_config:
|
|
save: true
|
|
authorize: yes
|
|
become: yes
|
|
register: result
|
|
# FIXME https://github.com/ansible/ansible-modules-core/issues/5008
|
|
ignore_errors: true
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
# FIXME https://github.com/ansible/ansible-modules-core/issues/5008
|
|
ignore_errors: true
|
|
|
|
- name: save should always run
|
|
ios_config:
|
|
save: true
|
|
authorize: yes
|
|
become: yes
|
|
register: result
|
|
# FIXME https://github.com/ansible/ansible-modules-core/issues/5008
|
|
ignore_errors: true
|
|
|
|
- name: delete config (setup)
|
|
ios_config:
|
|
replace: line
|
|
lines:
|
|
- "no ip http server"
|
|
save_when: modified
|
|
authorize: yes
|
|
become: yes
|
|
register: result
|
|
|
|
- name: save should always run
|
|
ios_config:
|
|
replace: line
|
|
lines:
|
|
- "ip http server"
|
|
save_when: modified
|
|
authorize: yes
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: teardown
|
|
ios_config:
|
|
lines:
|
|
- "no ip http server"
|
|
authorize: yes
|
|
become: yes
|
|
register: result
|
|
|
|
- debug: msg="END cli/save.yaml on connection={{ ansible_connection }}"
|