From 528c3c1941a3204abebb4f517f8ebc2d0169a9a0 Mon Sep 17 00:00:00 2001 From: zhangyanxian Date: Mon, 20 Mar 2017 01:44:48 +0000 Subject: [PATCH] Optimize the link address for fetching git code Use https instead of http to ensure the safety without containing our account/password information Change-Id: I9476e6052081d1638642f5cbd177e3e736001aef --- CONTRIBUTING.rst | 2 +- HACKING.rst | 2 +- README.rst | 6 +++--- TESTING.rst | 2 +- devstack/README.rst | 8 ++++---- doc/source/others/testing.rst | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index e02f2fdb..a2bf07e7 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -1,4 +1,4 @@ Please see the Neutron CONTRIBUTING.rst file for how to contribute to neutron-dynamic-routing: -`Neutron CONTRIBUTING.rst `_ +`Neutron CONTRIBUTING.rst `_ diff --git a/HACKING.rst b/HACKING.rst index 582de7ab..276b17c8 100644 --- a/HACKING.rst +++ b/HACKING.rst @@ -4,4 +4,4 @@ Neutron Dynamic Routing Style Commandments Please see the Neutron HACKING.rst file for style commandments for neutron-dynamic-routing: -`Neutron HACKING.rst `_ +`Neutron HACKING.rst `_ diff --git a/README.rst b/README.rst index d776d7f4..ec87edcb 100644 --- a/README.rst +++ b/README.rst @@ -13,12 +13,12 @@ and it's related libraries to run. External Resources ================== -The homepage for Neutron is: http://launchpad.net/neutron. Use this +The homepage for Neutron is: https://launchpad.net/neutron. Use this site for asking for help, and filing bugs. We use a single launchpad page for all Neutron projects. Code is available on git.openstack.org at: - + Refer to Neutron documentation for more information: -`Neutron README.rst `_ +`Neutron README.rst `_ diff --git a/TESTING.rst b/TESTING.rst index 220471b0..62ccf8f6 100644 --- a/TESTING.rst +++ b/TESTING.rst @@ -5,4 +5,4 @@ Please see the TESTING.rst file for the Neutron project itself. This will have the latest up to date instructions for how to test Neutron, and will be applicable to neutron-dynamic-routing as well: -`Neutron TESTING.rst `_ +`Neutron TESTING.rst `_ diff --git a/devstack/README.rst b/devstack/README.rst index 987135f5..8c64bf32 100644 --- a/devstack/README.rst +++ b/devstack/README.rst @@ -4,14 +4,14 @@ 1. Download devstack:: - git clone http://git.openstack.org/openstack-dev/devstack.git + git clone https://git.openstack.org/openstack-dev/devstack.git 2. Add neutron-dynamic-routing to devstack. The minimal set of critical local.conf additions are following:: cd devstack cat << EOF >> local.conf - > enable_plugin neutron-dynamic-routing http://git.openstack.org/openstack/neutron-dynamic-routing + > enable_plugin neutron-dynamic-routing https://git.openstack.org/openstack/neutron-dynamic-routing > EOF 3. run devstack:: @@ -24,14 +24,14 @@ Notes: In multiple nodes environment, for controller node:: cd devstack cat << EOF >> local.conf - > enable_plugin neutron-dynamic-routing http://git.openstack.org/openstack/neutron-dynamic-routing + > enable_plugin neutron-dynamic-routing https://git.openstack.org/openstack/neutron-dynamic-routing > DR_MODE=dr_plugin > EOF For the nodes where you want to run dr-agent:: cd devstack cat << EOF >> local.conf - > enable_plugin neutron-dynamic-routing http://git.openstack.org/openstack/neutron-dynamic-routing + > enable_plugin neutron-dynamic-routing https://git.openstack.org/openstack/neutron-dynamic-routing > DR_MODE=dr_agent > EOF diff --git a/doc/source/others/testing.rst b/doc/source/others/testing.rst index 2b335fe3..f153a8f8 100644 --- a/doc/source/others/testing.rst +++ b/doc/source/others/testing.rst @@ -73,12 +73,12 @@ Devstack Setup 1. Download devstack:: - git clone http://git.openstack.org/openstack-dev/devstack.git + git clone https://git.openstack.org/openstack-dev/devstack.git 2. Enable neutron-dynamic-routing:: [[local|localrc]] - enable_plugin neutron-dynamic-routing http://git.openstack.org/openstack/neutron-dynamic-routing + enable_plugin neutron-dynamic-routing https://git.openstack.org/openstack/neutron-dynamic-routing 3. Run devstack::