From d1054b19e8b27111b3d4879a14234d32a947fded Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Sun, 24 Mar 2019 20:33:18 +0000 Subject: [PATCH] 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: I5e3f842508497f32b125d383a7ec07944ebc23ca --- pip_install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pip_install b/pip_install index 281ef23..d776c7e 100755 --- a/pip_install +++ b/pip_install @@ -8,7 +8,7 @@ mkdir -p .test-tars if $(python -c "import ironic" 2> /dev/null); then echo "Ironic already installed." elif [ -x $ZUUL_CLONER ]; then - $ZUUL_CLONER --cache-dir /opt/git --workspace /tmp git://git.openstack.org openstack/ironic + $ZUUL_CLONER --cache-dir /opt/git --workspace /tmp https://git.openstack.org openstack/ironic pip install /tmp/openstack/ironic else ( cd .test-tars && wget -N http://tarballs.openstack.org/ironic/ironic-master.tar.gz ) @@ -18,7 +18,7 @@ fi if $(python -c "import nova" 2> /dev/null); then echo "Nova already installed." elif [ -x $ZUUL_CLONER ]; then - $ZUUL_CLONER --cache-dir /opt/git --workspace /tmp git://git.openstack.org openstack/nova + $ZUUL_CLONER --cache-dir /opt/git --workspace /tmp https://git.openstack.org openstack/nova pip install /tmp/openstack/nova else ( cd .test-tars && wget -N http://tarballs.openstack.org/nova/nova-master.tar.gz )