tools: frr-reload remove Cumulus Linux release numbers from comments

Signed-off-by: Daniel Walton <dwalton@cumulusnetworks.com>

The "3.0", etc in the comments were referring to Cumulus Linux 3.0 which
was confusing now that FRR has a 3.0
This commit is contained in:
Daniel Walton 2017-11-10 17:57:42 +00:00
parent 028bcc883f
commit 4c76e59220

View File

@ -685,7 +685,7 @@ def ignore_delete_re_add_lines(lines_to_add, lines_to_del):
lines_to_add_to_del.append((tmp_ctx_keys, swpx_peergroup)) lines_to_add_to_del.append((tmp_ctx_keys, swpx_peergroup))
''' '''
In 3.0.1 we changed how we display neighbor interface command. Older We changed how we display the neighbor interface command. Older
versions of frr would display the following: versions of frr would display the following:
neighbor swp1 interface neighbor swp1 interface
neighbor swp1 remote-as external neighbor swp1 remote-as external
@ -735,13 +735,13 @@ def ignore_delete_re_add_lines(lines_to_add, lines_to_del):
lines_to_add_to_del.append((tmp_ctx_keys, swpx_remoteas)) lines_to_add_to_del.append((tmp_ctx_keys, swpx_remoteas))
''' '''
In 3.0, we made bgp bestpath multipath as-relax command We made the 'bgp bestpath as-path multipath-relax' command
automatically assume no-as-set since the lack of this option caused automatically assume 'no-as-set' since the lack of this option caused
weird routing problems and this problem was peculiar to this weird routing problems. When the running config is shown in
implementation. When the running config is shown in relases after releases with this change, the no-as-set keyword is not shown as it
3.0, the no-as-set is not shown as its the default. This causes is the default. This causes frr-reload to unnecessarily unapply
reload to unnecessarily unapply this option to only apply it back this option only to apply it back again, causing unnecessary session
again, causing unnecessary session resets. Handle this. resets.
''' '''
if 'multipath-relax' in line: if 'multipath-relax' in line:
re_asrelax_new = re.search('^bgp\s+bestpath\s+as-path\s+multipath-relax$', line) re_asrelax_new = re.search('^bgp\s+bestpath\s+as-path\s+multipath-relax$', line)