Skip to content

Commit 3c8a3b3

Browse files
stephenfinblp
authored andcommitted
doc: Move WHY-OVS
This is moved separately due to the sheer number of references to this file in the codebase. Signed-off-by: Stephen Finucane <stephen@that.guru> Signed-off-by: Ben Pfaff <blp@ovn.org>
1 parent e12569b commit 3c8a3b3

12 files changed

+14
-13
lines changed

Documentation/automake.mk

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ EXTRA_DIST += \
77
Documentation/index.rst \
88
Documentation/contents.rst \
99
Documentation/intro/index.rst \
10+
Documentation/intro/why-ovs.rst \
1011
Documentation/intro/install/index.rst \
1112
Documentation/intro/install/bash-completion.rst \
1213
Documentation/intro/install/debian.rst \

Documentation/intro/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,5 @@ How to get started with Open vSwitch.
3232
.. toctree::
3333
:maxdepth: 2
3434

35+
why-ovs
3536
install/index
File renamed without changes.

FAQ.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ Q: Why would I use Open vSwitch instead of the Linux bridge?
8787

8888
A: Open vSwitch is specially designed to make it easier to manage VM
8989
network configuration and monitor state spread across many physical hosts
90-
in dynamic virtualized environments. Refer to `WHY-OVS <WHY-OVS.rst>`__
91-
for a more detailed description of how Open vSwitch relates to the Linux
92-
Bridge.
90+
in dynamic virtualized environments. Refer to `WHY-OVS
91+
<Documentation/intro/why-ovs.rst>`__ for a more detailed description of how
92+
Open vSwitch relates to the Linux Bridge.
9393

9494
Q: How is Open vSwitch related to distributed virtual switches like the VMware
9595
vNetwork distributed switch or the Cisco Nexus 1000V?

Makefile.am

+1-2
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,7 @@ docs = \
7070
CONTRIBUTING.rst \
7171
FAQ.rst \
7272
MAINTAINERS.rst \
73-
README.rst \
74-
WHY-OVS.rst
73+
README.rst
7574
EXTRA_DIST = \
7675
$(docs) \
7776
NOTICE \

rhel/openvswitch-fedora.spec.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ fi
481481
%{_mandir}/man8/ovs-vswitchd.8*
482482
%{_mandir}/man8/ovs-parse-backtrace.8*
483483
%{_mandir}/man8/ovs-testcontroller.8*
484-
%doc COPYING NOTICE README.rst WHY-OVS.rst
484+
%doc COPYING NOTICE README.rst
485485
%doc FAQ.rst NEWS rhel/README.RHEL.rst
486486
/var/lib/openvswitch
487487
/var/log/openvswitch

rhel/openvswitch.spec.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ exit 0
248248
/usr/share/openvswitch/scripts/sysconfig.template
249249
/usr/share/openvswitch/vswitch.ovsschema
250250
/usr/share/openvswitch/vtep.ovsschema
251-
%doc COPYING NOTICE README.rst WHY-OVS.rst FAQ.rst NEWS
251+
%doc COPYING NOTICE README.rst FAQ.rst NEWS
252252
%doc rhel/README.RHEL.rst
253253
/var/lib/openvswitch
254254
/var/log/openvswitch

tests/run-oftest

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ case $srcdir in
2121
/*) ;;
2222
*) srcdir=`pwd`/$srcdir ;;
2323
esac
24-
if test ! -e "$srcdir"/WHY-OVS.rst; then
24+
if test ! -e "$srcdir"/README.rst; then
2525
echo >&2 'source directory not found, please set $srcdir or run via \"make check-oftest'
2626
exit 1
2727
fi

tests/run-ryu

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ case $srcdir in
1919
/*) ;;
2020
*) srcdir=`pwd`/$srcdir ;;
2121
esac
22-
if test ! -e "$srcdir"/WHY-OVS.rst; then
22+
if test ! -e "$srcdir"/README.rst; then
2323
echo >&2 'source directory not found, please set $srcdir or run via \"make check-ryu'
2424
exit 1
2525
fi

tutorial/ovs-sandbox

+1-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ if $built; then
223223
case $srcdir in
224224
'')
225225
srcdir=$builddir
226-
if test ! -e "$srcdir"/WHY-OVS.rst; then
226+
if test ! -e "$srcdir"/README.rst; then
227227
srcdir=`cd $builddir/.. && pwd`
228228
fi
229229
;;

utilities/ovs-dev.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
HOME = ENV["HOME"]
2525
PWD = os.getcwd()
2626
OVS_SRC = HOME + "/ovs"
27-
if os.path.exists(PWD + "/WHY-OVS.rst"):
27+
if os.path.exists(PWD + "/README.rst"):
2828
OVS_SRC = PWD # Use current directory as OVS source tree
2929
RUNDIR = OVS_SRC + "/_run"
3030
BUILD_GCC = OVS_SRC + "/_build-gcc"

utilities/ovs-sim.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ if test ! -e "$sim_builddir"/vswitchd/ovs-vswitchd; then
6363
echo "$sim_builddir/vswitchd/ovs-vswitchd does not exist (need to run \"make\"?)" >&2
6464
exit 1
6565
fi
66-
if test ! -e "$sim_srcdir"/WHY-OVS.rst; then
67-
echo "$sim_srcdir/WHY-OVS.rst does not exist" >&2
66+
if test ! -e "$sim_srcdir"/README.rst; then
67+
echo "$sim_srcdir/README.rst does not exist" >&2
6868
exit 1
6969
fi
7070

0 commit comments

Comments
 (0)