From 8c030f0eaf0e3bd9e50e7f13ee37fa1abf684114 Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Sun, 24 Mar 2019 20:36:00 +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: I648dbeadf4ff11e3d9f23521be530b36186927d9 --- tools/clone_repo.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/clone_repo.sh b/tools/clone_repo.sh index befde3dbd4..92b0de906b 100755 --- a/tools/clone_repo.sh +++ b/tools/clone_repo.sh @@ -58,7 +58,7 @@ Options: --ref -- The git reference to check out. Defaults to HEAD. --upstream -- The upstream server URL, without the git repo - part. Defaults to git://git.openstack.org + part. Defaults to https://git.openstack.org EOF } @@ -68,7 +68,7 @@ WORKSPACE="." CACHE_DIR="${ZUUL_CACHE_DIR:-/opt/git}" BRANCH="master" REF="" -UPSTREAM="git://git.openstack.org" +UPSTREAM="https://git.openstack.org" if [[ $(uname) != "Darwin" ]]; then OPTS=`getopt -o hv --long branch:,cache-dir:,ref:,upstream:,workspace: \