diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-05-18 16:31:17 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-05-21 23:48:18 +0000 |
commit | 88eeb55cade0caf1fbde24ec9012439b2a9d58c3 (patch) | |
tree | 44e769035bbb972f2eebd1c1e2f737d325b4a1d4 /boot/dcae_install.sh | |
parent | 3b5d37e7412b3a9a1c0d0a9bfc79d7dcab5d3bef (diff) |
Retrieve boot scripts from new demo artifact zip
Remove use of the raw repo.
Remove nexus_repo parameter.
Add new nexus_artifact_repo parameter with default value.
Change-Id: Ib502a77010258c2a7a642cd375094b336d046174
Issue-ID: INT-504
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'boot/dcae_install.sh')
-rw-r--r-- | boot/dcae_install.sh | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/boot/dcae_install.sh b/boot/dcae_install.sh index eac9a69c..ece7744b 100644 --- a/boot/dcae_install.sh +++ b/boot/dcae_install.sh @@ -1,7 +1,6 @@ #!/bin/bash # Read configuration files -NEXUS_REPO=$(cat /opt/config/nexus_repo.txt) ARTIFACTS_VERSION=$(cat /opt/config/artifacts_version.txt) DNS_IP_ADDR=$(cat /opt/config/dns_ip_addr.txt) CLOUD_ENV=$(cat /opt/config/cloud_env.txt) @@ -25,7 +24,6 @@ OPENSTACK_TENANT_NAME=OPEN-ECOMP OPENSTACK_REGION=$(cat /opt/config/openstack_region.txt) OPENSTACK_PRIVATE_NETWORK=$(cat /opt/config/openstack_private_network_name.txt) -NEXUS_URL_ROOT=$(cat /opt/config/nexus_repo_root.txt) NEXUS_USER=$(cat /opt/config/nexus_username.txt) NEXUS_PASSWORD=$(cat /opt/config/nexus_password.txt) NEXUS_URL_SNAPSHOTS=$(cat /opt/config/nexus_url_snapshots.txt) @@ -86,8 +84,8 @@ apt-get update apt-get install --allow-unauthenticated -y apt-transport-https ca-certificates wget make openjdk-8-jdk git ntp ntpdate # Download scripts from Nexus -curl -k $NEXUS_REPO/org.onap.demo/boot/$ARTIFACTS_VERSION/dcae_vm_init.sh -o /opt/dcae_vm_init.sh -curl -k $NEXUS_REPO/org.onap.demo/boot/$ARTIFACTS_VERSION/dcae_serv.sh -o /opt/dcae_serv.sh +unzip -p -j /opt/boot-$ARTIFACTS_VERSION.zip dcae_vm_init.sh > /opt/dcae_vm_init.sh +unzip -p -j /opt/boot-$ARTIFACTS_VERSION.zip dcae_serv.sh > /opt/dcae_serv.sh chmod +x /opt/dcae_vm_init.sh chmod +x /opt/dcae_serv.sh mv /opt/dcae_serv.sh /etc/init.d @@ -152,7 +150,6 @@ NEXUS-URL-ROOT: $NEXUS_URL_ROOT NEXUS-USER: $NEXUS_USER NEXUS-PASSWORD: $NEXUS_PASSWORD NEXUS-URL-SNAPSHOTS: $NEXUS_URL_SNAPSHOTS -NEXUS-RAWURL: $NEXUS_REPO DOCKER-REGISTRY: $DOCKER_REGISTRY DOCKER-VERSION: $DOCKER_VERSION |