X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2Fhoneycomb%2FHoneycombSetup.py;h=796639e87973d3768145e2c3ec179648d5ae2bcf;hb=refs%2Fchanges%2F29%2F18929%2F2;hp=b4617eb42aa7531623c81a4186532ca2573c0cdf;hpb=da799981f5373b09398319df12e77e2efc75caa6;p=csit.git diff --git a/resources/libraries/python/honeycomb/HoneycombSetup.py b/resources/libraries/python/honeycomb/HoneycombSetup.py index b4617eb42a..796639e879 100644 --- a/resources/libraries/python/honeycomb/HoneycombSetup.py +++ b/resources/libraries/python/honeycomb/HoneycombSetup.py @@ -503,15 +503,13 @@ class HoneycombSetup(object): "in progress ...".format(node['host'])) @staticmethod - def install_odl_features(node, odl_name, path, *features): + def install_odl_features(node, path, *features): """Install required features on a running ODL client. :param node: Honeycomb node. - :param odl_name: Name of ODL client version to use. :param path: Path to ODL client on node. :param features: Optional, list of additional features to install. :type node: dict - :type odl_name: str :type path: str :type features: list """ @@ -519,9 +517,7 @@ class HoneycombSetup(object): ssh = SSH() ssh.connect(node) - auth = "-u karaf" - if odl_name.lower() == "oxygen" or odl_name.lower() == "fluorine": - auth = "-u karaf -p karaf" + auth = "-u karaf -p karaf" cmd = "{path}/*karaf*/bin/client {auth} feature:install " \ "odl-restconf-all " \