diff options
Diffstat (limited to 'boot/aai2_vm_init.sh')
-rw-r--r-- | boot/aai2_vm_init.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/boot/aai2_vm_init.sh b/boot/aai2_vm_init.sh new file mode 100644 index 00000000..ffe0955f --- /dev/null +++ b/boot/aai2_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 |