Generalize config retrieval in ios_l3_interface module (#45270)

This makes it work with Cisco 3750E.
This commit is contained in:
Joachim Mathes 2018-09-25 08:58:32 +02:00 committed by Trishna Guha
parent a6c20488d3
commit 30314c15c7

View file

@ -218,7 +218,7 @@ def map_obj_to_commands(updates, module):
def map_config_to_obj(module):
config = get_config(module, flags=['| section interface'])
config = get_config(module)
configobj = NetworkConfig(indent=1, contents=config)
match = re.findall(r'^interface (\S+)', config, re.M)