4fe08441be
* Warn on tests used as filters * Update docs, add aliases for tests that fit more gramatically with test syntax * Fix rst formatting * Add successful filter, alias of success * Remove renamed_deprecation, it was overkill * Make directory alias for is_dir * Update tests to use proper jinja test syntax * Update additional documentation, living outside of YAML files, to reflect proper jinja test syntax * Add conversion script, porting guide updates, and changelog updates * Update newly added uses of tests as filters * No underscore variable * Convert recent tests as filter changes to win_stat * Fix some changes related to rebasing a few integration tests * Make tests_as_filters_warning explicitly accept the name of the test, instead of inferring the name * Add test for tests_as_filters_warning * Update tests as filters in newly added/modified tests * Address recent changes to several integration tests * Address recent changes in cs_vpc
47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
---
|
|
- debug: msg="START cli/configure.yaml"
|
|
|
|
- set_fact: nxapi_sandbox_option="yes"
|
|
when: platform is search('N7K')
|
|
|
|
- name: Setup - put NXAPI in stopped state
|
|
nxos_nxapi:
|
|
state: absent
|
|
provider: "{{ cli }}"
|
|
|
|
- name: Configure NXAPI
|
|
nxos_nxapi:
|
|
enable_http: no
|
|
enable_sandbox: "{{nxapi_sandbox_option|default(omit)}}"
|
|
enable_https: yes
|
|
https_port: 9443
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- nxos_command:
|
|
commands:
|
|
- show nxapi | json
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- include: targets/nxos_nxapi/tasks/platform/n7k/assert_changes.yaml
|
|
when: platform is match('N7K')
|
|
|
|
- include: targets/nxos_nxapi/tasks/platform/default/assert_changes.yaml
|
|
when: not ( platform is search('N7K'))
|
|
|
|
- name: Configure NXAPI again
|
|
nxos_nxapi:
|
|
enable_http: no
|
|
enable_sandbox: "{{nxapi_sandbox_option|default(omit)}}"
|
|
enable_https: yes
|
|
https_port: 9443
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- name: Assert configuration is idempotent
|
|
assert:
|
|
that:
|
|
- result.changed == false
|
|
|
|
- debug: msg="END cli/configure.yaml"
|