From 570d234b7d7b40416b296de71225f28c826ee991 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Wed, 6 Apr 2016 11:31:08 +0200 Subject: [PATCH] patch by Thomas Dreibholz - ovs-vsctl and not ovs-ovsctl --- plugins/privatebridge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.43.0