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
This commit is contained in:
parent
0bdf787923
commit
6208fc4f3c
@ -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
|
||||
```
|
||||
|
@ -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
|
||||
#
|
||||
|
@ -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
|
||||
|
@ -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 }}'
|
||||
|
@ -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 }}'
|
||||
|
@ -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 }}'
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user