module_utils_fix_dellos6 (#28060)

(cherry picked from commit adc533804a)
This commit is contained in:
abirami-n 2017-09-12 22:54:36 +05:30 committed by Toshio Kuratomi
parent c92f44a806
commit 3483040a17
2 changed files with 8 additions and 4 deletions

View file

@ -159,7 +159,7 @@ def os6_parse(lines, indent=None, comment_tokens=None):
re.compile(r'support-assist.*$'),
re.compile(r'template.*$'),
re.compile(r'address-family.*$'),
re.compile(r'spanning-tree mst.*$'),
re.compile(r'spanning-tree mst configuration.*$'),
re.compile(r'logging.*$'),
re.compile(r'(radius-server|tacacs-server) host.*$')]
@ -231,9 +231,13 @@ class Dellos6NetworkConfig(NetworkConfig):
for item in self.items:
if str(item) == "exit":
for diff_item in diff:
if diff_item._parents:
if item._parents == diff_item._parents:
diff.append(item)
break
else:
diff.append(item)
break
elif item not in other:
diff.append(item)
return diff