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: I7fbbc9891194383c3c5eaa6c24bec0e136826b9b
This commit is contained in:
Ian Wienand 2019-03-24 20:35:43 +00:00
parent c10cc3fe6d
commit 0d046d36c1
3 changed files with 4 additions and 4 deletions

View File

@ -10,9 +10,9 @@ install_gems() {
# use puppet-nova to test the gem
if [ -e /usr/zuul-env/bin/zuul-cloner ] ; then
/usr/zuul-env/bin/zuul-cloner --cache-dir /opt/git \
git://git.openstack.org openstack/puppet-nova
https://git.openstack.org openstack/puppet-nova
else
git clone git://git.openstack.org/openstack/puppet-nova openstack/puppet-nova
git clone https://git.openstack.org/openstack/puppet-nova openstack/puppet-nova
fi
cd openstack/puppet-nova

View File

@ -43,7 +43,7 @@ RSpec.configure do |c|
zuul_clone_cmd = '/usr/zuul-env/bin/zuul-cloner '
zuul_clone_cmd += '--cache-dir /opt/git '
zuul_clone_cmd += "--zuul-branch #{zuul_branch} "
zuul_clone_cmd += "git://git.openstack.org #{repo}"
zuul_clone_cmd += "https://git.openstack.org #{repo}"
on host, zuul_clone_cmd
else
on host, "git clone https://git.openstack.org/#{repo} #{repo}"

View File

@ -54,7 +54,7 @@ task :spec_prep do
zuul_clone_cmd = ['/usr/zuul-env/bin/zuul-cloner']
zuul_clone_cmd += ['--cache-dir', '/opt/git']
zuul_clone_cmd += ['--zuul-branch', "#{zuul_branch}"]
zuul_clone_cmd += ['git://git.openstack.org', "#{repo}"]
zuul_clone_cmd += ['https://git.openstack.org', "#{repo}"]
sh(*zuul_clone_cmd)
else
sh("git clone https://git.openstack.org/#{repo} #{repo}")