From 5acbc578e4d77e4d7b402aff6611bbbc7e0b201b Mon Sep 17 00:00:00 2001 From: selias Date: Wed, 17 May 2017 13:24:09 +0200 Subject: [PATCH] CSIT-557 HC Test: Fix ODL setup in Honeycomb-odl jobs Change-Id: I917f3bfd9cea043e1bc820536db07697e0d41040 Signed-off-by: selias --- resources/libraries/python/honeycomb/HoneycombSetup.py | 4 ++-- 1 file 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: -- 2.16.6