The git repositories on github for openstack are mirrors of the primary
repositories, which are hosted on git.openstack.org, so switch as much
as I can to using the primary, rather than the github mirror.
Change-Id: Idcfda49a691582055256b830c61e098f4a271339
| ... | ... |
@@ -30,7 +30,7 @@ You can also pick specific OpenStack project releases by setting the appropriate |
| 30 | 30 |
`stackrc` for the default set). Usually just before a release there will be |
| 31 | 31 |
milestone-proposed branches that need to be tested:: |
| 32 | 32 |
|
| 33 |
- GLANCE_REPO=https://github.com/openstack/glance.git |
|
| 33 |
+ GLANCE_REPO=git://git.openstack.org/openstack/glance.git |
|
| 34 | 34 |
GLANCE_BRANCH=milestone-proposed |
| 35 | 35 |
|
| 36 | 36 |
# Start A Dev Cloud |
| ... | ... |
@@ -62,7 +62,7 @@ fi |
| 62 | 62 |
|
| 63 | 63 |
# Base GIT Repo URL |
| 64 | 64 |
# Another option is http://review.openstack.org/p |
| 65 |
-GIT_BASE=${GIT_BASE:-https://github.com}
|
|
| 65 |
+GIT_BASE=${GIT_BASE:-git://git.openstack.org}
|
|
| 66 | 66 |
|
| 67 | 67 |
# metering service |
| 68 | 68 |
CEILOMETER_REPO=${CEILOMETER_REPO:-${GIT_BASE}/openstack/ceilometer.git}
|
| ... | ... |
@@ -182,7 +182,7 @@ NOVNC_REPO=${NOVNC_REPO:-${GIT_BASE}/kanaka/noVNC.git}
|
| 182 | 182 |
NOVNC_BRANCH=${NOVNC_BRANCH:-master}
|
| 183 | 183 |
|
| 184 | 184 |
# ryu service |
| 185 |
-RYU_REPO=${RYU_REPO:-${GIT_BASE}/osrg/ryu.git}
|
|
| 185 |
+RYU_REPO=${RYU_REPO:-https://github.com/osrg/ryu.git}
|
|
| 186 | 186 |
RYU_BRANCH=${RYU_BRANCH:-master}
|
| 187 | 187 |
|
| 188 | 188 |
# a websockets/html5 or flash powered SPICE console for vm instances |
| ... | ... |
@@ -2,7 +2,7 @@ |
| 2 | 2 |
# |
| 3 | 3 |
# **build_tempest.sh** |
| 4 | 4 |
|
| 5 |
-# Checkout and prepare a Tempest repo: https://github.com/openstack/tempest.git |
|
| 5 |
+# Checkout and prepare a Tempest repo: git://git.openstack.org/openstack/tempest.git |
|
| 6 | 6 |
|
| 7 | 7 |
function usage {
|
| 8 | 8 |
echo "$0 - Check out and prepare a Tempest repo" |
| ... | ... |
@@ -111,8 +111,8 @@ function test_no_plugin_directory_found {
|
| 111 | 111 |
|
| 112 | 112 |
function test_zip_snapshot_location {
|
| 113 | 113 |
diff \ |
| 114 |
- <(zip_snapshot_location "https://github.com/openstack/nova.git" "master") \ |
|
| 115 |
- <(echo "https://github.com/openstack/nova/zipball/master") |
|
| 114 |
+ <(zip_snapshot_location "git://git.openstack.org/openstack/nova.git" "master") \ |
|
| 115 |
+ <(echo "git://git.openstack.org/openstack/nova/zipball/master") |
|
| 116 | 116 |
} |
| 117 | 117 |
|
| 118 | 118 |
function test_create_directory_for_kernels {
|