From 6208fc4f3cec1dbf3e8f3605d37db6b5f2e3a54c Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Sun, 24 Mar 2019 20:35:42 +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: I34c2be045d56d99792fcc1533b67c2c8de1aedac --- README.md | 2 +- all-in-one.sh | 2 +- functions | 2 +- playbooks/prepare-node-beaker.yaml | 2 +- playbooks/prepare-node-integration.yaml | 2 +- playbooks/prepare-node-unit.yaml | 2 +- run_tests.sh | 8 ++++---- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cf1f6d90e..1e2a641f8 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,7 @@ If you're new in Puppet OpenStack and you want to deploy an All-In-One setup of an OpenStack Cloud with the Puppet modules, please follow the steps: ```bash -git clone git://git.openstack.org/openstack/puppet-openstack-integration +git clone https://git.openstack.org/openstack/puppet-openstack-integration cd puppet-openstack-integration ./all-in-one.sh ``` diff --git a/all-in-one.sh b/all-in-one.sh index bbd4fa512..2f309027c 100755 --- a/all-in-one.sh +++ b/all-in-one.sh @@ -23,7 +23,7 @@ # * At least 10GB of storage # # Usage: -# $ git clone git://git.openstack.org/openstack/puppet-openstack-integration +# $ git clone https://git.openstack.org/openstack/puppet-openstack-integration # $ cd puppet-openstack-integration # $ ./all-in-one.sh # diff --git a/functions b/functions index 4eef055fe..302f7e8c7 100644 --- a/functions +++ b/functions @@ -44,7 +44,7 @@ EOF /usr/zuul-env/bin/zuul-cloner -m clonemap.yaml \ --cache-dir /opt/git \ --zuul-branch $ZUUL_BRANCH \ - git://git.openstack.org $project_names + https://git.openstack.org $project_names # Because openstack-integration can't be a class name. # https://projects.puppetlabs.com/issues/5268 diff --git a/playbooks/prepare-node-beaker.yaml b/playbooks/prepare-node-beaker.yaml index bbc6b3a86..f1ac052d3 100644 --- a/playbooks/prepare-node-beaker.yaml +++ b/playbooks/prepare-node-beaker.yaml @@ -26,7 +26,7 @@ dest: openstack/puppet-openstack-integration EOF /usr/zuul-env/bin/zuul-cloner -m $CLONEMAP --cache-dir /opt/git \ - git://git.openstack.org $ZUUL_PROJECT openstack/puppet-openstack-integration + https://git.openstack.org $ZUUL_PROJECT openstack/puppet-openstack-integration executable: /bin/bash chdir: '{{ ansible_user_dir }}/workspace' environment: '{{ zuul | zuul_legacy_vars }}' diff --git a/playbooks/prepare-node-integration.yaml b/playbooks/prepare-node-integration.yaml index 156f4ae4b..1ea9323a9 100644 --- a/playbooks/prepare-node-integration.yaml +++ b/playbooks/prepare-node-integration.yaml @@ -25,7 +25,7 @@ /usr/zuul-env/bin/zuul-cloner -m $CLONEMAP \ --cache-dir /opt/git \ --zuul-branch $ZUUL_BRANCH_REAL \ - git://git.openstack.org openstack/puppet-openstack-integration + https://git.openstack.org openstack/puppet-openstack-integration executable: /bin/bash chdir: '{{ ansible_user_dir }}/workspace' environment: '{{ zuul | zuul_legacy_vars }}' diff --git a/playbooks/prepare-node-unit.yaml b/playbooks/prepare-node-unit.yaml index 86ba32444..3898f11e9 100644 --- a/playbooks/prepare-node-unit.yaml +++ b/playbooks/prepare-node-unit.yaml @@ -24,7 +24,7 @@ dest: . EOF /usr/zuul-env/bin/zuul-cloner -m $CLONEMAP --cache-dir /opt/git \ - git://git.openstack.org $ZUUL_PROJECT + https://git.openstack.org $ZUUL_PROJECT executable: /bin/bash chdir: '{{ ansible_user_dir }}/workspace' environment: '{{ zuul | zuul_legacy_vars }}' diff --git a/run_tests.sh b/run_tests.sh index 9bf3886a9..a3eee1f2a 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -112,11 +112,11 @@ if [ -e /usr/zuul-env/bin/zuul-cloner ] ; then # For ubuntu we always need to deploy tempest-horizon from source if uses_debs; then /usr/zuul-env/bin/zuul-cloner --workspace /tmp --cache-dir /opt/git \ - git://git.openstack.org openstack/tempest-horizon + https://git.openstack.org openstack/tempest-horizon fi if [ "${TEMPEST_FROM_SOURCE}" = true ]; then /usr/zuul-env/bin/zuul-cloner --workspace /tmp --cache-dir /opt/git \ - git://git.openstack.org openstack/tempest + https://git.openstack.org openstack/tempest # Pin Tempest to TEMPEST_VERSION unless we're running inside the # openstack/tempest gate. if [[ "${ZUUL_PROJECT}" != "openstack/tempest" ]]; then @@ -129,11 +129,11 @@ else # For ubuntu we always need to deploy tempest-horizon from source if uses_debs; then $SUDO rm -rf /tmp/openstack/tempest-horizon - git clone git://git.openstack.org/openstack/tempest-horizon /tmp/openstack/tempest-horizon + git clone https://git.openstack.org/openstack/tempest-horizon /tmp/openstack/tempest-horizon fi if [ "${TEMPEST_FROM_SOURCE}" = true ]; then $SUDO rm -rf /tmp/openstack/tempest - git clone git://git.openstack.org/openstack/tempest /tmp/openstack/tempest + git clone https://git.openstack.org/openstack/tempest /tmp/openstack/tempest pushd /tmp/openstack/tempest git reset --hard origin/$TEMPEST_VERSION popd