diff options
Diffstat (limited to 'bootstrap/vagrant-onap/lib/aai')
-rwxr-xr-x | bootstrap/vagrant-onap/lib/aai | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/bootstrap/vagrant-onap/lib/aai b/bootstrap/vagrant-onap/lib/aai index 2b7f98106..7d87870a0 100755 --- a/bootstrap/vagrant-onap/lib/aai +++ b/bootstrap/vagrant-onap/lib/aai @@ -179,8 +179,12 @@ function init_aai { install_hadoop install_haproxy - clone_all_aai_repos - compile_aai_repos + if [[ "$clone_repo" == "True" ]]; then + clone_all_aai_repos + if [[ "$compile_repo" == "True" ]]; then + compile_aai_repos + fi + fi setup_titan #start_aai_microservices |