mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-03 20:02:45 +00:00
added in method to handle new and old login methods (#47170)
This commit is contained in:
committed by
Nathaniel Case
parent
079705f8da
commit
dc81a3b856
@@ -53,4 +53,7 @@ class TerminalModule(TerminalBase):
|
||||
for cmd in commands:
|
||||
self._exec_cli_command(cmd)
|
||||
except AnsibleConnectionFailure:
|
||||
raise AnsibleConnectionFailure('unable to set terminal parameters')
|
||||
try:
|
||||
self._exec_cli_command(b'config paging disable')
|
||||
except AnsibleConnectionFailure:
|
||||
raise AnsibleConnectionFailure('unable to set terminal parameters')
|
||||
|
||||
Reference in New Issue
Block a user