mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
disable prompt timestamps upon successful connection to iosxr
This commit is contained in:
parent
66825f094d
commit
be55bd6cdf
1 changed files with 2 additions and 1 deletions
|
@ -55,7 +55,8 @@ class Cli(CliBase):
|
|||
|
||||
def connect(self, params, **kwargs):
|
||||
super(Cli, self).connect(params, kickstart=False, **kwargs)
|
||||
self.shell.send('terminal length 0')
|
||||
self.shell.send(['terminal length 0',
|
||||
'terminal exec prompt no-timestamp'])
|
||||
|
||||
### implementation of netcli.Cli ###
|
||||
|
||||
|
|
Loading…
Reference in a new issue