Commit 3c8a3b3 1 parent e12569b commit 3c8a3b3 Copy full SHA for 3c8a3b3
File tree 12 files changed +14
-13
lines changed
12 files changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ EXTRA_DIST += \
7
7
Documentation/index.rst \
8
8
Documentation/contents.rst \
9
9
Documentation/intro/index.rst \
10
+ Documentation/intro/why-ovs.rst \
10
11
Documentation/intro/install/index.rst \
11
12
Documentation/intro/install/bash-completion.rst \
12
13
Documentation/intro/install/debian.rst \
Original file line number Diff line number Diff line change @@ -32,4 +32,5 @@ How to get started with Open vSwitch.
32
32
.. toctree ::
33
33
:maxdepth: 2
34
34
35
+ why-ovs
35
36
install/index
File renamed without changes.
Original file line number Diff line number Diff line change @@ -87,9 +87,9 @@ Q: Why would I use Open vSwitch instead of the Linux bridge?
87
87
88
88
A: Open vSwitch is specially designed to make it easier to manage VM
89
89
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.
93
93
94
94
Q: How is Open vSwitch related to distributed virtual switches like the VMware
95
95
vNetwork distributed switch or the Cisco Nexus 1000V?
Original file line number Diff line number Diff line change @@ -70,8 +70,7 @@ docs = \
70
70
CONTRIBUTING.rst \
71
71
FAQ.rst \
72
72
MAINTAINERS.rst \
73
- README.rst \
74
- WHY-OVS.rst
73
+ README.rst
75
74
EXTRA_DIST = \
76
75
$(docs ) \
77
76
NOTICE \
Original file line number Diff line number Diff line change 481
481
%{_mandir}/man8/ovs-vswitchd.8*
482
482
%{_mandir}/man8/ovs-parse-backtrace.8*
483
483
%{_mandir}/man8/ovs-testcontroller.8*
484
- %doc COPYING NOTICE README.rst WHY-OVS.rst
484
+ %doc COPYING NOTICE README.rst
485
485
%doc FAQ.rst NEWS rhel/README.RHEL.rst
486
486
/var/lib/openvswitch
487
487
/var/log/openvswitch
Original file line number Diff line number Diff line change @@ -248,7 +248,7 @@ exit 0
248
248
/usr/share/openvswitch/scripts/sysconfig.template
249
249
/usr/share/openvswitch/vswitch.ovsschema
250
250
/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
252
252
%doc rhel/README.RHEL.rst
253
253
/var/lib/openvswitch
254
254
/var/log/openvswitch
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ case $srcdir in
21
21
/* ) ;;
22
22
* ) srcdir=` pwd` /$srcdir ;;
23
23
esac
24
- if test ! -e " $srcdir " /WHY-OVS .rst; then
24
+ if test ! -e " $srcdir " /README .rst; then
25
25
echo >&2 ' source directory not found, please set $srcdir or run via \"make check-oftest'
26
26
exit 1
27
27
fi
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ case $srcdir in
19
19
/* ) ;;
20
20
* ) srcdir=` pwd` /$srcdir ;;
21
21
esac
22
- if test ! -e " $srcdir " /WHY-OVS .rst; then
22
+ if test ! -e " $srcdir " /README .rst; then
23
23
echo >&2 ' source directory not found, please set $srcdir or run via \"make check-ryu'
24
24
exit 1
25
25
fi
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ if $built; then
223
223
case $srcdir in
224
224
' ' )
225
225
srcdir=$builddir
226
- if test ! -e " $srcdir " /WHY-OVS .rst; then
226
+ if test ! -e " $srcdir " /README .rst; then
227
227
srcdir=` cd $builddir /.. && pwd`
228
228
fi
229
229
;;
Original file line number Diff line number Diff line change 24
24
HOME = ENV ["HOME" ]
25
25
PWD = os .getcwd ()
26
26
OVS_SRC = HOME + "/ovs"
27
- if os .path .exists (PWD + "/WHY-OVS .rst" ):
27
+ if os .path .exists (PWD + "/README .rst" ):
28
28
OVS_SRC = PWD # Use current directory as OVS source tree
29
29
RUNDIR = OVS_SRC + "/_run"
30
30
BUILD_GCC = OVS_SRC + "/_build-gcc"
Original file line number Diff line number Diff line change @@ -63,8 +63,8 @@ if test ! -e "$sim_builddir"/vswitchd/ovs-vswitchd; then
63
63
echo " $sim_builddir /vswitchd/ovs-vswitchd does not exist (need to run \" make\" ?)" >&2
64
64
exit 1
65
65
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
68
68
exit 1
69
69
fi
70
70
You can’t perform that action at this time.
0 commit comments