--enable-dummy was useless anyway for ovsdb-server. Now it is an error to pass it.
Signed-off-by: Daniele Di Proietto <ddiproie...@vmware.com> --- utilities/ovs-dev.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utilities/ovs-dev.py b/utilities/ovs-dev.py index 5cf4771..869d89e 100755 --- a/utilities/ovs-dev.py +++ b/utilities/ovs-dev.py @@ -217,7 +217,7 @@ def run(): _sh("ovsdb-tool", "create", ROOT + "/conf.db", OVS_SRC + "/vswitchd/vswitch.ovsschema") - opts = ["--pidfile", "--log-file", "--enable-dummy"] + opts = ["--pidfile", "--log-file"] _sh(*(["ovsdb-server", "--remote=punix:%s/run/db.sock" % ROOT, @@ -253,7 +253,7 @@ def run(): "--suppressions=%s/tests/openssl.supp" % OVS_SRC] + cmd else: cmd = ["sudo"] + cmd - opts = opts + ["-vconsole:off", "--detach"] + opts = opts + ["-vconsole:off", "--detach", "--enable-dummy"] _sh(*(cmd + opts)) commands.append(run) -- 2.1.0.rc1 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev