From 7b581bed9444e28c3f0d3e727bf2c214c5c6a3b8 Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Sun, 24 Mar 2019 20:34:15 +0000 Subject: [PATCH] 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 --- .zuul.yaml | 8 ++++---- devstack/Vagrantfile | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.zuul.yaml b/.zuul.yaml index 2712e4c..80c860f 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -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$ diff --git a/devstack/Vagrantfile b/devstack/Vagrantfile index b3d302d..999086d 100644 --- a/devstack/Vagrantfile +++ b/devstack/Vagrantfile @@ -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}'`