diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-08-03 07:56:14 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-08-06 08:20:47 -0700 |
commit | b9a2a29a9e1e93cd04bfa46f9ed66a2117ef56e5 (patch) | |
tree | bcf2b80a434326360f3ce1ec0d64110d5b09e1e8 /heat/ONAP/cloud-config/aai_vm_init.sh | |
parent | 16509432a21feb3f90bbf954ec4815c2bf7f0033 (diff) |
Refactor ONAP HEAT template config, part 2
Change-Id: Ic4930654395ec9e9d57836733cd47e7a3b0bf972
Issue-ID: INT-605
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'heat/ONAP/cloud-config/aai_vm_init.sh')
-rw-r--r-- | heat/ONAP/cloud-config/aai_vm_init.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/heat/ONAP/cloud-config/aai_vm_init.sh b/heat/ONAP/cloud-config/aai_vm_init.sh new file mode 100644 index 00000000..ffe0955f --- /dev/null +++ b/heat/ONAP/cloud-config/aai_vm_init.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +AAI_INSTANCE=$(cat /opt/config/aai_instance.txt) + +cd /opt/test-config +git pull + +if [[ $AAI_INSTANCE == "aai_instance_1" ]] +then + ./deploy_vm1.sh +elif [[ $AAI_INSTANCE == "aai_instance_2" ]] +then + ./deploy_vm2.sh +else + echo "Invalid instance. Exiting..." +fi |