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', }, }