Skip to content

Commit

Permalink
ovs-dev.py: do not pass --enable-dummy to ovsdb
Browse files Browse the repository at this point in the history
--enable-dummy was useless anyway for ovsdb-server. Now it is an error to pass
it.

Signed-off-by: Daniele Di Proietto <[email protected]>
Acked-by: Joe Stringer <[email protected]>
  • Loading branch information
ddiproietto authored and joestringer committed Sep 15, 2014
1 parent b2a4692 commit 3bacde2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utilities/ovs-dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,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,
Expand Down Expand Up @@ -251,7 +251,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)

Expand Down

0 comments on commit 3bacde2

Please sign in to comment.