Skip to content
This repository has been archived by the owner on Jan 18, 2022. It is now read-only.

Commit

Permalink
Using shorthand for disabling paging to avoid the syntax difference b…
Browse files Browse the repository at this point in the history
…etween versions. (ansible#31942)

Fixes ansible#31855
  • Loading branch information
jmighion authored and mkrizek committed Oct 23, 2017
1 parent 529b7a7 commit 6693cc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/plugins/terminal/aruba.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ class TerminalModule(TerminalBase):

def on_open_shell(self):
try:
self._exec_cli_command(b'no paging')
self._exec_cli_command(b'no pag')
except AnsibleConnectionFailure:
raise AnsibleConnectionFailure('unable to set terminal parameters')

0 comments on commit 6693cc3

Please sign in to comment.