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.
Lenovo integration test roles 1 (#44559)
* Integration test suit for cnos_facts, cnos_config, cnos_command, enos_facts, enos_config and enos_command.
* Update all_facts.yaml
* Update invalid_subset.yaml
* Update not_hardware.yaml
* Adding cnos_backup, cnos_bgp, cnos_conditional_command, cnos_condtional_template, cnos_ethernet, cnos_portchannel, cnos_rollback.
* Update README.md
* Adding the sample roles for cnos_save, cnos_show_run, cnos_template, cnos_vlag and cnos_vlan
6 years ago
|
|
|
---
|
|
|
|
- debug: msg="START cli/backup.yaml"
|
|
|
|
|
|
|
|
- name: setup
|
|
|
|
cnos_config:
|
|
|
|
commands:
|
|
|
|
- no vlan 13
|
|
|
|
ignore_errors: yes
|
|
|
|
|
|
|
|
- name: collect any backup files
|
|
|
|
find:
|
|
|
|
paths: "{{ role_path }}/backup"
|
|
|
|
pattern: "{{ inventory_hostname_short }}_config*"
|
|
|
|
register: backup_files
|
|
|
|
delegate_to: localhost
|
|
|
|
|
|
|
|
- name: delete backup files
|
|
|
|
file:
|
|
|
|
path: "{{ item.path }}"
|
|
|
|
state: absent
|
|
|
|
with_items: "{{backup_files.files|default([])}}"
|
|
|
|
|
|
|
|
- name: configure device with config
|
|
|
|
cnos_config:
|
|
|
|
src: roles/cnos_config/templates/basic/config.j2
|
|
|
|
backup: yes
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
Lenovo integration test roles 1 (#44559)
* Integration test suit for cnos_facts, cnos_config, cnos_command, enos_facts, enos_config and enos_command.
* Update all_facts.yaml
* Update invalid_subset.yaml
* Update not_hardware.yaml
* Adding cnos_backup, cnos_bgp, cnos_conditional_command, cnos_condtional_template, cnos_ethernet, cnos_portchannel, cnos_rollback.
* Update README.md
* Adding the sample roles for cnos_save, cnos_show_run, cnos_template, cnos_vlag and cnos_vlan
6 years ago
|
|
|
|
|
|
|
- name: collect any backup files
|
|
|
|
find:
|
|
|
|
paths: "{{ role_path }}/backup"
|
|
|
|
pattern: "{{ inventory_hostname_short }}_config*"
|
|
|
|
register: backup_files
|
|
|
|
delegate_to: localhost
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "backup_files.files is defined"
|
|
|
|
|
|
|
|
- name: teardown
|
|
|
|
cnos_config:
|
|
|
|
commands:
|
|
|
|
- no vlan 13
|
|
|
|
|
|
|
|
- debug: msg="END cli/backup.yaml"
|