Skip to content

Commit

Permalink
doc: Move WHY-OVS
Browse files Browse the repository at this point in the history
This is moved separately due to the sheer number of references to this
file in the codebase.

Signed-off-by: Stephen Finucane <[email protected]>
Signed-off-by: Ben Pfaff <[email protected]>
  • Loading branch information
stephenfin authored and blp committed Dec 12, 2016
1 parent e12569b commit 3c8a3b3
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 13 deletions.
1 change: 1 addition & 0 deletions Documentation/automake.mk
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ EXTRA_DIST += \
Documentation/index.rst \
Documentation/contents.rst \
Documentation/intro/index.rst \
Documentation/intro/why-ovs.rst \
Documentation/intro/install/index.rst \
Documentation/intro/install/bash-completion.rst \
Documentation/intro/install/debian.rst \
Expand Down
1 change: 1 addition & 0 deletions Documentation/intro/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ How to get started with Open vSwitch.
.. toctree::
:maxdepth: 2

why-ovs
install/index
File renamed without changes.
6 changes: 3 additions & 3 deletions FAQ.rst
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ Q: Why would I use Open vSwitch instead of the Linux bridge?

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

Q: How is Open vSwitch related to distributed virtual switches like the VMware
vNetwork distributed switch or the Cisco Nexus 1000V?
Expand Down
3 changes: 1 addition & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,7 @@ docs = \
CONTRIBUTING.rst \
FAQ.rst \
MAINTAINERS.rst \
README.rst \
WHY-OVS.rst
README.rst
EXTRA_DIST = \
$(docs) \
NOTICE \
Expand Down
2 changes: 1 addition & 1 deletion rhel/openvswitch-fedora.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ fi
%{_mandir}/man8/ovs-vswitchd.8*
%{_mandir}/man8/ovs-parse-backtrace.8*
%{_mandir}/man8/ovs-testcontroller.8*
%doc COPYING NOTICE README.rst WHY-OVS.rst
%doc COPYING NOTICE README.rst
%doc FAQ.rst NEWS rhel/README.RHEL.rst
/var/lib/openvswitch
/var/log/openvswitch
Expand Down
2 changes: 1 addition & 1 deletion rhel/openvswitch.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ exit 0
/usr/share/openvswitch/scripts/sysconfig.template
/usr/share/openvswitch/vswitch.ovsschema
/usr/share/openvswitch/vtep.ovsschema
%doc COPYING NOTICE README.rst WHY-OVS.rst FAQ.rst NEWS
%doc COPYING NOTICE README.rst FAQ.rst NEWS
%doc rhel/README.RHEL.rst
/var/lib/openvswitch
/var/log/openvswitch
Expand Down
2 changes: 1 addition & 1 deletion tests/run-oftest
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ case $srcdir in
/*) ;;
*) srcdir=`pwd`/$srcdir ;;
esac
if test ! -e "$srcdir"/WHY-OVS.rst; then
if test ! -e "$srcdir"/README.rst; then
echo >&2 'source directory not found, please set $srcdir or run via \"make check-oftest'
exit 1
fi
Expand Down
2 changes: 1 addition & 1 deletion tests/run-ryu
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ case $srcdir in
/*) ;;
*) srcdir=`pwd`/$srcdir ;;
esac
if test ! -e "$srcdir"/WHY-OVS.rst; then
if test ! -e "$srcdir"/README.rst; then
echo >&2 'source directory not found, please set $srcdir or run via \"make check-ryu'
exit 1
fi
Expand Down
2 changes: 1 addition & 1 deletion tutorial/ovs-sandbox
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ if $built; then
case $srcdir in
'')
srcdir=$builddir
if test ! -e "$srcdir"/WHY-OVS.rst; then
if test ! -e "$srcdir"/README.rst; then
srcdir=`cd $builddir/.. && pwd`
fi
;;
Expand Down
2 changes: 1 addition & 1 deletion utilities/ovs-dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
HOME = ENV["HOME"]
PWD = os.getcwd()
OVS_SRC = HOME + "/ovs"
if os.path.exists(PWD + "/WHY-OVS.rst"):
if os.path.exists(PWD + "/README.rst"):
OVS_SRC = PWD # Use current directory as OVS source tree
RUNDIR = OVS_SRC + "/_run"
BUILD_GCC = OVS_SRC + "/_build-gcc"
Expand Down
4 changes: 2 additions & 2 deletions utilities/ovs-sim.in
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ if test ! -e "$sim_builddir"/vswitchd/ovs-vswitchd; then
echo "$sim_builddir/vswitchd/ovs-vswitchd does not exist (need to run \"make\"?)" >&2
exit 1
fi
if test ! -e "$sim_srcdir"/WHY-OVS.rst; then
echo "$sim_srcdir/WHY-OVS.rst does not exist" >&2
if test ! -e "$sim_srcdir"/README.rst; then
echo "$sim_srcdir/README.rst does not exist" >&2
exit 1
fi

Expand Down

0 comments on commit 3c8a3b3

Please sign in to comment.