ansible/test/integration/targets/nxos_become/tests/cli/sanity.yaml
nkshrishail 01e4c41be4 nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068)
* nxos_integration_tests: Removing obsolete provider parameter

* nxos: removing support for local-nxapi plugin

* nxos: removing LocalNxapi plugin implementation

* nxos_nxapi: removing local plugin usage

* REVERT - nxos: removing LocalNxapi plugin implementation

* Addressing yamllint issues

* Removing the condition on the debug messages

* Restoring changes done to nxos_nxapi* tests

* Retaining timeout of 500 on nxos_smoke test

* Some cleanup

* Addressing latest comments

* Restoring the nxos_smoke and removing timeout from nxos_config and nxos_rollback
2020-01-08 13:43:23 +05:30

34 lines
786 B
YAML

---
- debug: msg="START connection={{ ansible_connection }}/sanity.yaml"
- block:
- name: update role to priv-14
nxos_config:
lines:
- username admin role priv-14
- no username admin role priv-15
- enable secret 0 cisco
- name: reset_connection
meta: reset_connection
- name: run commands with become
nxos_command:
commands: 'show privilege'
become: yes
register: result
- assert:
that:
- "'Current privilege level: 15' in result['stdout'][0]"
always:
- name: teardown
nxos_config:
lines:
- username admin role priv-15
- no username admin role priv-14
- no enable secret
ignore_errors: yes
- debug: msg="END connection={{ ansible_connection }}/sanity.yaml"