ansible/test/integration/targets/nxos_install_os/tasks/main.yaml
Mike Wiebe 7c73dd3e78 nxos_install_os: Fix nxapi local failures (#55993)
* Fix nxapi failures

* Remove logit debug calls

* Remove msg_timestamps

* Fix code alignment issue
2019-06-06 09:35:08 +05:30

12 lines
310 B
YAML

---
# Upgrade using SSH
- include: network_cli.yaml
when: connection_type == 'network_cli'
- include: network_local.yaml
when: connection_type == 'cli_local'
# Upgrade using NX-API
- include: httpapi.yaml
when: connection_type == 'httpapi'
- include: nxapi.yaml
when: connection_type == 'nxapi_local'