From 70357ba558dbf9e4c16e7c1a48a5064ef96fb60b Mon Sep 17 00:00:00 2001 From: zhangyanxian Date: Tue, 21 Mar 2017 02:35:42 +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: I5e4ee5b64565aadee129d102d7ae12d4f475fa6a --- devstack/README.rst | 4 ++-- doc/source/devref/development_environment.rst | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/devstack/README.rst b/devstack/README.rst index 1622ea0..cde3346 100644 --- a/devstack/README.rst +++ b/devstack/README.rst @@ -10,8 +10,8 @@ Installing with Devstack [[local|localrc]] ... - enable_plugin ceilometer http://git.openstack.org/openstack/ceilometer - enable_plugin ceilometer-powervm http://git.openstack.org/openstack/ceilometer-powervm + enable_plugin ceilometer git.openstack.org/openstack/ceilometer + enable_plugin ceilometer-powervm git.openstack.org/openstack/ceilometer-powervm 3. See ceilometer-powervm/doc/source/devref/usage.rst, then configure the installation through options in local.conf as needed:: diff --git a/doc/source/devref/development_environment.rst b/doc/source/devref/development_environment.rst index 397fd61..6dc5332 100644 --- a/doc/source/devref/development_environment.rst +++ b/doc/source/devref/development_environment.rst @@ -26,8 +26,8 @@ however if you aren't please see `this Git tutorial`_ for an introduction to using Git and `this guide`_ for a tutorial on using Gerrit and Git for code contribution to Openstack projects. -.. _this Git tutorial: http://git-scm.com/book/en/Getting-Started -.. _this guide: http://docs.openstack.org/infra/manual/developers.html#development-workflow +.. _this Git tutorial: https://git-scm.com/book/en/Getting-Started +.. _this guide: https://docs.openstack.org/infra/manual/developers.html#development-workflow Getting the code ----------------