diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-06-07 16:38:25 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-06-07 16:38:42 -0700 |
commit | c076ada557edb69b120921998537f95ef72c6b5a (patch) | |
tree | eca3423957b43b4c267120e8b23d11466232d6b7 | |
parent | 39ae6f4b4fa5504f5ee784e1b939aae0cb072901 (diff) |
Revert "Change deploy scripts to use beijing"
This reverts commit 39ae6f4b4fa5504f5ee784e1b939aae0cb072901.
Change-Id: I3676cf7fa07f5c07c12b26900c4e3bc1d1328b76
Issue-ID: INT-506
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
-rw-r--r-- | deployment/heat/onap-oom/rancher_vm_entrypoint.sh | 2 | ||||
-rwxr-xr-x | test/ete/scripts/install_openstack_cli.sh | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/deployment/heat/onap-oom/rancher_vm_entrypoint.sh b/deployment/heat/onap-oom/rancher_vm_entrypoint.sh index 399a8edda..e44e20ccd 100644 --- a/deployment/heat/onap-oom/rancher_vm_entrypoint.sh +++ b/deployment/heat/onap-oom/rancher_vm_entrypoint.sh @@ -189,7 +189,7 @@ git config --global log.decorate auto # Clone OOM: cd ~ -git clone -b beijing http://gerrit.onap.org/r/oom +git clone -b master http://gerrit.onap.org/r/oom cd oom git log -1 git tag -a "deploy0" -m "initial deployment" diff --git a/test/ete/scripts/install_openstack_cli.sh b/test/ete/scripts/install_openstack_cli.sh index caa291bdd..842034eef 100755 --- a/test/ete/scripts/install_openstack_cli.sh +++ b/test/ete/scripts/install_openstack_cli.sh @@ -38,10 +38,9 @@ if [ -z "$ONAP_WORKDIR" ]; then fi echo "ONAP_WORKDIR=${ONAP_WORKDIR}" if [ ! -d ${ONAP_WORKDIR}/demo ]; then - git clone -b beijing https://gerrit.onap.org/r/demo ${ONAP_WORKDIR}/demo + git clone https://gerrit.onap.org/r/demo ${ONAP_WORKDIR}/demo else pushd ${ONAP_WORKDIR}/demo - git checkout beijing git pull popd fi |