From 5338d6af286f7cc108e3e80565b939fdd0a7ee79 Mon Sep 17 00:00:00 2001 From: Peter Sprygada Date: Sun, 13 Mar 2016 16:04:56 -0700 Subject: [PATCH] feature in ios to tell shell not to kickstart This commit is necessary to tell shell not to kickstart the cli session as it causes problems in IOS to recognize the prompt. --- lib/ansible/module_utils/ios.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/module_utils/ios.py b/lib/ansible/module_utils/ios.py index 00d746f0e0f..f8c1e256bd4 100644 --- a/lib/ansible/module_utils/ios.py +++ b/lib/ansible/module_utils/ios.py @@ -52,7 +52,7 @@ class Cli(object): username = self.module.params['username'] password = self.module.params['password'] - self.shell = Shell() + self.shell = Shell(kickstart=False) try: self.shell.open(host, port=port, username=username, password=password)