Fix nxos_pim idempotence (#28348)

pull/28400/head
Nathaniel Case 7 years ago committed by GitHub
parent af40d04247
commit db5d799122

@ -70,7 +70,7 @@ def get_existing(module, args):
for arg in args:
command = PARAM_TO_COMMAND_KEYMAP[arg]
has_command = re.match(r'(?:{0}\s)(?P<value>.*)$'.format(command), config, re.M)
has_command = re.search(r'^{0}\s(?P<value>.*)$'.format(command), config, re.M)
value = ''
if has_command:

Loading…
Cancel
Save