mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
5df02dc288
* refactor nxos_bgp_af * refactor nxos_bgp_neighbor * refactor nxos_command * refactor nxos_config * removed accidental file
35 lines
624 B
YAML
35 lines
624 B
YAML
---
|
|
- debug: msg="START {{ connection.transport }}/save.yaml"
|
|
|
|
- name: setup
|
|
nxos_config:
|
|
commands:
|
|
- no description
|
|
- no shutdown
|
|
parents:
|
|
- interface Ethernet2/5
|
|
match: none
|
|
provider: "{{ connection }}"
|
|
|
|
|
|
- name: save config
|
|
nxos_config:
|
|
save: true
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: save should always run
|
|
nxos_config:
|
|
save: true
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- debug: msg="END {{ connection.transport }}/save.yaml"
|