f08332acb4
* nxos enable mode Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * fix prompt Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * Add authorize,auth_pass Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * remove byte string from exec_cli_command Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * Add on_become test Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * removed_in_version Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
39 lines
977 B
YAML
39 lines
977 B
YAML
---
|
|
- debug: msg="START connection={{ ansible_connection }}/sanity.yaml"
|
|
- debug: msg="Using provider={{ connection.transport }}/sanity.yaml"
|
|
when: ansible_connection == "local"
|
|
|
|
- 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
|
|
provider: "{{ cli }}"
|
|
|
|
- name: reset_connection
|
|
meta: reset_connection
|
|
|
|
- name: run commands with become
|
|
nxos_command:
|
|
commands: 'show privilege'
|
|
provider: "{{ cli }}"
|
|
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
|
|
provider: "{{ cli }}"
|
|
ignore_errors: yes
|
|
|
|
- debug: msg="END connection={{ ansible_connection }}/sanity.yaml"
|