aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/ssh.py
diff options
context:
space:
mode:
authorMiroslav Miklus <mmiklus@cisco.com>2016-02-11 15:18:12 +0100
committerGerrit Code Review <gerrit@fd.io>2016-02-17 14:46:28 +0000
commitda23519d72dc9415b112f7bab1fd3617750fa79e (patch)
treec16c9503f5e24c26e87d82dbba48ebb28a1b393e /resources/libraries/python/ssh.py
parentaf2c77acfa337228ea3c4c5f2140f39124ec2ab9 (diff)
LF testbed2 topology, T-REX upgrade, vpe->vpp rename
Testing testbed2 infrastructure T-REX upgrade 1.88 -> 1.91 Rename "vpe" to "vpp" Change-Id: Ia03c363e2b3c77a4e469509460b25028e5e1814f Signed-off-by: Miroslav Miklus <mmiklus@cisco.com>
Diffstat (limited to 'resources/libraries/python/ssh.py')
-rw-r--r--resources/libraries/python/ssh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/libraries/python/ssh.py b/resources/libraries/python/ssh.py
index 72e41c76a6..385619ce42 100644
--- a/resources/libraries/python/ssh.py
+++ b/resources/libraries/python/ssh.py
@@ -101,7 +101,7 @@ class SSH(object):
>>> #Execute command without input (sudo -S cmd)
>>> ssh.exex_command_sudo("ifconfig eth0 down")
>>> #Execute command with input (sudo -S cmd <<< "input")
- >>> ssh.exex_command_sudo("vpe_api_test", "dump_interface_table")
+ >>> ssh.exex_command_sudo("vpp_api_test", "dump_interface_table")
"""
if cmd_input is None:
command = 'sudo -S {c}'.format(c=cmd)