patch by Thomas Dreibholz - ovs-vsctl and not ovs-ovsctl
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Wed, 6 Apr 2016 09:31:08 +0000 (11:31 +0200)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Wed, 6 Apr 2016 09:31:08 +0000 (11:31 +0200)
plugins/privatebridge.py

index 5ec15b9..b77f881 100644 (file)
@@ -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: