mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
Add missing parameters in get_config vyos (#50855)
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user