X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2Fhoneycomb%2FHoneycombSetup.py;h=c631c37e955fa1c2404b33732f5979bdd1b0e73b;hp=d23b092655b4438d7f9acc0da1b8c3517109a517;hb=5acbc578e4d77e4d7b402aff6611bbbc7e0b201b;hpb=df228e1794d4a5a1c3028e1e214731b5f0450b99 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: