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: I8f5c94b34373cb0cc7696e0a19168db186e8164e
This commit is contained in:
Ian Wienand 2019-03-24 20:35:37 +00:00
parent 2e7c29b248
commit ff79f6a790
5 changed files with 5 additions and 5 deletions

View File

@ -4,7 +4,7 @@
"author": "Openstack CI",
"summary": "Puppet module for cgit",
"license": "Apache 2.0",
"source": "git://git.openstack.org/openstack-infra/puppet-cgit.git",
"source": "https://git.openstack.org/openstack-infra/puppet-cgit.git",
"project_page": "http://docs.openstack.org/infra/system-config/",
"issues_url": "https://storyboard.openstack.org/#!/project/778",
"dependencies": []

View File

@ -170,7 +170,7 @@ describe 'puppet-cgit module', :if => ['fedora', 'redhat'].include?(os[:family])
it { should be_file }
it { should be_owned_by 'root' }
it { should be_grouped_into 'root' }
its(:content) { should include 'clone-prefix=git://git.openstack.org https://git.openstack.org' }
its(:content) { should include 'clone-prefix=https://git.openstack.org https://git.openstack.org' }
end
describe file('/var/lib/git/.ssh/authorized_keys') do

View File

@ -167,7 +167,7 @@ describe 'puppet-cgit module begind proxy', :if => ['fedora', 'redhat'].include?
it { should be_file }
it { should be_owned_by 'root' }
it { should be_grouped_into 'root' }
its(:content) { should include 'clone-prefix=git://git.openstack.org https://git.openstack.org' }
its(:content) { should include 'clone-prefix=https://git.openstack.org https://git.openstack.org' }
end
describe file('/var/lib/git/.ssh/authorized_keys') do

View File

@ -15,7 +15,7 @@ if ($::osfamily == 'RedHat') {
manage_cgitrc => true,
behind_proxy => true,
cgitrc_settings => {
'clone-prefix' => 'git://git.openstack.org https://git.openstack.org',
'clone-prefix' => 'https://git.openstack.org https://git.openstack.org',
'root-title' => 'OpenStack git repository browser',
},
}

View File

@ -14,7 +14,7 @@ if ($::osfamily == 'RedHat') {
ssl_key_file => '/etc/pki/tls/private/localhost.key',
manage_cgitrc => true,
cgitrc_settings => {
'clone-prefix' => 'git://git.openstack.org https://git.openstack.org',
'clone-prefix' => 'https://git.openstack.org https://git.openstack.org',
'root-title' => 'OpenStack git repository browser',
},
}