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: Ib0dc5b8d6e16c01c543e250d825c3d7e7553fa58
This commit is contained in:
Ian Wienand 2019-03-24 20:33:01 +00:00
parent d64a96a588
commit 07e88e5503
4 changed files with 10 additions and 10 deletions

View File

@ -848,10 +848,10 @@ def git_clone_and_install(projects_yaml, core_project):
repositories:
- {name: keystone,
repository: 'git://git.openstack.org/openstack/keystone.git',
repository: 'https://git.openstack.org/openstack/keystone.git',
branch: 'stable/icehouse'}
- {name: requirements,
repository: 'git://git.openstack.org/openstack/requirements.git',
repository: 'https://git.openstack.org/openstack/requirements.git',
branch: 'stable/icehouse'}
directory: /mnt/openstack-git

View File

@ -53,10 +53,10 @@ TO_PATCH = [
openstack_origin_git = \
"""repositories:
- {name: requirements,
repository: 'git://git.openstack.org/openstack/requirements',
repository: 'https://git.openstack.org/openstack/requirements',
branch: stable/juno}
- {name: neutron,
repository: 'git://git.openstack.org/openstack/neutron',
repository: 'https://git.openstack.org/openstack/neutron',
branch: stable/juno}"""

View File

@ -196,10 +196,10 @@ class NeutronAPIHooksTests(CharmTestCase):
openstack_origin_git = {
'repositories': [
{'name': 'requirements',
'repository': 'git://git.openstack.org/openstack/requirements', # noqa
'repository': 'https://git.openstack.org/openstack/requirements', # noqa
'branch': 'stable/juno'},
{'name': 'neutron',
'repository': 'git://git.openstack.org/openstack/neutron',
'repository': 'https://git.openstack.org/openstack/neutron',
'branch': 'stable/juno'}
],
'directory': '/mnt/openstack-git',
@ -290,10 +290,10 @@ class NeutronAPIHooksTests(CharmTestCase):
'repositories': [
{'name': 'requirements',
'repository':
'git://git.openstack.org/openstack/requirements',
'https://git.openstack.org/openstack/requirements',
'branch': 'stable/juno'},
{'name': 'neutron',
'repository': 'git://git.openstack.org/openstack/neutron',
'repository': 'https://git.openstack.org/openstack/neutron',
'branch': 'stable/juno'}
],
'directory': '/mnt/openstack-git',

View File

@ -62,10 +62,10 @@ TO_PATCH = [
openstack_origin_git = \
"""repositories:
- {name: requirements,
repository: 'git://git.openstack.org/openstack/requirements',
repository: 'https://git.openstack.org/openstack/requirements',
branch: stable/juno}
- {name: neutron,
repository: 'git://git.openstack.org/openstack/neutron',
repository: 'https://git.openstack.org/openstack/neutron',
branch: stable/juno}"""