Replace openstack.org git:// URLs with https://

This is a mechanically generated change to replace openstack.org
git:// URLs with https:// equivalents.

This is in aid of a planned future move of the git hosting
infrastructure to a self-hosted instance of gitea (https://gitea.io),
which does not support the git wire protocol at this stage.

This update should result in no functional change.

For more information see the thread at

 http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003825.html

Change-Id: I06373169d986628c7403d226b7f91a065dc320fb
This commit is contained in:
Ian Wienand 2019-03-24 20:34:14 +00:00
parent 66d08c2b25
commit a936c123aa
3 changed files with 4 additions and 4 deletions

View File

@ -46,7 +46,7 @@
tox_envlist: all
tempest_test_regex: monasca_tempest_tests.tests.api
devstack_plugins:
monasca-api: git://git.openstack.org/openstack/monasca-api
monasca-api: https://git.openstack.org/openstack/monasca-api
zuul_copy_output:
/var/log/kafka: logs
/etc/kafka/server.properties: logs

View File

@ -52,7 +52,7 @@ MONASCA_METRICS_DB=${MONASCA_METRICS_DB:-influxdb}
# MONASCA_METRICS_DB=${MONASCA_METRICS_DB:-vertica}
# This line will enable all of Monasca.
enable_plugin monasca-api git://git.openstack.org/openstack/monasca-api
enable_plugin monasca-api https://git.openstack.org/openstack/monasca-api
# END DEVSTACK LOCAL.CONF CONTENTS
```

View File

@ -44,8 +44,8 @@ Vagrant.configure(2) do |config|
sudo apt-get -y install git
if [ $http_proxy ]; then
git config --global url.https://git.openstack.org/.insteadOf git://git.openstack.org/
sudo git config --global url.https://git.openstack.org/.insteadOf git://git.openstack.org/
git config --global url.https://git.openstack.org/.insteadOf https://git.openstack.org/
sudo git config --global url.https://git.openstack.org/.insteadOf https://git.openstack.org/
protocol=`echo $http_proxy | awk -F: '{print $1}'`
host=`echo $http_proxy | awk -F/ '{print $3}' | awk -F: '{print $1}'`