mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add minor conditional checks to nxos_bgp sanity test (#35476)
* Add minor conditional checks to nxos_bgp sanity test * Make ansibot happy
This commit is contained in:
parent
767f32c2b2
commit
5a198e1e6a
1 changed files with 6 additions and 3 deletions
|
@ -4,10 +4,13 @@
|
||||||
when: ansible_connection == "local"
|
when: ansible_connection == "local"
|
||||||
|
|
||||||
- set_fact: neighbor_down_fib_accelerate="true"
|
- set_fact: neighbor_down_fib_accelerate="true"
|
||||||
when: not titanium
|
when: (not titanium) and ((imagetag != 'N1') and (imagetag != 'D1'))
|
||||||
|
|
||||||
- set_fact: reconnect_interval="55"
|
- set_fact: reconnect_interval="55"
|
||||||
when: not titanium
|
when: (not titanium) and ((imagetag != 'N1') and (imagetag != 'D1'))
|
||||||
|
|
||||||
|
- set_fact: isolate="false"
|
||||||
|
when: platform is not match("N35")
|
||||||
|
|
||||||
- name: "Enable feature BGP"
|
- name: "Enable feature BGP"
|
||||||
nxos_feature:
|
nxos_feature:
|
||||||
|
@ -77,7 +80,7 @@
|
||||||
graceful_restart_helper: true
|
graceful_restart_helper: true
|
||||||
graceful_restart_timers_restart: 130
|
graceful_restart_timers_restart: 130
|
||||||
graceful_restart_timers_stalepath_time: 310
|
graceful_restart_timers_stalepath_time: 310
|
||||||
isolate: false
|
isolate: "{{isolate|default(omit)}}"
|
||||||
log_neighbor_changes: true
|
log_neighbor_changes: true
|
||||||
maxas_limit: 50
|
maxas_limit: 50
|
||||||
neighbor_down_fib_accelerate: "{{neighbor_down_fib_accelerate|default(omit)}}"
|
neighbor_down_fib_accelerate: "{{neighbor_down_fib_accelerate|default(omit)}}"
|
||||||
|
|
Loading…
Reference in a new issue