ansible-later/env_27/lib/python2.7/site-packages/ansible/module_utils/network/ordnance/ordnance.py
2019-04-11 13:00:36 +02:00

20 lines
487 B
Python

_DEVICE_CONFIGS = {}
def get_config(module, flags=None):
flags = [] if flags is None else flags
cmd = 'show running-config '
cmd += ' '.join(flags)
cmd = cmd.strip()
try:
return _DEVICE_CONFIGS[cmd]
except KeyError:
rc, out, err = module.exec_command(cmd)
if rc != 0:
module.fail_json(msg='unable to retrieve current config', stderr=err)
cfg = str(out).strip()
_DEVICE_CONFIGS[cmd] = cfg
return cfg