CSIT-557 HC Test: Fix ODL setup in Honeycomb-odl jobs 41/6741/2
authorselias <samelias@cisco.com>
Wed, 17 May 2017 11:24:09 +0000 (13:24 +0200)
committerTibor Frank <tifrank@cisco.com>
Wed, 17 May 2017 13:52:17 +0000 (13:52 +0000)
Change-Id: I917f3bfd9cea043e1bc820536db07697e0d41040
Signed-off-by: selias <samelias@cisco.com>
resources/libraries/python/honeycomb/HoneycombSetup.py

index d23b092..c631c37 100644 (file)
@@ -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: