mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-06 06:14:35 +00:00
frr-reload: fixup ipv6 address normalization
The condition to normalize ipv6 addresses was accidentally broken via -
[
e238920df0
tools: Fix reload with 'ipv6 address...' in interface
]
The condition was supposed to be skipped only if "ipv6 add" was present
in the line.
Signed-off-by: Anuradha Karuppiah <anuradhak@cumulusnetworks.com>
This commit is contained in:
parent
410a7b7058
commit
ed37777f03
@ -251,7 +251,7 @@ class Config(object):
|
||||
# Compress duplicate whitespaces
|
||||
line = " ".join(line.split())
|
||||
|
||||
if ":" in line and not "ipv6 add":
|
||||
if ":" in line and not "ipv6 add" in line:
|
||||
qv6_line = get_normalized_ipv6_line(line)
|
||||
self.lines.append(qv6_line)
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user