Fix broken IPv6 regex (#43175)

This commit is contained in:
Lindsay Hill 2018-07-23 22:43:24 -05:00 committed by Ganesh Nalawade
parent 1b86d598fc
commit 42a9fb1337

View file

@ -291,7 +291,7 @@ class Interfaces(FactsBase):
# Only gets primary IPv6 addresses
def populate_ipv6_interfaces(self, data):
interfaces = re.split('=+', data)[1].strip()
matches = re.findall(r'(\S+ \S+) +[\w-]+.+\s+([\d:/]+)', interfaces, re.M)
matches = re.findall(r'(\S+ \S+) +[\w-]+.+\s+([\w:/]+/\d+)', interfaces, re.M)
for match in matches:
interface = match[0]
self.facts['interfaces'][interface]['ipv6'] = list()