Add missing parameters in get_config vyos (#50855)

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
pull/50858/head
Trishna Guha 6 years ago committed by GitHub
parent 6c47594388
commit fc0f20a35e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -90,7 +90,8 @@ def get_capabilities(module):
return module._vyos_capabilities
def get_config(module):
def get_config(module, flags=None, format=None):
flags = [] if flags is None else flags
global _DEVICE_CONFIGS
if _DEVICE_CONFIGS != {}:
@ -98,7 +99,7 @@ def get_config(module):
else:
connection = get_connection(module)
try:
out = connection.get_config()
out = connection.get_config(flags=flags, format=format)
except ConnectionError as exc:
module.fail_json(msg=to_text(exc, errors='surrogate_then_replace'))
cfg = to_text(out, errors='surrogate_then_replace').strip()

Loading…
Cancel
Save