From: Thierry Parmentelat Date: Wed, 6 Apr 2016 09:31:08 +0000 (+0200) Subject: patch by Thomas Dreibholz - ovs-vsctl and not ovs-ovsctl X-Git-Tag: nodemanager-5.2-19~3 X-Git-Url: http://git.onelab.eu/?p=nodemanager.git;a=commitdiff_plain;h=570d234b7d7b40416b296de71225f28c826ee991 patch by Thomas Dreibholz - ovs-vsctl and not ovs-ovsctl --- diff --git a/plugins/privatebridge.py b/plugins/privatebridge.py index 5ec15b9..b77f881 100644 --- a/plugins/privatebridge.py +++ b/plugins/privatebridge.py @@ -72,7 +72,7 @@ def log_call_read(command, timeout=logger.default_timeout_minutes*60, poll=1): def ovs_available (): "return True if ovs-vsctl can be run" try: - child = subprocess.Popen (['ovs-ovsctl', '--help']) + child = subprocess.Popen (['ovs-vsctl', '--help']) child.communicate() return True except: