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: I3388dccb62c67a4ba4b1c103f2935e2533a2132f
This commit is contained in:
Ian Wienand
2019-03-24 20:34:13 +00:00
parent 0f7c097d7e
commit 58f3644b63
2 changed files with 4 additions and 4 deletions

View File

@@ -22,7 +22,7 @@ Clone Devstack from git (#1) and copy the sample configuration file from the
samples folder to the root folder (#2). Next, open the newly copied samples folder to the root folder (#2). Next, open the newly copied
`local.conf` file with your editor of choice (in our case `vi` #3).:: `local.conf` file with your editor of choice (in our case `vi` #3).::
git clone git://git.openstack.org/openstack-dev/devstack #1 git clone https://git.openstack.org/openstack-dev/devstack #1
cd devstack cd devstack
cp samples/local.conf . #2 cp samples/local.conf . #2
vi local.conf #3 vi local.conf #3
@@ -32,7 +32,7 @@ configuration of different additional components depending on need. Mixmatch
provides one such Devstack plugin, so let's go ahead an enable it by adding provides one such Devstack plugin, so let's go ahead an enable it by adding
the following line at the end of `local.conf`. :: the following line at the end of `local.conf`. ::
enable_plugin mixmatch git://git.openstack.org/openstack/mixmatch enable_plugin mixmatch https://git.openstack.org/openstack/mixmatch
REGISTER_MIXMATCH=true REGISTER_MIXMATCH=true
Finally, run `stack.sh`. (We recommend doing so inside a screen in case of Finally, run `stack.sh`. (We recommend doing so inside a screen in case of

View File

@@ -17,7 +17,7 @@
dest: devstack-gate dest: devstack-gate
EOF EOF
/usr/zuul-env/bin/zuul-cloner -m clonemap.yaml --cache-dir /opt/git \ /usr/zuul-env/bin/zuul-cloner -m clonemap.yaml --cache-dir /opt/git \
git://git.openstack.org \ https://git.openstack.org \
openstack-infra/devstack-gate openstack-infra/devstack-gate
executable: /bin/bash executable: /bin/bash
chdir: '{{ ansible_user_dir }}/workspace' chdir: '{{ ansible_user_dir }}/workspace'
@@ -34,7 +34,7 @@
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
fi fi
export DEVSTACK_LOCAL_CONFIG="enable_plugin mixmatch git://git.openstack.org/openstack/mixmatch" export DEVSTACK_LOCAL_CONFIG="enable_plugin mixmatch https://git.openstack.org/openstack/mixmatch"
export DEVSTACK_GATE_TEMPEST=1 export DEVSTACK_GATE_TEMPEST=1
export DEVSTACK_GATE_TEMPEST_NOTESTS=1 export DEVSTACK_GATE_TEMPEST_NOTESTS=1