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/nxos_template/tests/cli/force.yaml

39 lines
703 B
YAML

---
- debug: msg="START cli/force.yaml"
- name: setup
nxos_config:
commands:
- no description
- no shutdown
parents:
- interface Ethernet2/5
match: none
provider: "{{ cli }}"
- name: configure device with config
nxos_template:
src: basic/config.j2
provider: "{{ cli }}"
force: yes
register: result
- assert:
that:
- "result.changed == true"
- "result.updates is defined"
- name: check device with config
nxos_template:
src: basic/config.j2
provider: "{{ cli }}"
force: yes
register: result
- assert:
that:
- "result.changed == true"
- "result.updates is defined"
- debug: msg="END cli/force.yaml"