bugfix for handling match=strict in nxos_config

Resolves an issue where match=strict would act like match=exact when
evaluating the configuration
This commit is contained in:
Peter Sprygada 2016-03-10 07:18:01 -05:00 committed by Matt Clay
parent 90650256ef
commit b0a9308e0d

View file

@ -168,15 +168,12 @@ 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]:
candidate.append(cmd)
except IndexError:
for index, cmd in enumerate(lines):
try:
if cmd != config[index]:
candidate.append(cmd)
except IndexError:
candidate.append(cmd)
elif strategy == 'exact':
if len(lines) != len(config):