From ff79f6a7906378d35c02634bb72a80c12db242a7 Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Sun, 24 Mar 2019 20:35:37 +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: I8f5c94b34373cb0cc7696e0a19168db186e8164e --- metadata.json | 2 +- spec/acceptance/basic_spec.rb | 2 +- spec/acceptance/behind_proxy_spec.rb | 2 +- spec/acceptance/fixtures/behindproxy.pp | 2 +- spec/acceptance/fixtures/default.pp | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/metadata.json b/metadata.json index 9d7d3c7..c8ae3e3 100644 --- a/metadata.json +++ b/metadata.json @@ -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": [] diff --git a/spec/acceptance/basic_spec.rb b/spec/acceptance/basic_spec.rb index ed7c32d..a480c91 100644 --- a/spec/acceptance/basic_spec.rb +++ b/spec/acceptance/basic_spec.rb @@ -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 diff --git a/spec/acceptance/behind_proxy_spec.rb b/spec/acceptance/behind_proxy_spec.rb index 25827c6..77dcec6 100644 --- a/spec/acceptance/behind_proxy_spec.rb +++ b/spec/acceptance/behind_proxy_spec.rb @@ -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 diff --git a/spec/acceptance/fixtures/behindproxy.pp b/spec/acceptance/fixtures/behindproxy.pp index 91ed7a5..d365bc9 100644 --- a/spec/acceptance/fixtures/behindproxy.pp +++ b/spec/acceptance/fixtures/behindproxy.pp @@ -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', }, } diff --git a/spec/acceptance/fixtures/default.pp b/spec/acceptance/fixtures/default.pp index 63c03e3..ae6b95f 100644 --- a/spec/acceptance/fixtures/default.pp +++ b/spec/acceptance/fixtures/default.pp @@ -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', }, }