diff options
author | Lusheng Ji <lji@research.att.com> | 2018-04-17 11:30:11 -0400 |
---|---|---|
committer | Lusheng Ji <lji@research.att.com> | 2018-04-17 11:32:47 -0400 |
commit | 8b70cb20debeaba06b29e0182bddb07587e29a58 (patch) | |
tree | 5e5610d082f68960986e423f8f01e179fac15159 /boot/dcae2_install.sh | |
parent | c976ce6c5d0ee9988a5592be64c5a3856de54f23 (diff) |
VM start script improvements.
1. improved vm_init script
2. enabled vm_init script at the end of install script
3. noting that now supporting more deployment profiles
Issue-ID: DCAEGEN2-434
Change-Id: I2bcbe1c79571dad5f6d8998f02eaf702efa5625e
Signed-off-by: Lusheng Ji <lji@research.att.com>
Diffstat (limited to 'boot/dcae2_install.sh')
-rwxr-xr-x | boot/dcae2_install.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/boot/dcae2_install.sh b/boot/dcae2_install.sh index ac3c3b56..372c25b2 100755 --- a/boot/dcae2_install.sh +++ b/boot/dcae2_install.sh @@ -46,9 +46,7 @@ apt-get update apt-get install --allow-unauthenticated -y apt-transport-https ca-certificates wget git ntp ntpdate python python-pip # Download scripts from Nexus -if [ ! -e /opt/dcae2_vm_init.sh ]; then curl -k "$NEXUS_REPO/org.onap.demo/boot/$ARTIFACTS_VERSION/dcae2_vm_init.sh" -o /opt/dcae2_vm_init.sh -fi curl -k "$NEXUS_REPO/org.onap.demo/boot/$ARTIFACTS_VERSION/dcae2_serv.sh" -o /opt/dcae2_serv.sh chmod +x /opt/dcae2_vm_init.sh chmod +x /opt/dcae2_serv.sh @@ -108,4 +106,4 @@ chmod 777 /opt/app/config/key cd /opt -#./dcae2_vm_init.sh +./dcae2_vm_init.sh |