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: I95cf79aa121b36ff559c21759e91b83be0cbecfe
This commit is contained in:
Ian Wienand 2019-03-24 20:34:15 +00:00
parent 9fd973e497
commit ea3f5b4beb
3 changed files with 5 additions and 5 deletions

View File

@ -24,8 +24,8 @@
tox_envlist: all
tempest_test_regex: monasca_tempest_tests.tests.log_api
devstack_plugins:
monasca-api: git://git.openstack.org/openstack/monasca-api
monasca-log-api: git://git.openstack.org/openstack/monasca-log-api
monasca-api: https://git.openstack.org/openstack/monasca-api
monasca-log-api: https://git.openstack.org/openstack/monasca-log-api
devstack_services:
# Disable unneeded services.
etcd3: false

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
enable_plugin monasca-log-api https://github.com/openstack/monasca-log-api.git
```

View File

@ -28,8 +28,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}'`