summaryrefslogtreecommitdiff
path: root/utilities/ovs-vsctl.8.in
diff options
context:
space:
mode:
authorDaniele Venturino <daniele.venturino@m3s.it>2014-01-08 16:03:07 -0800
committerBen Pfaff <blp@nicira.com>2014-01-08 16:03:59 -0800
commit69630ea06ce4697369d257c47101be88b5b08e1d (patch)
treeb60cf9560f34bfb1a7989ae05aefcc75ff8ec35b /utilities/ovs-vsctl.8.in
parent5f67d45a0256558a9129d4cafd7fdca348d51290 (diff)
downloadopenvswitch-69630ea06ce4697369d257c47101be88b5b08e1d.tar.gz
utilities: Wrong command syntax in ovs-vsctl manpage.
The command shown in the man page to disable the STP protocol on a bridge is: ovs-vsctl clear Bridge br0 stp_enable Calling that, the following warning message is returned: ovs-vsctl: "clear" operation cannot be applied to column stp_enable of table Bridge, which is not allowed to be empty It seems correct to use the command: ovs-vsctl set Bridge br0 stp_enable=false Signed-off-by: Daniele Venturino <daniele.venturino@m3s.it> Signed-off-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'utilities/ovs-vsctl.8.in')
-rw-r--r--utilities/ovs-vsctl.8.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/utilities/ovs-vsctl.8.in b/utilities/ovs-vsctl.8.in
index 2223d047f..5db0a70cd 100644
--- a/utilities/ovs-vsctl.8.in
+++ b/utilities/ovs-vsctl.8.in
@@ -965,7 +965,7 @@ Set the path cost of port \fBeth0\fR to 10:
.PP
Deconfigure STP from above:
.IP
-.B "ovs\-vsctl clear Bridge br0 stp_enable"
+.B "ovs\-vsctl set Bridge br0 stp_enable=false"
.PP
.SS "OpenFlow Version"
.PP