From e0260afbd934bcb49691e5f6f6990f32a784eec8 Mon Sep 17 00:00:00 2001 From: Tobias Urdin Date: Mon, 11 Apr 2022 19:06:45 +0000 Subject: [PATCH] Change git url for Tempest to opendev.org Change-Id: Icd9ac3a5d8fab99c46e1c0bf7d2eaba7cff6c88d --- manifests/init.pp | 4 ++-- spec/classes/tempest_init_spec.rb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/init.pp b/manifests/init.pp index 62b1b53e..8211f218 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -17,7 +17,7 @@ # [*tempest_config_file*] # Defaults to '/var/lib/tempest/etc/tempest.conf' # [*tempest_repo_uri*] -# Defaults to 'git://github.com/openstack/tempest.git' +# Defaults to 'https://opendev.org/openstack/tempest' # [*tempest_repo_revision*] # Defaults to undef # [*tempest_clone_path*] @@ -255,7 +255,7 @@ class tempest( # Clone config # - $tempest_repo_uri = 'git://github.com/openstack/tempest.git', + $tempest_repo_uri = 'https://opendev.org/openstack/tempest', $tempest_repo_revision = undef, $tempest_clone_path = '/var/lib/tempest', $tempest_clone_owner = 'root', diff --git a/spec/classes/tempest_init_spec.rb b/spec/classes/tempest_init_spec.rb index ed4062f7..1fba5100 100644 --- a/spec/classes/tempest_init_spec.rb +++ b/spec/classes/tempest_init_spec.rb @@ -184,7 +184,7 @@ describe 'tempest' do is_expected.to contain_vcsrepo('/var/lib/tempest').with( :ensure => 'present', - :source => 'git://github.com/openstack/tempest.git', + :source => 'https://opendev.org/openstack/tempest', :revision => nil, :provider => 'git', :require => 'Package[git]',