From ced1495a96fb3d6b0326bb4b236632e618da5479 Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Sun, 24 Mar 2019 20:33:56 +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: I250cbe6699b73d7ddeb3c6e2b875ce8e439276be --- tools/run-compare-configs.sh | 4 ++-- tools/run-compare-xml.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/run-compare-configs.sh b/tools/run-compare-configs.sh index 42406fe81..114c3b952 100755 --- a/tools/run-compare-configs.sh +++ b/tools/run-compare-configs.sh @@ -23,9 +23,9 @@ CONFIGS=$(ls -1 ${CONFIGS_DIR}/*.conf 2>/dev/null) cd .test if [ -e /usr/zuul-env/bin/zuul-cloner ]; then - /usr/zuul-env/bin/zuul-cloner -m ../tools/run-compare-clonemap.yaml --cache-dir /opt/git git://git.openstack.org openstack-infra/project-config + /usr/zuul-env/bin/zuul-cloner -m ../tools/run-compare-clonemap.yaml --cache-dir /opt/git https://git.openstack.org openstack-infra/project-config else - git clone --depth=1 git://git.openstack.org/openstack-infra/project-config + git clone --depth=1 https://git.openstack.org/openstack-infra/project-config fi # setup a default configuration to compare results against cp -r project-config/jenkins/jobs/* run-conf/config diff --git a/tools/run-compare-xml.sh b/tools/run-compare-xml.sh index c32fa8bf9..992a1db23 100755 --- a/tools/run-compare-xml.sh +++ b/tools/run-compare-xml.sh @@ -24,9 +24,9 @@ mkdir -p .test/new/out cd .test if [ -e /usr/zuul-env/bin/zuul-cloner ]; then - /usr/zuul-env/bin/zuul-cloner -m ../tools/run-compare-clonemap.yaml --cache-dir /opt/git git://git.openstack.org openstack-infra/project-config + /usr/zuul-env/bin/zuul-cloner -m ../tools/run-compare-clonemap.yaml --cache-dir /opt/git https://git.openstack.org openstack-infra/project-config else - git clone --depth=1 git://git.openstack.org/openstack-infra/project-config + git clone --depth=1 https://git.openstack.org/openstack-infra/project-config fi cp -r project-config/jenkins/jobs/* old/config cp -r project-config/jenkins/jobs/* new/config