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

This commit is contained in:
Zuul 2019-03-25 13:46:55 +00:00 committed by Gerrit Code Review
commit d2dccf996c
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}")