diff options
author | sharath <sharathkumarboyanapally@gmail.com> | 2018-10-09 15:16:18 +0530 |
---|---|---|
committer | Vratko Polak <vrpolak@cisco.com> | 2018-10-24 18:21:26 +0000 |
commit | da8fb7d7ab386fdefb728d71bfce9bb73624977c (patch) | |
tree | 52458408726e8f032ee373e727df7de2a9efebf5 /resources/libraries/python/DMM/SetupDMMTest.py | |
parent | f3e74e6b21a5d5568f4bd1357222e8a014d8397c (diff) |
Migration of DMM-CSIT scripts to DMM repo
Change-Id: Ibaa7652b24385805b5cdd1540ed98b09e68c69bc
Signed-off-by: sharath <sharathkumarboyanapally@gmail.com>
Diffstat (limited to 'resources/libraries/python/DMM/SetupDMMTest.py')
-rw-r--r-- | resources/libraries/python/DMM/SetupDMMTest.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/libraries/python/DMM/SetupDMMTest.py b/resources/libraries/python/DMM/SetupDMMTest.py index 7bb596546c..993e11924e 100644 --- a/resources/libraries/python/DMM/SetupDMMTest.py +++ b/resources/libraries/python/DMM/SetupDMMTest.py @@ -95,7 +95,7 @@ def install_dmm_test(node): """ arch = Topology.get_node_arch(node) - logger.console('Install the DMM on {0} ({1})'.format(node['host'], arch)) + logger.console('Install DMM on {0} ({1})'.format(node['host'], arch)) ssh = SSH() ssh.connect(node) @@ -105,10 +105,10 @@ def install_dmm_test(node): .format(con.REMOTE_FW_DIR, con.DMM_SCRIPTS, arch), timeout=600) if ret_code != 0: - logger.error('Install the DMM error: {0}'.format(stderr)) + logger.error('Install DMM error: {0}'.format(stderr)) raise RuntimeError('Install prereq failed') else: - logger.console('Install prereq on {0} success!'.format(node['host'])) + logger.console('Install DMM on {0} success!'.format(node['host'])) def setup_node(args): """Run all set-up methods for a node. |