mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
14c05d9e2b
* fixes provider to not log entries * fixes nxapi send_request with config statements * fixes nxapi get_config() * updates nxos_config integration tests
40 lines
842 B
YAML
40 lines
842 B
YAML
---
|
|
- debug: msg="START cli/src_basic.yaml"
|
|
|
|
- name: setup
|
|
nxos_config:
|
|
commands:
|
|
- no description
|
|
- no shutdown
|
|
parents:
|
|
- interface Ethernet2/5
|
|
match: none
|
|
provider: "{{ cli }}"
|
|
|
|
- name: configure device with config
|
|
nxos_config:
|
|
src: basic/config.j2
|
|
defaults: yes
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
# https://github.com/ansible/ansible-modules-core/issues/4807
|
|
- "result.updates is defined"
|
|
|
|
- name: check device with config
|
|
nxos_config:
|
|
src: basic/config.j2
|
|
defaults: yes
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
# https://github.com/ansible/ansible-modules-core/issues/4807
|
|
- "result.updates is not defined"
|
|
|
|
- debug: msg="END cli/src_basic.yaml"
|