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/sms_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/sms_install.sh')
-rw-r--r-- | boot/sms_install.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/boot/sms_install.sh b/boot/sms_install.sh index 943ec2f3..1c8b6bae 100644 --- a/boot/sms_install.sh +++ b/boot/sms_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) @@ -54,8 +53,8 @@ apt-get update apt-get install --allow-unauthenticated -y apt-transport-https ca-certificates wget openjdk-8-jdk git ntp ntpdate make # Download scripts from Nexus -curl -k $NEXUS_REPO/org.onap.demo/boot/$ARTIFACTS_VERSION/sms_vm_init.sh -o /opt/sms_vm_init.sh -curl -k $NEXUS_REPO/org.onap.demo/boot/$ARTIFACTS_VERSION/sms_serv.sh -o /opt/sms_serv.sh +unzip -p -j /opt/boot-$ARTIFACTS_VERSION.zip sms_vm_init.sh > /opt/sms_vm_init.sh +unzip -p -j /opt/boot-$ARTIFACTS_VERSION.zip sms_serv.sh > /opt/sms_serv.sh chmod +x /opt/sms_vm_init.sh chmod +x /opt/sms_serv.sh mv /opt/sms_serv.sh /etc/init.d |