e9d7fa0418
* HTTPAPI connection * Punt run_commands to cliconf or httpapi * Fake enable_mode on eapi * Pull changes to nxos * Move load_config to edit_config for future-preparedness * Don't fail on lldp disabled * Re-enable check_rc on nxos' run_commands * Reorganize nxos httpapi plugin for compatibility * draft docs for connection: httpapi * restores docs for connection:local for eapi * Add _remote_is_local to httpapi
36 lines
917 B
YAML
36 lines
917 B
YAML
---
|
|
- debug: msg="START connection={{ ansible_connection }} nxos common/net_logging.yaml"
|
|
- debug: msg="Using provider={{ connection.transport }}"
|
|
when: ansible_connection == "local"
|
|
|
|
# Add minimal testcase to check args are passed correctly to
|
|
# implementation module and module run is successful.
|
|
|
|
- name: Delete/disable console logging - setup
|
|
net_logging:
|
|
dest: console
|
|
dest_level: 0
|
|
state: absent
|
|
register: result
|
|
|
|
- name: Set up console logging using platform agnostic module
|
|
net_logging:
|
|
dest: console
|
|
dest_level: 0
|
|
state: present
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == true'
|
|
- '"logging console 0" in result.commands'
|
|
|
|
- name: Delete/disable console logging - teardown
|
|
net_logging:
|
|
dest: console
|
|
dest_level: 0
|
|
state: absent
|
|
register: result
|
|
|
|
|
|
- debug: msg="END connection={{ ansible_connection }} nxos common/net_logging.yaml"
|