From b13d54762195e5ffc8f53a9a2083ab8dc7abd731 Mon Sep 17 00:00:00 2001 From: jpvrenen Date: Tue, 1 Aug 2017 19:18:34 +0200 Subject: [PATCH] Added result responses (#23336) Return value 'responses' is now created in result, so it can actually be called/used. --- lib/ansible/modules/network/asa/asa_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/network/asa/asa_config.py b/lib/ansible/modules/network/asa/asa_config.py index 66982b523b1..e67ff2e81a6 100644 --- a/lib/ansible/modules/network/asa/asa_config.py +++ b/lib/ansible/modules/network/asa/asa_config.py @@ -279,7 +279,7 @@ def run(module, result): # send the configuration commands to the device and merge # them with the current running config if not module.check_mode: - module.config.load_config(commands) + result['responses'] = module.config.load_config(commands) result['changed'] = True if module.params['save']: