aboutsummaryrefslogtreecommitdiff
path: root/utilities
diff options
context:
space:
mode:
authorGurucharan Shetty <gshetty@nicira.com>2013-03-21 13:22:56 -0700
committerGurucharan Shetty <gshetty@nicira.com>2013-03-21 14:25:08 -0700
commit5bcd75e596283a6039263759f48c2c9ae3558bd0 (patch)
tree4df8373f93d1d14bae9738bdd0303b6cb46badee /utilities
parent1d9df6a122b76217162110331f84ee64c270a663 (diff)
ovs-bugtool: Remove calls of ovs-ofctl on ovs-system.
With single datapath, making ovs-ofctl calls on ovs-system does not give the necessary o/p. This patch removes those calls. The next patch adds the correct commands to bugtool plugin scripts. Signed-off-by: Gurucharan Shetty <gshetty@nicira.com>
Diffstat (limited to 'utilities')
-rwxr-xr-xutilities/bugtool/ovs-bugtool.in2
1 files changed, 0 insertions, 2 deletions
diff --git a/utilities/bugtool/ovs-bugtool.in b/utilities/bugtool/ovs-bugtool.in
index ea723496..19b3378b 100755
--- a/utilities/bugtool/ovs-bugtool.in
+++ b/utilities/bugtool/ovs-bugtool.in
@@ -575,8 +575,6 @@ exclude those logs from the archive.
if os.path.exists(OPENVSWITCH_VSWITCHD_PID):
cmd_output(CAP_NETWORK_STATUS, [OVS_DPCTL, 'show', '-s'])
for d in dp_list():
- cmd_output(CAP_NETWORK_STATUS, [OVS_OFCTL, 'show', d])
- cmd_output(CAP_NETWORK_STATUS, [OVS_OFCTL, 'dump-flows', d])
cmd_output(CAP_NETWORK_STATUS, [OVS_DPCTL, 'dump-flows', d])
try:
vspidfile = open(OPENVSWITCH_VSWITCHD_PID)