1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Ignore routes that are not static manually added (#29094)

Fixes #28841
This commit is contained in:
Ricardo Carrillo Cruz 2017-09-07 17:56:09 +02:00 committed by GitHub
parent a5ee865634
commit f9f0472ba5

View file

@ -137,6 +137,11 @@ def map_config_to_obj(module):
for r in match.group(1).splitlines():
splitted_line = r.split()
code = splitted_line[0]
if code != 'M':
continue
cidr = ip_network(to_text(splitted_line[1]))
prefix = str(cidr.network_address)
mask = str(cidr.netmask)