bugfix for handling match=strict in nxos_config

Resolves an issue where match=strict would act like match=exact when
evaluating the configuration
reviewable/pr18780/r1
Peter Sprygada 9 years ago
parent c17a2c0206
commit a7f67921fd

@ -168,9 +168,6 @@ def build_candidate(lines, parents, config, strategy):
candidate = list()
if strategy == 'strict':
if len(lines) != len(config):
candidate = list(lines)
else:
for index, cmd in enumerate(lines):
try:
if cmd != config[index]:

Loading…
Cancel
Save