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: I4b735a86a995d12ff0f39f2cc56fcbe51a1fcb00
This commit is contained in:
Ian Wienand 2019-03-24 20:34:19 +00:00
parent 0544bb785e
commit 56a53ad209
2 changed files with 5 additions and 5 deletions

View File

@ -34,7 +34,7 @@ Install
-------
1. Check out sources to some directory (*<home>/murano-dashboard*)::
user@work:~/$ git clone git://git.openstack.org/openstack/murano-dashboard
user@work:~/$ git clone https://git.openstack.org/openstack/murano-dashboard
2. Install virtualenv::

View File

@ -17,7 +17,7 @@
dest: devstack-gate
EOF
/usr/zuul-env/bin/zuul-cloner -m clonemap.yaml --cache-dir /opt/git \
git://git.openstack.org \
https://git.openstack.org \
openstack-infra/devstack-gate
executable: /bin/bash
chdir: '{{ ansible_user_dir }}/workspace'
@ -38,9 +38,9 @@
export PROJECTS="openstack/horizon $PROJECTS"
export ENABLED_SERVICES=horizon
export PROJECTS="openstack/heat-dashboard $PROJECTS"
export DEVSTACK_LOCAL_CONFIG="enable_plugin heat git://git.openstack.org/openstack/heat"
export DEVSTACK_LOCAL_CONFIG+=$'\n'"enable_plugin murano git://git.openstack.org/openstack/murano"
export DEVSTACK_LOCAL_CONFIG+=$'\n'"enable_plugin heat-dashboard git://git.openstack.org/openstack/heat-dashboard"
export DEVSTACK_LOCAL_CONFIG="enable_plugin heat https://git.openstack.org/openstack/heat"
export DEVSTACK_LOCAL_CONFIG+=$'\n'"enable_plugin murano https://git.openstack.org/openstack/murano"
export DEVSTACK_LOCAL_CONFIG+=$'\n'"enable_plugin heat-dashboard https://git.openstack.org/openstack/heat-dashboard"
export BRANCH_OVERRIDE=default
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE