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: I53dcfcb704a6dbdc8772d275001475bc0b1ecf26
This commit is contained in:
Ian Wienand 2019-03-24 20:33:42 +00:00
parent d814cf0cdf
commit 91efdbc009
5 changed files with 5 additions and 5 deletions

View File

@ -158,7 +158,7 @@ Install Grenade
Get Grenade from GitHub in the usual way::
git clone git://git.openstack.org/openstack-dev/grenade
git clone https://git.openstack.org/openstack-dev/grenade
Optional: running grenade against a remote target
-------------------------------------------------

View File

@ -11,7 +11,7 @@ fi
# Base GIT Repo URL
# Another option is http://review.openstack.org/p
# Another option is https://github.com
GIT_BASE=${GIT_BASE:-git://git.openstack.org}
GIT_BASE=${GIT_BASE:-https://git.openstack.org}
#GIT_BASE=/opt/git
# Destination path for installation ``STACK_ROOT``

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'

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'

View File

@ -49,7 +49,7 @@ sorted_plugins=$(python tools/generate-grenade-plugins-list.py)
for k in ${sorted_plugins}; do
project=${k:0:40}
giturl="git://git.openstack.org/openstack/${k:0:36}"
giturl="https://git.openstack.org/openstack/${k:0:36}"
printf "|%-40s|%-73s|\n" "${project}" "${giturl}"
printf "+----------------------------------------+-------------------------------------------------------------------------+\n"
done