mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add missing parameters in get_config vyos (#50855)
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
parent
6c47594388
commit
fc0f20a35e
1 changed files with 3 additions and 2 deletions
|
@ -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…
Reference in a new issue