mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00: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:
@@ -4,10 +4,13 @@
|
||||
when: ansible_connection == "local"
|
||||
|
||||
- set_fact: neighbor_down_fib_accelerate="true"
|
||||
when: not titanium
|
||||
when: (not titanium) and ((imagetag != 'N1') and (imagetag != 'D1'))
|
||||
|
||||
- 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"
|
||||
nxos_feature:
|
||||
@@ -77,7 +80,7 @@
|
||||
graceful_restart_helper: true
|
||||
graceful_restart_timers_restart: 130
|
||||
graceful_restart_timers_stalepath_time: 310
|
||||
isolate: false
|
||||
isolate: "{{isolate|default(omit)}}"
|
||||
log_neighbor_changes: true
|
||||
maxas_limit: 50
|
||||
neighbor_down_fib_accelerate: "{{neighbor_down_fib_accelerate|default(omit)}}"
|
||||
|
||||
Reference in New Issue
Block a user