From 063c2f9d59406926b4356e2a86f0f6830cf815d4 Mon Sep 17 00:00:00 2001 From: abirami-n Date: Mon, 14 Jan 2019 14:05:34 +0530 Subject: [PATCH] fix_dellos6_config (#50599) --- lib/ansible/modules/network/dellos6/dellos6_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/network/dellos6/dellos6_config.py b/lib/ansible/modules/network/dellos6/dellos6_config.py index d7503e9540b..e38a2effc07 100644 --- a/lib/ansible/modules/network/dellos6/dellos6_config.py +++ b/lib/ansible/modules/network/dellos6/dellos6_config.py @@ -287,7 +287,7 @@ def main(): result['changed'] = True if not module.check_mode: cmd = {'command': 'copy running-config startup-config', - 'prompt': r'\(y/n\)\s?$', 'answer': 'yes'} + 'prompt': r'\(y/n\)\s?$', 'answer': 'y'} run_commands(module, [cmd]) result['saved'] = True else: