mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
c2f7f36fc5
* Leverage action plugin to pass credentials to nxos_file_copy for network_cli, httpapi Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * update integration test Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * make sure local test uses provider Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * update tests Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * update doc Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * clarify action plugin comment Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * Add connection=local back to nxos_file_copy because that module is weird Also blacklist it running on nxapi, because that is meaningless * remove provider Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * blacklist nxapi Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * Address review comment Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
75 lines
1.9 KiB
YAML
75 lines
1.9 KiB
YAML
---
|
|
- debug: msg="START connection={{ ansible_connection }} nxos_file_copy sanity test"
|
|
|
|
- name: "Setup - Remove existing file"
|
|
nxos_command: &remove_file
|
|
commands:
|
|
- terminal dont-ask
|
|
- delete network-integration.cfg
|
|
ignore_errors: yes
|
|
|
|
- name: "Setup - Turn on feature scp-server"
|
|
nxos_feature:
|
|
feature: scp-server
|
|
state: enabled
|
|
|
|
- block:
|
|
- name: "Copy network-integration.cfg to bootflash"
|
|
nxos_file_copy: ©_file_same_name
|
|
local_file: "./network-integration.cfg"
|
|
file_system: "bootflash:"
|
|
connect_ssh_port: "{{ ansible_ssh_port }}"
|
|
register: result
|
|
|
|
- assert: &true
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: "Check Idempotence - Copy network-integration.cfg to bootflash"
|
|
nxos_file_copy: *copy_file_same_name
|
|
register: result
|
|
|
|
- assert: &false
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: "Setup - Remove existing file"
|
|
nxos_command: *remove_file
|
|
register: result
|
|
|
|
- name: "Copy inventory.networking.template to bootflash as another name"
|
|
nxos_file_copy: ©_file_different_name
|
|
local_file: "./inventory.networking.template"
|
|
remote_file: "network-integration.cfg"
|
|
file_system: "bootflash:"
|
|
connect_ssh_port: "{{ ansible_ssh_port }}"
|
|
register: result
|
|
|
|
- assert: *true
|
|
|
|
- name: "Check Idempotence - Copy inventory.networking.template to bootflash as another name"
|
|
nxos_file_copy: *copy_file_different_name
|
|
register: result
|
|
|
|
- assert: *false
|
|
|
|
- name: "Setup - Remove existing file"
|
|
nxos_command: *remove_file
|
|
register: result
|
|
|
|
rescue:
|
|
|
|
- debug: msg="TRANSPORT:CLI nxos_file_copy failure detected"
|
|
|
|
always:
|
|
|
|
- name: "Remove file"
|
|
nxos_command: *remove_file
|
|
ignore_errors: yes
|
|
|
|
- name: "Turn off feature scp-server"
|
|
nxos_feature:
|
|
feature: scp-server
|
|
state: disabled
|
|
|
|
- debug: msg="END connection={{ ansible_connection }} nxos_file_copy sanity test"
|