diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2017-09-01 16:49:09 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-01 16:49:09 +0000 |
commit | b49dc6b5ba9b8c893dcdbbed296a6633cefbf906 (patch) | |
tree | 56cf26ce216eee5b36f4161ed91e82dad8835441 /bootstrap/vagrant-onap/lib | |
parent | 549761b03ff128fc2472715c57d4afb6ddb6bea4 (diff) | |
parent | 000de533553068dae03f9e83bd285b9059b63ca3 (diff) |
Merge "Add MultCloud/MultiVIM support"
Diffstat (limited to 'bootstrap/vagrant-onap/lib')
-rwxr-xr-x | bootstrap/vagrant-onap/lib/multicloud | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/bootstrap/vagrant-onap/lib/multicloud b/bootstrap/vagrant-onap/lib/multicloud new file mode 100755 index 000000000..1126d6146 --- /dev/null +++ b/bootstrap/vagrant-onap/lib/multicloud @@ -0,0 +1,42 @@ +#!/bin/bash + +set -o xtrace + +source /var/onap/functions + +multicloud_src_folder=$git_src_folder/multicloud +multicloud_repos=("azure" "framework" "openstack" "openstack/vmware" "openstack/windriver") + +# clone_multicloud_repos() - Function that clones the Multi Cloud repositories +function clone_multicloud_repos { + clone_repo multicloud $multicloud_src_folder + + for dirc in ${multicloud_repos[@]}; do + clone_repo multicloud/$dirc $multicloud_src_folder/$dirc + done +} + +# compile_multicloud_repos() - +function compile_multicloud_repos { + compile_src multicloud $multicloud_src_folder + + for dirc in ${multicloud_repos[@]}; do + compile_src $multicloud_src_folder/$dirc + done +} + +# install_multicloud() - +function install_multicloud { + echo "pass" +} + +# init_multicloud() - Function that initialize Multi Cloud services +function init_multicloud { + if [[ "$clone_repo" == "True" ]]; then + clone_multicloud_repos + if [[ "$compile_repo" == "True" ]]; then + compile_multicloud_repos + fi + fi + install_multicloud +} |