diff options
author | selias <samelias@cisco.com> | 2017-05-17 13:24:09 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2017-05-17 13:52:17 +0000 |
commit | 5acbc578e4d77e4d7b402aff6611bbbc7e0b201b (patch) | |
tree | c5e5fffd1fb8329c73c5dc45be03464d06ef03da /resources | |
parent | fc520fef19e7fb5821d8282bf57821fbe57e392e (diff) |
CSIT-557 HC Test: Fix ODL setup in Honeycomb-odl jobs
Change-Id: I917f3bfd9cea043e1bc820536db07697e0d41040
Signed-off-by: selias <samelias@cisco.com>
Diffstat (limited to 'resources')
-rw-r--r-- | resources/libraries/python/honeycomb/HoneycombSetup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/libraries/python/honeycomb/HoneycombSetup.py b/resources/libraries/python/honeycomb/HoneycombSetup.py index d23b092655..c631c37e95 100644 --- a/resources/libraries/python/honeycomb/HoneycombSetup.py +++ b/resources/libraries/python/honeycomb/HoneycombSetup.py @@ -435,7 +435,7 @@ class HoneycombSetup(object): def setup_odl_client(node, odl_name): """Start ODL client on the specified node. - Karaf should be located in /nfs/common, and VPP and Honeycomb should + Karaf should be located in /mnt/common, and VPP and Honeycomb should already be running, otherwise the start will fail. :param node: Node to start ODL client on. :param odl_name: Name of ODL client version to use. @@ -449,7 +449,7 @@ class HoneycombSetup(object): ssh = SSH() ssh.connect(node) - cmd = "cp -r /nfs/common/*karaf_{name}* ~/karaf".format(name=odl_name) + cmd = "cp -r /mnt/common/*karaf_{name}* ~/karaf".format(name=odl_name) (ret_code, _, _) = ssh.exec_command_sudo(cmd) if int(ret_code) != 0: |