diff --git a/lib/ansible/modules/network/nxos/nxos_pim.py b/lib/ansible/modules/network/nxos/nxos_pim.py index ed24bc38e99..cea61c55844 100644 --- a/lib/ansible/modules/network/nxos/nxos_pim.py +++ b/lib/ansible/modules/network/nxos/nxos_pim.py @@ -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.*)$'.format(command), config, re.M) + has_command = re.search(r'^{0}\s(?P.*)$'.format(command), config, re.M) value = '' if has_command: