ansible/test/integration/targets/ios_config/tests/cli/backup.yaml

51 lines
1.1 KiB
YAML

---
- debug: msg="START cli/backup.yaml on connection={{ ansible_connection }}"
- name: setup
ios_config:
commands:
- no description
- no shutdown
parents:
- interface Loopback999
match: none
authorize: yes
- name: collect any backup files
find:
paths: "{{ role_path }}/backup"
pattern: "{{ inventory_hostname_short }}_config*"
register: backup_files
connection: local
- name: delete backup files
file:
path: "{{ item.path }}"
state: absent
with_items: "{{backup_files.files|default([])}}"
- name: configure device with config
ios_config:
src: basic/config.j2
backup: yes
authorize: yes
register: result
- assert:
that:
- "result.changed == true"
# FIXME Bug https://github.com/ansible/ansible/issues/19382
# - "result.updates is not defined"
- name: collect any backup files
find:
paths: "{{ role_path }}/backup"
pattern: "{{ inventory_hostname_short }}_config*"
register: backup_files
connection: local
- assert:
that:
- "backup_files.files is defined"
- debug: msg="END cli/backup.yaml on connection={{ ansible_connection }}"