- Fix to return error message back to the module. (#31035)

This commit is contained in:
Kedar K 2017-09-29 17:06:30 +05:30 committed by GitHub
commit 916e6be888
3 changed files with 48 additions and 8 deletions

View file

@ -107,7 +107,11 @@ def map_obj_to_commands(want, have, module):
def map_config_to_obj(module):
output = run_commands(module, ['show banner %s' % module.params['banner']])[0]
output = run_commands(module, ['show banner %s' % module.params['banner']], False)[0]
if "Invalid command" in output:
module.fail_json(msg="banner: exec may not be supported on this platform. Possible values are : exec | motd")
if isinstance(output, dict):
output = list(output.values())[0]
@ -148,6 +152,7 @@ def main():
supports_check_mode=True)
warnings = list()
check_args(module, warnings)
result = {'changed': False}
@ -155,7 +160,6 @@ def main():
result['warnings'] = warnings
want = map_params_to_obj(module)
have = map_config_to_obj(module)
commands = map_obj_to_commands(want, have, module)
result['commands'] = commands