36457bebc9
* add a new module to manage lacp * add a new module to manage lacp * add a new module to manage lacp * add a new module to manage lacp * add a new module to manage lacp * update for shippable. * update for shippable * add units test to module ce_lacp. * add units test to module ce_lacp. * add units test to module ce_lacp. * update * update * update * update * update * update * update for shippable. * for shippable * update ignore.txt to reslove conflict * update for shippable * update * update unittest to remove provider. * update unittest for shipppable. * use to_native. * intergration test * syntax error * syntax error * syntax error * update for `Andersson007` review and thanks. * update for shippable
31 lines
820 B
YAML
31 lines
820 B
YAML
---
|
|
- debug:
|
|
msg: "START ce_lacp merged integration tests on connection={{ ansible_connection }}"
|
|
|
|
- name: Merge the provided configuration with the exisiting running configuration
|
|
ce_lacp:
|
|
mode: Dynamic
|
|
trunk_id: 10
|
|
preempt_enable: True
|
|
state_flapping: True
|
|
port_id_extension_enable: True
|
|
unexpected_mac_disable: True
|
|
system_id: 1111-2222-3333
|
|
timeout_type: Fast
|
|
fast_timeout: 12
|
|
mixed_rate_link_enable: True
|
|
preempt_delay: 12
|
|
collector_delay: 12
|
|
max_active_linknumber: 2
|
|
select: Prority
|
|
priority: 23
|
|
global_priority: 123
|
|
register: result
|
|
|
|
- name: Assert the configuration is reflected on host
|
|
assert:
|
|
that:
|
|
- "result['changed'] == true"
|
|
|
|
- debug:
|
|
msg: "END ce_lacp merged integration tests on connection={{ ansible_connection }}"
|