mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
2f7f23c9ab
* refactor nxos_interface * refactor nxos_interface_ospf * refactor nxos_logging * refactor nxos_mtu
58 lines
1.1 KiB
YAML
58 lines
1.1 KiB
YAML
---
|
|
- debug: msg="START {{ connection.transport }}/sysmtu.yaml"
|
|
|
|
- name: setup
|
|
nxos_config:
|
|
lines: no system jumbomtu
|
|
match: none
|
|
provider: "{{ connection }}"
|
|
|
|
- name: configure system mtu
|
|
nxos_mtu:
|
|
sysmtu: 2000
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: verify system mtu
|
|
nxos_mtu:
|
|
sysmtu: 2000
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: configure invalid (odd) system mtu
|
|
nxos_mtu:
|
|
sysmtu: 2001
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == true"
|
|
|
|
- name: configure invalid (large) system mtu setting
|
|
nxos_mtu:
|
|
sysmtu: 10000
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == true"
|
|
|
|
- name: teardown
|
|
nxos_config:
|
|
lines: no system jumbomtu
|
|
match: none
|
|
provider: "{{ connection }}"
|
|
|
|
- debug: msg="END {{ connection.transport }}/sysmtu.yaml"
|