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/roles/test_dellos10_config/tests/cli/backup.yaml

59 lines
1.2 KiB
YAML

---
- debug: msg="START cli/backup.yaml"
- name: setup
dellos10_config:
commands:
- interface loopback 999
- no interface loopback 999
match: none
provider: "{{ cli }}"
ignore_errors: yes
- name: collect any backup files
find:
paths: "{{ role_path }}/backup"
pattern: "{{ inventory_hostname }}_config*"
register: backup_files
delegate_to: localhost
- name: delete backup files
file:
path: "{{ backupitem.path }}"
state: absent
with_items: "{{ backup_files.files }}"
loop_control:
loop_var: backupitem
- name: configure device with config
dellos10_config:
src: basic/config.j2
backup: yes
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == true"
- "result.updates is defined"
- name: collect any backup files
find:
paths: "{{ role_path }}/backup"
pattern: "{{ inventory_hostname }}_config*"
register: backup_files
delegate_to: localhost
- assert:
that:
- "backup_files.files is defined"
- name: teardown
dellos10_config:
commands:
- no interface loopback999
match: none
provider: "{{ cli }}"
- debug: msg="END cli/backup.yaml"