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: Ide1f122e2ecd71edc1840dc598c100c965a47c0e
This commit is contained in:
Ian Wienand 2019-03-24 20:34:15 +00:00
parent e86c6fbc65
commit 7b581bed94
2 changed files with 6 additions and 6 deletions

View File

@ -23,10 +23,10 @@
tox_envlist: all
tempest_test_regex: monasca_tempest_tests.tests.event_api
devstack_plugins:
monasca-api: git://git.openstack.org/openstack/monasca-api
monasca-log-api: git://git.openstack.org/openstack/monasca-log-api
monasca-events-api: git://git.openstack.org/openstack/monasca-events-api
monasca-tempest-plugin: git://git.openstack.org/openstack/monasca-tempest-plugin
monasca-api: https://git.openstack.org/openstack/monasca-api
monasca-log-api: https://git.openstack.org/openstack/monasca-log-api
monasca-events-api: https://git.openstack.org/openstack/monasca-events-api
monasca-tempest-plugin: https://git.openstack.org/openstack/monasca-tempest-plugin
irrelevant-files:
- ^.*\.rst$
- ^.*\.md$

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}'`