mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
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.
This commit is contained in:
parent
249caac0d3
commit
5338d6af28
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue